1. 程式人生 > 程式設計 >pycharm中使用request和Pytest進行介面測試的方法

pycharm中使用request和Pytest進行介面測試的方法

安裝request庫
以火車的站站查詢為例的post和get方法的介面測試
使用pytest測試介面

1、requests的請求機制

1、安裝request庫

在這裡插入圖片描述
在這裡插入圖片描述

2、以火車的站站查詢為例的post和get請求方法

在這裡插入圖片描述

2.1get請求

兩種傳參方式

1、_url = “網址+引數” = “網址?key1=value1&key2=value2”

response1 = request.get(url = _url)

2、字典拼接

_params = {
“key1” : “value1”,“key2” : “value2”,}
response2 = requests.get(url=“網址”,params = _params)
import requests

response = requests.get(url="https://api.binstd.com/train/station2s?start=北京&end=西安&ishigh=0&appkey=d737aad9a0d9dc97")
print(response.text)  #字串格式
print(response.json()) #json,前提需要確保返回內容為json格式,否則報錯

#字典方式拼接引數
print("-------------字典方式拼接引數---------------")
params = {
  "start" : "北京","end" : "西安","ishigh" : 0,"appkey" : "d737aad9a0d9dc97"
}
response1 = requests.get(url="https://api.binstd.com/train/station2s",params = params)
print(response1.text)
print(response1.json())

在這裡插入圖片描述

2.2post請求
拼接引數方式傳參

import requests

#字典方式拼接引數
data = {
  "start" : "北京","appkey" : "d737aad9a0d9dc97"
}
response1 = requests.post(url="https://api.binstd.com/train/station2s",data = data)
print(response1.text)
print(response1.json())

#獲取響應狀態碼
print(response1.status_code)

#獲取原始模式
print(response1.raw)

常見的請求方法

請求方法 含義
requests.get() 獲取html的主要方法
requests.head() 獲取html頭部資訊的主要方法
requests.post() 向html網頁提交post請求的方法
requests.put() 向html網頁提交put請求的方法
requests.patch() 向html提交區域性修改的請求
requests.delete() 向html提交刪除請求

2、pytest測試介面

1、安裝pytest
pip install pytest

2、使用pytest測試介面
在pytest框架中,有如下約束:
檔名要以test開頭或者結尾(test_*.py / *_test.py),可以包含一個或多個test_開頭的函式。
此時,在執行pytest命令時,會自動從當前目錄及子目錄中尋找符合上述約束的測試函式來執行。

4.1首先得到響應資料

import requests
def request_ticket():
  #返回介面響應結果
  url = "https://api.binstd.com/train/ticket"
  payload = {
    "start": "北京","end": "西安","date": "2019-10-1","appkey": "d737aad9a0d9dc97"
  }
  #response = requests.get(url = _url,parms = payload)
  response = requests.post(url = url,data = payload)
  print(response.text)
  return response
request_ticket()

4.2為了方便檢視將響應結果格式化:由於太長,部分用省略號代替

{
  "status": 0,"msg": "ok","result": {
    "start": "北京","date": "2020-06-10","list": [
      {
        "trainno": "G667","type": "G","typename": "高鐵","station": "北京西","endstation": "西安北","departuretime": "11:19",...
        "departstationcode": "BXP","terminalstationcode": "EAY","startdate": "20200610",...
      },{
        "trainno": "G659","departuretime": "11:53",{...},...
    ]
  }
}

在這裡插入圖片描述

4.3取出資料
出發站(station)和到達站(endstation)在result中的list下,怎麼取到呢?----[“result”] [“list”]
---- request_ticket().json()[“result”][“list”]

def test_departur_station():
  """
  始發站測試,測試介面返回的所有車次資訊,他們的出發站,和到達站都符合引數約定
  :return:
  """
  #從響應中獲取測試列表   
  trainSli = request_ticket().json()["result"]["list"]  #單個的車次資訊
  #trainSli是取出來的list列表
  for trainInfo in trainSli:
    assert "北京" in trainInfo["station"]  #判斷‘北京'是否是列表中‘station'的值
    assert "西安" in trainInfo["endstation"] #判斷到達站是不是‘西安'

#呼叫函式
test_departur_station()

'''def test_train_date():
  """
  發車日期測試,介面返回的所有車次資訊,發車日期,都符合引數約定
  :return:
  """
  #從響應中獲取測試列表
  trainSli = request_ticket().json()["result"]["list"]  #單個的車次資訊
  for trainInfo in trainSli:
    assert "20200610" in trainInfo["startdate"]
    
test_train_date()'''

4.4 執行

在這裡插入圖片描述

4.5 檢視結果

在這裡插入圖片描述

如果該路徑下有多個以test開頭或者結尾的檔案,則會一起檢測兩個檔案中的介面

在這裡插入圖片描述

如果出現ERROR則在檔案中找錯誤原因

在這裡插入圖片描述

總結

到此這篇關於pycharm中使用request和Pytest進行介面測試的文章就介紹到這了,更多相關pycharm使用request和Pytest介面測試內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!