首頁 > 軟體

Httprunner簡介、安裝及基本使用教學

2022-02-15 13:02:27

前言

本系列文章開始介紹介面開源測試工具 --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使用模板結構建立新專案
har2caseHAR(HTTP Archive) 轉成 YAML/JSON
makeYAML/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安裝使用內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com