Httprunner簡介、安裝及基本使用教程
前言
本系列文章開始介紹接口開源測試工具 –httprunner3的使用,基當前最新版本的3.1.6
簡介
主要特點
HttpRunner 是一款面向 HTTP(S) 協議的通用測試框架,隻需編寫維護一份 YAML/JSON 腳本,即可實現自動化測試、性能測試、線上監控、持續集成等多種測試需求。
繼承所有強大的特性requests,享受人性化處理 HTTP(S) 的樂趣。以 YAML 或 JSON 格式定義測試用例,pytest以簡潔優雅的方式運行。在支持下記錄和生成測試用例HAR。支持///variables機制來創建極其復雜的測試場景extract。validatehooks使用debugtalk.py插件,任何功能都可以在測試用例的任何部分使用。使用jmespath,提取和驗證 json 響應從未如此簡單。有瞭pytest,數百個插件隨時可用。使用allure,測試報告可以非常漂亮和強大。通過重用locust,您無需額外工作即可運行性能測試。支持 CLI 命令,與CI/CD
說明 需要Python3.6+
Httprunner2.x和3.x區別
- 執行用例框架:3.x 是pytest;2.x是unitest
- 用例格式:3.x支持YAML/JSON/pytest;2.x支持YAML/JSON
安裝
- 需要python3.6+環境:可參考 python環境搭建
- 使用pip
安裝
pip3 install httprunner
也可使用github 源碼安裝
pip3 install git+https://github.com/httprunner/httprunner.git@master
如果之前安裝HttpRunner可以使用-U選項,升級到最新版本
pip3 install -U httprunner # 或 pip3 install -U git+https://github.com/httprunner/httprunner.git@master
查看版本
pip show httprunner
相關命令
查看幫助
httprunner -h
參數名 | 功能 |
---|---|
-V –version | 查看版本號 |
-h, –help | 查看幫助 |
run | 用於運行YAML/JSON/Pytest 測試用例 |
startproject | 使用模板結構創建新項目 |
har2case | HAR(HTTP Archive) 轉成 YAML/JSON |
make | YAML/JSON 測試用例轉成 pytest用例 |
安裝 HttpRunner 後,以下 5 個命令會寫入系統環境變量配置。
- httprunner:主命令,用於所有功能。
- hrun:指令 httprunner run 的別名,用於運行 YAML/JSON/Pytest 測試用例。
- hmake: 指令 httprunner make 的別名,將 YAML/JSON 用例轉換成 pytest 用例。
- har2case:指令 httprunner har2case 的別名,將 HAR 文件轉換成 YAML/JSON 用例。
- locust:利用 locust 運行性能測試。
基本使用
創建項目
httprunner startproject 項目名
httprunner startproject dahai_demo
make轉pytest用例
make 是把 YAML/JSON 測試用例轉成 pytest用例, 需指定 yaml 文件路徑或文件夾路徑
httprunner make testcase # 等價於 hmake testcase
run 運行用例
run 命令實際上有 2 個動作,一個是把 YAML/JSON 測試用例轉成 pytest 用例,同上一步 make 的功能一樣;第二個動作是用 pytest 執行測試用例
httprunner run testcases # 等價於 hrun testcase
到此這篇關於Httprunner簡介、安裝及基本使用的文章就介紹到這瞭,更多相關Httprunner安裝使用內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- python性能測試工具locust的使用
- Python locust工具使用詳解
- python 基於DDT實現數據驅動測試
- pytest多進程或多線程執行測試實例
- Python接口自動化系列之unittest結合ddt的使用教程詳解