postman斷言的幾種方式(二)

1、檢查響應體是否包含字符串

pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});
2、檢查響應體是否等於字符串

pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});
3、檢查JSON值

pm.test("Your test name", function () {
var jsonData = pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});
4、內容類型存在

pm.test("Content-Type is present", function () {
pm.response.to.have.header("Content-Type");
});
5、響應時間小於200毫秒

pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
6、狀態代碼爲200

pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
7、代碼名包含字符串

pm.test("Status code name has string", function () {
pm.response.to.have.status("Created");
});
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章