斷言會在請求返回以後,運行,並根據斷言的pass\fail狀況體如今最終測試結果中。javascript
這裏就設置,檢查響應信息裏面包含:「百度新聞——全球最大的中文新聞平臺」這幾個字、java
同時設置響應httpCode爲200,斷言響應成功。json
二、點擊Url下方的Tests,這裏設置斷言。less
點進來後這裏是空的,你若是熟悉JavaScript的函數,能夠直接手動輸入,若是不熟悉,postman在右側已經提供了tests片斷。函數
點擊Learn more tests能夠了解更多代碼片斷。post
找到Response body:Contains string響應body包含字符串。點擊。測試
在Tests框內出現一段代碼片斷,其餘不用管,只須要將string_you_want_to_search字符串,替換爲:百度新聞——全球最大的中文新聞平臺.net
便可,並且代碼片斷寫的很明白,從英文意思就能夠了解該如何設置。3d
找到代碼片斷。Status code:code is 200.點擊。code
生成斷言httpCode爲200的代碼片斷。
Ctrl+s保存一下請求的設置。
而後點擊Send發送請求,查看響應信息。
響應中查看Tests Results。設置的檢查所有成功。
1.設置環境變量--Setting an environment variable
postman.setEnvironmentVariable("key", "value");
2.設置全局變量--Set a global variable
postman.setGlobalVariable("key", "value");
3.檢查響應中包含string--Check if response body contains a string
tests["Body matches string"] = responseBody.has("string_you_want_to_search");
4.轉化XML格式的響應成JSON對象---Convert XML body to a JSON object
var jsonObject = xml2Json(responseBody);
5.檢查響應body中等於指定string--Check if response body is equal to a string
tests["Body is correct"] = responseBody === "response_body_string";
6.檢查JSON某字段值--Check for a JSON value
var data = JSON.parse(responseBody);
tests["Your test name"] = data.value === 100;
7.檢查Content-Type是否包含在header返回(大小寫不敏感)--Content-Type is present (Case-insensitive checking)
tests["Content-Type is present"] = postman.getResponseHeader("Content-Type"); //Note: the getResponseHeader() method returns the header value, if it exists.
8.檢查Content-Type是否包含在header返回(大小寫敏感)--Content-Type is present (Case-sensitive)
tests["Content-Type is present"] = responseHeaders.hasOwnProperty("Content-Type");
9.檢查請求耗時時間小於200ms--Response time is less than 200ms
tests["Response time is less than 200ms"] = responseTime < 200;
10.檢查Status code爲200--Status code is 200
tests["Status code is 200"] = responseCode.code === 200;
11.檢查Code name是否指定string--Code name contains a string
tests["Status code name has string"] = responseCode.name.has("Created");
12.檢查成功post的請求status code--Succesful POST request status code
tests["Successful POST request"] = responseCode.code === 201 || responseCode.code === 202;