我需要验证接下来的两个密钥:key1和key2
{
"data": [
{
"id": "123",
"type": "something",
"created": "1540952074",
"test": [
{
"key1": "asd123",
"key2": "166802"
}
]
},
我只想验证那些键已经存在。 我做了这个测试。
pm.test('returns the correct parameters by type', () => {
for (i = 0; i < jsonData.data.length; i++) {
if (jsonData.data[i].type === 'something') {
// for (j = 0; j < jsonData.data.test.length; j++) {
pm.expect(jsonData.data[i]).to.have.property('id');
pm.expect(jsonData.data[i]).to.have.property('type');
pm.expect(jsonData.data[i]).to.have.property('created');
pm.expect(jsonData.data[i].test[0]).to.have.property('key1');
pm.expect(jsonData.data[i].test[0]).to.have.property("key2");
}
返回此错误
returns the correct parameters by type | TypeError: Cannot read property '0' of undefined
但是如果我将console.log放在jsonData.data[i].test[0]
中,控制台会正确显示2个参数到对象中。
Object:{}
key1:"asd123"
key2:"166802"
知道怎么做吗?
谢谢
答案 0 :(得分:0)
我真的看不到完整的响应数据,但这可能对您有用:
let jsonData = {
"data": [
{
"id": "123",
"type": "something",
"created": "1540952074",
"test": [
{
"key1": "asd123",
"key2": "166802"
}
]
}
]
}
pm.test("My Test", () => {
_.each(jsonData.data, (item) => {
if(item.type === "something") {
pm.expect(_.first(item.test)).to.have.keys('key1', 'key2')
}
})
})
这只是使用上面的jsonData
对象中的数据进行测试的示例,因此不适用于您的响应数据。
您可以尝试这个吗?
pm.test("My Test", () => {
_.each(pm.response.json().data, (data) => {
if(data.type === "something") {
_.each(data.test, (test) => {
pm.expect(test).to.have.keys('key1', 'key2')
})
}
})
})