我是编程的初学者,目前我正在执行依赖于groovy脚本的SOAP UI测试。下面我想声明政策DTO中的所有内容都包含正确的值:
{
"policies": [
{
"xx": 28,
"xxxxx": 41,
},
{
"xx": 31,
"xxxxxx": 41,
},
{
"xx": 34,
"xxxxx": 41,
},
{
"xx": 37,
"xxxxx": 41,
}
]
}
现在我知道如何通过简单地包含json.policies.xx[0]
和json.policies.xx[1]
等来执行断言,但这似乎有点长篇大论。我假设通过在策略中迭代DTO以确保xxx正确且xxxxx正确,有更好的方法。我的问题是,有人能为我提供一个例子让我知道如何编写这个吗?
import groovy.json.JsonSlurper
def response = messageExchange.response.responseContent
def json = new JsonSlurper().parseText(response)
assert json.policies.xx[0].toString() = '28'
assert json.policies.xx[1].toString() = '31'
assert json.policies.xx[2].toString() = '34'
assert json.policies.xx[3].toString() = '37'
assert json.policies.xxxxx[0].toString() = '41'
assert json.policies.xxxxx[1].toString() = '41'
assert json.policies.xxxxx[2].toString() = '41'
assert json.policies.xxxxx[3].toString() = '41'
谢谢
答案 0 :(得分:1)
您可以将断言简化为单行,例如:
import groovy.json.JsonSlurper
def response = messageExchange.response.responseContent
def json = new JsonSlurper().parseText(response)
def policies = [[xx: 28, xxxxx: 41], [xx: 31, xxxxx: 41], [xx: 34, xxxxx: 41], [xx: 37, xxxxx: 41]]
assert json.policies == policies