我尝试从SoapUI中的测试用例生成负载测试。它有很多测试步骤,前10个步骤涵盖了登录过程。 LoadTest停留在Groovy脚本中,该脚本应从上一个测试步骤的输出中获取参数值。当直接执行时,它可以正常工作,但是当它作为LoadTest执行时,它给出了错误:

groovy.lang.GroovyRuntimeException: Ambiguous method overloading for method java.lang.String# . Cannot resolve which method to invoke for [null] due to overlapping prototypes between: [class [B] [class [C] [class java.lang.String] groovy.lang.GroovyRuntimeException: Ambiguous method overloading for method java.lang.String# . Cannot resolve which method to invoke for [null] due to overlapping prototypes between: [class [B] [class [C] [class java.lang.String] error at line: 5
Groovy脚本,导致上述错误:
def tc1 = testRunner.testCase.getTestStepAt(context.currentStepIndex-1);
String rawData = new String(tc1.testRequest.response.rawResponseData);
Reger reger = new Reger(rawData);

String myvar1 = reger.getNthMatch(/<myregex>/, 0);

最佳答案

您在此字符串中遇到的问题:

String rawData = new String(tc1.testRequest.response.rawResponseData)

tc1.testRequest.response.rawResponseData 为空

为了防止异常,您可以将此字符串更改为:
String rawData = tc1.testRequest.response.rawResponseData?.toString()

这是无效的

关于groovy - SoapUI LoadTest执行失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49624563/

10-10 17:22