您好,登錄后才能下訂單哦!
本篇內容主要講解“python怎么編寫接口測試文檔”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“python怎么編寫接口測試文檔”吧!
前言
一、postman接口用例轉換為python測試用例
二、轉換為pytest測試用例
三、封裝POST和GET方法
1.common.py—公共類封裝
2.具體接口測試用例
很多人會使用postman工具,或者熟悉python,但不一定會使用python來編寫測試用例腳本,postman里面可以完整的將python代碼復制出來。
(以下所有內容以豆瓣網站搜索功能為例子)
打開postman,點擊右側的</>圖標,頁面右邊會顯示腳本,頂部修改導出的語言,這邊我使用的是Python-Reqyests
復制腳本,在PyCharm中打開即可,在導入使用之前如果沒有reuqests庫,可能會報錯,我們需要安裝reuqests庫。
cmd命令窗口輸入:pip install requests
導出后的腳本格式如下:
import requests url = "<https://www.douban.com/search?"> payload={'q': '三體'} files=[ ] headers = { 'Cookie': 'bid=5bBvkukAbvY' } response = requests.request("POST", url, headers=headers, data=payload, files=files) print(response.text)
1.下面就是轉成pytest的測試用例
import requests class TestDouban: def test_douban(self): url = "<https://www.douban.com/search?"> payload = {'q': '三體'} files = [] headers = { 'Cookie': 'bid=5bBvkukAbvY' } response = requests.request("POST", url, headers=headers, data=payload, files=files) print(response.text)
在一個項目中,根路由的路徑是一樣的,只是不同功能對應的具體的接口不一致,且POST和GET是目前測試用例中比較通用的方法,所以可以將根路由、POST和GET方法封裝成一個通用的類,后面直接調用即可。
import requests class Common: def __init__(self): # 豆瓣根路由 self.url_root = "<https://www.douban.com>" # get請求,uri是接口具體地址,params是get請求的參數,如果沒有,默認為空 def get(self, uri, params=''): # 拼湊訪問地址 url = self.url_root + uri + params # 通過get請求訪問對應地址 response = requests.get(url) # 返回request的response結果,類型為requests的Response類型 return response # post請求,uri是接口具體地址,params是post請求的參數,如果沒有,默認為空 def post(self, uri, params=''): # 拼湊訪問地址 url = self.url_root + uri # 有參數,則訪問對應的url,并賦值給默認參數data if len(params) > 0: response = requests.post(url, data=params) # 無參數,只需要訪問對應的url即可 else: response = requests.post(url) # 返回request的response結果,類型為requests的Response類型 return response
import requests from common.common import Common class TestDouban: def setup(self): self.com = Common() def test_douban(self): uri = "/search?" payload = {'q': '三體'} response = self.com.post(uri, payload) # 由于file不需要,就將file刪除了,至于hearder是否要添加可根據需求來定
執行結果如下:
到此,相信大家對“python怎么編寫接口測試文檔”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。