我有一个生成随机名称密钥的查询:
curl --location --request PUT 'https://apitest.backendless.com/A1DA5DF0-8D22-BAC4-FF56-9A0074DC9B00/8834B7F8-88BD-4472-9051-71BE31A3EE5B/hive/rootKeys/set/{{$randomWord}}' \
--header 'Content-Type: application/json' \
--data-raw '["123", true]'
查询本身返回新密钥的长度。在测试中,我检查是否实际返回了密钥长度:
let response = pm.response.json();
pm.test("Created new key", () => {
pm.expect(response, "Error").to.eql(2)
});
但是我仍然需要检查这个键的完整性(也就是说,检查这个键是用指定的值创建的),问题是,我如何引用这个通过{{$randomWord}}
生成的单词?
1条答案
按热度按时间q3aa05251#
可以使用
replaceIn()
在postman中获取动态变量。Pre-req
选项卡中,从{{$randomWord}}
--〉中获取值,并将其保存到变量/环境范围中。Test
选项卡和做你的工作。