postman基礎教程-03斷言

Postman可以在tests裏面,用自帶的腳本對接口進行測試,單擊tests標籤後可以看到右側有個snippets欄,裏面就是postman內置的測試腳本,輔助對接口進行測試。

我們選擇兩個個腳本,分別驗證status是否返回200,響應時間是否小魚200ms,點擊send,這時response的tests出現了一個1/2,說明一個用例通過測試,綠色pass說明驗證通過,紅色說明失敗

在網上找了一份簡單的說明,瞭解一下

1. 清除一個全局變量
     Clear a global variable
    對應腳本:
    postman.clearGlobalVariable("variable_key");
    參數:需要清除的變量的key

2.清除一個環境變量
    Clear an environment variable
    對應腳本:
    postman.clearEnvironmentVariable("variable_key");
    參數:需要清除的環境變量的key

3.response包含內容
    Response body:Contains string
    對應腳本:
    tests["Body matches string"] =responseBody.has("string_you_want_to_search");
    參數:預期內容

4.將xml格式的response轉換成son格式
    Response body:Convert XML body to a JSON Object
    對應腳本:
    var jsonObject = xml2Json(responseBody);
    參數:(默認不需要設置參數,爲接口的response)需要轉換的xml

5.response等於預期內容
    Response body:Is equal to a string
    對應腳本:
    tests["Body is correct"] = responseBody === "response_body_string";
    參數:預期response

6.json解析key的值進行校驗
    Response body:JSON value check
    對應腳本:
    tests["Args key contains argument passed as url parameter"] = 'test' in responseJSON.args
    參數:test替換被測的值,args替換被測的key

7.檢查response的header信息是否有被測字段
    Response headers:Content-Type header check
    對應腳本:
    tests["Content-Type is present"] = postman.getResponseHeader("Content-Type");
    參數:預期header

8.響應時間判斷
    Response time is less than 200ms
    對應腳本:
    tests["Response time is less than 200ms"] = responseTime < 200;
    參數:響應時間

9.設置全局變量
      Set an global variable
      對應腳本:
      postman.setGlobalVariable("variable_key", "variable_value");
      參數:全局變量的鍵值

10.設置環境變量
      Set an environment variable
      對應腳本:
      postman.setEnvironmentVariable("variable_key", "variable_value");
      參數:環境變量的鍵值

11.判斷狀態碼
      Status code:Code is 200
      對應腳本:
      tests["Status code is 200"] = responseCode.code != 400;
      參數:狀態碼

12.檢查code name 是否包含內容
      Status code:Code name has string
      對應腳本:
      tests["Status code name has string"] = responseCode.name.has("Created");
      參數:預期code name包含字符串

13.成功的post請求
      Status code:Successful POST request
      對應腳本:
      tests["Successful POST request"] = responseCode.code === 201 || responseCode.code === 202;

14.微小驗證器
       Use Tiny Validator for JSON data            
       對應腳本: 
        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);
        參數:可以修改items裏面的鍵值對來對應驗證json的參數

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章