前言简介
主要特点Httprunner2.x和3.x区别 安装相关命令基本使用
创建项目make转pytest用例run 运行用例
前言
本系列文章开始介绍接口开源测试工具 --httprunner3的使用,基当前最新版本的3.1.6 简介 主要特点
HttpRunner 是一款面向 HTTP(S) 协议的通用测试框架,只需编写维护一份 YAML/JSON 脚本,即可实现自动化测试、性能测试、线上监控、持续集成等多种测试需求。
Httprunner2.x和3.x区别继承所有强大的特性requests,享受人性化处理 HTTP(S) 的乐趣。以 YAML 或 JSON 格式定义测试用例,pytest以简洁优雅的方式运行。在支持下记录和生成测试用例HAR。支持///variables机制来创建极其复杂的测试场景extract。validatehooks使用debugtalk.py插件,任何功能都可以在测试用例的任何部分使用。使用jmespath,提取和验证 json 响应从未如此简单。有了pytest,数百个插件随时可用。使用allure,测试报告可以非常漂亮和强大。通过重用locust,您无需额外工作即可运行性能测试。支持 CLI 命令,与CI/CD
说明 需要Python3.6+
执行用例框架: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
安装 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 是把 YAML/JSON 测试用例转成 pytest用例, 需指定 yaml 文件路径或文件夹路径
httprunner make testcase # 等价于 hmake testcase
run 运行用例run 命令实际上有 2 个动作,一个是把 YAML/JSON 测试用例转成 pytest 用例,同上一步 make 的功能一样;第二个动作是用 pytest 执行测试用例
httprunner run testcases# 等价于hrun testcase