我有一个groovy测试,它执行一些JSON slurper操作,其中一个操作是从响应中提取id。然后,我在groovy脚本中执行jdbc测试步骤。我的问题是:
我需要访问jdbc测试步骤的断言结果——换言之,如果我从jdbc测试中得到了肯定的响应,那么我想从原始groovy步骤中执行另一个步骤。
关于我该怎么做,有什么建议吗?
到目前为止,我拥有的是:
for(platform in segments.platformIds) {
if (platform.system=='ABC') {
def platformId = "${platform.id}"
log.info "current Id = ${platform.id}"
testRunner.testCase.getTestStepByName("pass platformId").setPropertyValue("platformId", platformId)
testRunner.runTestStepByName("Verify ID exists in DB")
** I want to perform another test based on the result of the above TestStep **
}
}
找到了解决方案:
import com.eviware.soapui.model.testsuite.TestStepResult.TestStepStatus
myTestStepResult = testRunner.runTestStepByName("Verify ID exists in DB")
myStatus = myTestStepResult.getStatus(
if( myStatus ==TestStepStatus.OK)
** execute the next testRunnerStep **