如何在脚本断言中访问动态值;哪些是在测试用例级别设置的?

问题描述 投票:0回答:1

我已在测试用例级别为以下响应设置了动态值。

{
   "orderDetails": {"serviceOrderNumber": "SO-EUAM-MX-EUAM-16423"},
   "transactionDetails":    {
      "statusMessage": "Success",
      "startRow": "1",
      "endRow": "400",
      "totalRow": "1",
      "timeZone": "EST"
   },
   "customerNodeDetails":    {
      "startDate": "20180622 06:32:39",
      "nodeCreateDate": "20180622 06:32:39",
      "customerId": "5562"
   }
}

assert context.response, 'Response is empty or null'
def json = new groovy.json.JsonSlurper().parseText(context.response)
context.testCase.setPropertyValue('CustID', json.customerNodeDetails.customerId.toString())

现在在声明另一个GET的API时,我将CustID作为customerNumber

我使用了以下代码:

assert json.customerNodeDetails.customerNumber == "${#TestCase#CustID}"

而对此的反应块是:

"customerNodeDetails":    {
      "nodeLabel": null,
      "customerNumber": "5544",
      "customerName": "ABCDEFGHIJ ABCDEFGHIJ LMNOPQRSTUV1234",
      "taxIdCity": "",
      "taxIdState": "",
      "salesSegment": "Government",
      "dunsNumber": "",
      "mdsId": "",
      "accountClassification": "B",
      "specialCustomerBillCode": ""
}.

但我得到以下错误:

启动失败:Script65.groovy:26:意外字符:'#'@第26行,第54列.EDetails.customerNumber ==“$ {#TestCase#^ org.codehaus.groovy.syntax.SyntaxException:意外字符:'#' @第26行,第54栏。在org.codehaus.groovy.antlr.AntlrParserPlugin.transformCSTIntoAST(AntlrParserPlugin.java:138)at

请让我知道如何访问该值。

groovy soapui
1个回答
0
投票

如果您在Groovy脚本中引用属性,则不能像在UI的其他部分中那样直接使用它。你需要扩展它:

def custID = context.expand('${#TestCase#CustID}')

或者,脚本断言中提供的messageExchange变量为您提供了另一种方法来执行相同的操作:

def alternative = messageExchange.modelItem.testStep.testCase.getPropertyValue('CustID'); 

然后,如果您需要在测试用例级别以外的其他位置定义的属性,则可以使用:

def projectLevelProperty = messageExchange.modelItem.testStep.testCase
              .testSuite.project.getPropertyValue('projectLevelProperty');  
© www.soinside.com 2019 - 2024. All rights reserved.