當前位置: 首頁>>代碼示例>>Java>>正文


Java SampleResult.getResponseDataAsString方法代碼示例

本文整理匯總了Java中org.apache.jmeter.samplers.SampleResult.getResponseDataAsString方法的典型用法代碼示例。如果您正苦於以下問題:Java SampleResult.getResponseDataAsString方法的具體用法?Java SampleResult.getResponseDataAsString怎麽用?Java SampleResult.getResponseDataAsString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.jmeter.samplers.SampleResult的用法示例。


在下文中一共展示了SampleResult.getResponseDataAsString方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getResponseAsString

import org.apache.jmeter.samplers.SampleResult; //導入方法依賴的package包/類
public static String getResponseAsString(SampleResult res) {
    String response = null;
    if (isTextDataType(res)) {
        // Showing large strings can be VERY costly, so we will avoid
        // doing so if the response
        // data is larger than 200K. TODO: instead, we could delay doing
        // the result.setText
        // call until the user chooses the "Response data" tab. Plus we
        // could warn the user
        // if this happens and revert the choice if he doesn't confirm
        // he's ready to wait.
        int len = res.getResponseDataAsString().length();
        if (MAX_DISPLAY_SIZE > 0 && len > MAX_DISPLAY_SIZE) {
            StringBuilder builder = new StringBuilder(MAX_DISPLAY_SIZE+100);
            builder.append(JMeterUtils.getResString("view_results_response_too_large_message")) //$NON-NLS-1$
                .append(len).append(" > Max: ").append(MAX_DISPLAY_SIZE)
                .append(", ").append(JMeterUtils.getResString("view_results_response_partial_message")) // $NON-NLS-1$
                .append("\n").append(res.getResponseDataAsString().substring(0, MAX_DISPLAY_SIZE)).append("\n...");
            response = builder.toString();
        } else {
            response = res.getResponseDataAsString();
        }
    }
    return response;
}
 
開發者ID:Blazemeter,項目名稱:jmeter-bzm-plugins,代碼行數:26,代碼來源:ViewResultsFullVisualizer.java

示例2: process

import org.apache.jmeter.samplers.SampleResult; //導入方法依賴的package包/類
@Override
public void process() {
    SampleResult prev = getThreadContext().getPreviousResult();
    if (prev == null) return;

    String xml = prev.getResponseDataAsString();
    if (xml == null) return;

    try {
        log.debug("Parsing xml response");
        Document doc = stringToDocument(xml);

        log.debug("Processing WSS header");
        doc = this.process(doc); // Delegate in abstract method

        prev.setResponseData(documentToString(doc), prev.getDataEncodingWithDefault());
    }
    catch (Exception e) {
        log.error("Processing failed! ", e);
        if (e instanceof WSSecurityException && JMeterUtils.getPropDefault(FAIL_ON_WSS_EXCEPTION, true)) {
            AssertionResult assertionResult = new AssertionResult("WSSecurityException").setResultForFailure(e.getMessage());
            assertionResult.setError(true);
            assertionResult.setFailure(true);
            prev.addAssertionResult(assertionResult);
            prev.setSuccessful(false);
        }
    }
}
 
開發者ID:tilln,項目名稱:jmeter-wssecurity,代碼行數:29,代碼來源:AbstractWSSecurityPostProcessor.java


注:本文中的org.apache.jmeter.samplers.SampleResult.getResponseDataAsString方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。