在實現接口自動測試的時候,會常常遇到接口參數依賴的問題,例如調取登陸接口的時候,須要先獲取登陸的key值,而每次請求返回的key值又是不同的,那麼這種狀況下,要實現接口的自動化,就要用到postman中設置環境變量這個功能了;html
在postman中,能夠利用tests將接口返回的response設置爲環境變量,供後續接口使用(相似參數化的概念)git
獲取環境變量須要具體方法以下圖所示;github
var jsonData =JSON.parse(responseBody);//獲取body中返回的全部參數 postman.setEnvironmentVariable("appKey",jsonData.data.appKey);//把返回參數中的keys設置爲環境變量
如此就能把登陸所需的key設置爲環境變量,供後續登陸接口的調用了;json
同理,獲取headers值更新環境變量的方法,以下圖;數組
postman經常使用方法集合:安全
1.設置環境變量app
postman.setEnvironmentVariable("key", "value"); pm.environment.get("key", "value");//postman 5.0以上版本設置環境變量的方法
2.設置全局變量less
postman.setGlobalVariable("key", "value"); pm.globals.set("variable_key", "variable_value");//postman 5.0以上版本設置全局變量方法
3.檢查response body中是否包含某個string函數
tests["Body matches string"] = responseBody.has("string_you_want_to_search"); pm.test("Body is correct", function () { pm.response.to.have.body("response_body_string"); });//5.0以上版本方法
4.檢測JSON中的某個值是否等於預期的值post
var data = JSON.parse(responseBody); tests["Your test name"] = data.value === 100;
JSON.parse()方法,把json字符串轉化爲對象。parse()會進行json格式的檢查是一個安全的函數。
如:檢查json中某個數組元素的個數(這裏檢測programs的長度)
var data = JSON.parse(responseBody); tests["program's lenght"] = data.programs.length === 5;
5.轉換XML body爲JSON對象
var jsonObject = xml2Json(responseBody); tests["Body is correct"] = responseBody === "response_body_string";
6.檢查response body是否與某個string相等
7.測試response Headers中的某個元素是否存在(如:Content-Type)
//getResponseHeader()方法會返回header的值,若是該值存在 tests["Content-Type is present"] = postman.getResponseHeader("Content-Type"); tests["Content-Type is present"] = responseHeaders.hasOwnProperty("Content-Type");
上面的方法,不區分大小寫。下面的方法,要區分大小寫。
8.驗證Status code的值
tests["Status code is 200"] = responseCode.code === 200; pm.test("Status code is 200", function () { pm.response.to.have.status(200); });//5.0以上版本方法
9.驗證Response time是否小於某個值
tests["Response time is less than 200ms"] = responseTime < 200; //5.0以上版本方法 pm.test("Response time is less than 200ms", function () { pm.expect(pm.response.responseTime).to.be.below(200); });
10.name是否包含某個值
tests["Status code name has string"] = responseCode.name.has("Created"); //5.0以上版本方法 pm.test("Status code name has string", function () { pm.response.to.have.status("Created"); });
11.POST 請求的狀態響應碼是不是某個值
tests["Successful POST request"] = responseCode.code === 201 || responseCode.code === 202; //5.0以上版本方法 pm.test("Successful POST request", function () { pm.expect(pm.response.code).to.be.oneOf([201,202]); });
12.很小的JSON數據驗證器
var schema = { "items": { "type": "boolean" } }; var data1 = [true, false]; var data2 = [true, 123]; console.log(tv4.error); tests["Valid Data1"] = tv4.validate(data1, schema); tests["Valid Data2"] = tv4.validate(data2, schema);
var Json = JSON.parse(request.data);
-
data {object}:
this is a dictionary of form data for the request. (request.data["key"]=="value") -
headers {object}:
this is a dictionary of headers for the request (request.headers["key"]=="value") -
method {string}:
GET/POST/PUT etc. -
url {string}:
the url for the request.
var Json = JSON.parse(request.data); var version = Json["version"];
14.JSON.parse()和JSON.stringify()
JSON.parse()【從一個字符串中解析出json對象】--把string轉對象 JSON.stringify()【從一個對象中解析出字符串,主要針對[object object]類型數據的轉換】--把對象轉String var data={name:'goatling'}
JSON.parse(data)
結果是: '{"name":"goatling"}'
JSON.stringify(data)
結果是:name:"goatling"
15.判斷字段值是否爲空typeof()
var Jsondata = JSON.parse(responseBody); if( typeof(Jsondata.data) != "undefined" )
pre-request
和
test script
中。由於這些部分是經過
JavaScript
來寫的
key
和
value
去設置變量。當你發送請求的時候,這腳本將會執行,值將會保存在變量中,以下圖:
;
或者pm.globals.set("variable_key", "variable_value");;
;
根據適合的範圍去獲取變量值。這方法要求提供一個變量名做爲參數去檢索儲存的值,以下圖:
結果: