我在使用测试选项卡中的 tv4 验证 Postman 中的模式时遇到问题 - 无论我提供什么,它总是返回一个真正的测试。我完全不知所措,真的可以用手 - 这是我的示例 JSON 响应,以及我的测试:
我已经从我能找到的每个 Stack Overflow/tutorial 中尝试了大量的变化,但没有任何效果 - 它总是返回 true。
//Test Example
var jsonData = JSON.parse(responseBody);
const schema = {
"required" : ["categories"],
"properties": {
"categories": {
"required" : ["aStringOne", "aStringTwo", "aStringThree" ],
"type": "array",
"properties" : {
"aStringOne": {"type": "string" },
"aStringTwo": {"type": "null" },
"aStringThree": {"type": "boolean" }
}
}
}
};
pm.test('Schema is present and accurate', () => {
var result=tv4.validateMultiple(jsonData, schema);
console.log(result);
pm.expect(result.valid).to.be.true;
});
//Response Example
{
"categories": [
{
"aStringOne": "31000",
"aStringTwo": "Yarp",
"aStringThree": "More Yarp Indeed"
}
]
}
这应该返回 false,因为所有三个属性都是字符串,但它的传递。我愿意使用不同的验证器或其他技术,只要我可以将其导出为邮递员集合,以便在我的 CI/CD 流程中与 newman 一起使用。我期待着您能提供的任何帮助。