我有以下测试步骤:
GetDetails输出JSON对象,如下所示:
{
"databaseId": 123,
"databaseName": "Test",
"address": "ON",
"details": {
"detail_id": 999,
"userId": 2,
"date": null,
"state": "active"
},
"itemName": "Bob details",
}
transferObject 将此details
对象转移到 ChangeDetails 测试步骤。
但现在我想修改对象(将state
属性更改为non-active
),然后再将其提供给ChangeDetails测试用例。
我该怎么做?有什么建议吗?
答案 0 :(得分:2)
我不确定如何使用属性转移步骤来实现这一点,因为它似乎是数据操作。
如果可以实现,我会以下面的方式执行此操作(使用脚本断言)。
只有两个步骤
使用以下代码添加Script Assertion
获取详细信息步骤:
import groovy.json.*
//Read the response of GetDetails and filter details
def details = new JsonSlurper().parseText(context.response).details
//assert there is details available and not empty
assert details, "Details is empty or null in the response"
//Creating object to build the next step request
def json = new JsonBuilder()
//Building details object for Change
json.details {
//looping thru each data
details.each { key, value ->
//Change state to inactive
if ('state' == key) value = 'non-active'
//add the properties inside details
"$key"("$value")
}
}
//Create a pretty print sting and this is going to be the next test step's request
def prettyJson = JsonOutput.prettyPrint(json.toString())
//Assign this data to a test step custom property, say REQUEST
context.testCase.setPropertyValue('REQUEST', prettyJson)
在“更改详细信息”步骤中,打开请求编辑器=>有${#TestCase#REQUEST}
现在运行测试,看看它是否正常工作。
注意:评论inactive
中提到了它,但问题中提到的是non-active
- 因此在回复中保持不变。我认为,在这种情况下,这不是什么大问题。我相信。