gpt4 book ai didi

groovy - SoapUI LoadTest 执行失败

转载 作者:行者123 更新时间:2023-12-04 21:04:35 25 4
gpt4 key购买 nike

我尝试从我的测试用例中生成负载测试 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com