Pytest测试框架基本使用方法详解


Posted in Python onNovember 25, 2020

pytest介绍

pytest是一个非常成熟的全功能的Python测试框架,主要特点有以下几点:

1、简单灵活,容易上手,文档丰富;

2、支持参数化,可以细粒度地控制要测试的测试用例;

3、能够支持简单的单元测试和复杂的功能测试,还可以用来做selenium/appnium等自动化测试、接口自动化测试(pytest+requests);

4、pytest具有很多第三方插件,并且可以自定义扩展

  • 如pytest-selenium(集成selenium)、
  • pytest-html(完美html测试报告生成)、
  • pytest-rerunfailures(失败case重复执行)、
  • pytest-xdist(多CPU分发)、
  • pytest--ordering(控制测试运行的顺序)

5、测试用例的skip和xfail处理;

6、可以很好的和CI工具结合,例如jenkins

编写规则:

  • 测试文件以test_开头(以_test结尾也可以)
  • 测试类以Test开头,并且不能带有 init 方法
  • 测试函数以test_开头

断言使用基本的assert即可

快速示例

test_pyexample.py

import pytest

class TestClass:
    def test_one(self):
      x = "this"
      assert 'h' in x

    def test_two(self):
      x = "hello"
      assert hasattr(x, 'check')

    def test_three(self):
      a = "hello"
      b = "hello world"
      assert a in b

通过命令行运行:

1、cd 到代码所在的目录,执行命令:py.test test_pyexample.py

2、安装pytest-sugar插件可以看到进度条

Pycharm配置运行:

1.file->Setting->Tools->Python Integrated Tools->项目名称->Default test runner->选择py.test

import pytest

class TestClass:
    def test_one(self):
      x = "this"
      assert 'h' in x

    def test_two(self):
      x = "hello"
      assert hasattr(x, 'check')

    def test_three(self):
      a = "hello"
      b = "hello world"
      assert a in b

if __name__ == "__main__":
  pytest.main('-q test_class.py')

Console常用参数介绍:

  • -v 用于显示每个测试函数的执行结果
  • -q 只显示整体测试结果
  • -s 用于显示测试函数中print()函数输出
  • -x, --exitfirst, exit instantly on first error or failed test
  • -m 只运行带有装饰器配置的测试用例
  • -h 帮助
py.test # run all tests below current dir
py.test test_mod.py # run tests in module file test_mod.py
py.test somepath # run all tests below somepath like ./tests/
py.test -k stringexpr # only run tests with names that match the
# the "string expression", e.g. "MyClass and not method"
# will select TestMyClass.test_something
# but not TestMyClass.test_method_simple
py.test test_mod.py::test_func # only run tests that match the "node ID",
# e.g "test_mod.py::test_func" will be selected
# only run test_func in test_mod.py

pytest参数化

使用装饰器:@pytest.mark.parametrize()

单个参数:

import pytest
import random
@pytest.mark.parametrize('x',[(1),(2),(6)])
def test_add(x):
  print(x)
  assert x==random.randrange(1,7)

多个参数:

import pytest
@pytest.mark.parametrize('x,y',[
  (1+2,3),
  (2-0,1),
  (6*2,12),
  (10*2,3),
  ("test","test"),
])
def test_add(x,y):  #必须与上面保持一致,只能用x,y不能用其他字母
  assert x==y

控制测试运行顺序

安装pytest-ordering

pip install pytest-ordering

借助于装饰器@pytest.mark.run(order=1)控制测试运行的顺序

import pytest
import time
value=0
@pytest.mark.run(order=2) #后执行order=2
def test_add2():
  print("I am 2")
  time.sleep(2)
  assert value==10
@pytest.mark.run(order=1)  #先执行order=1
def test_add():
  print("I am add")
  global value
  value=10
  assert value==10

运行后生成测试报告(htmlReport)

安装pytest-html:

pip install -U pytest-html

如何使用:

py.test test_pyexample.py --html=report.html

更详细的测试报告

安装 pytest-cov:

pip install pytest-cov

如何使用

py.test --cov-report=html --cov=./ test_code_target_dir
Console参数介绍
--cov=[path], measure coverage for filesystem path (multi-allowed), 指定被测试对象,用于计算测试覆盖率
--cov-report=type, type of report to generate: term, term-missing, annotate, html, xml (multi-allowed), 测试报告的类型
--cov-config=path, config file for coverage, default: .coveragerc, coverage配置文件
--no-cov-on-fail, do not report coverage if test run fails, default: False,如果测试失败,不生成测试报告
--cov-fail-under=MIN, Fail if the total coverage is less than MIN. 如果测试覆盖率低于MIN,则认为失败

多进程运行

安装pytest-xdist:

pip install -U pytest-xdist

如何使用:

py.test test_pyexample.py -n NUM

其中NUM填写并发的进程数。

重新运行失败的用例

安装pytest- rerunfailures:

import random
def add(x,y):
  return x+y
def test_add():
  random_value=random.randint(2,7)
  print('random_value:'+str(random_value))
  assert add(1,3)==random_value

如何使用:

命令:pytest --reruns 重试次数

比如:pytest --reruns 3

表示:运行失败的用例可以重新运行3次

命令:pytest --reruns 重试次数 --reruns-delay 次数之间的延时设置(单位:秒)

比如:pytest --reruns 3 --reruns-delay 5

表示:(译:瑞软四、地类)运行失败的用例可以重新运行3次,第一次和第二次的间隔时间为5秒钟

另外也可以通过装饰器的方式配置:

@pytest.mark.flaky(reruns=3, reruns_delay=5)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
简单实现python爬虫功能
Dec 31 Python
Django如何实现内容缓存示例详解
Sep 24 Python
tensorflow构建BP神经网络的方法
Mar 12 Python
Sanic框架基于类的视图用法示例
Jul 18 Python
对python3标准库httpclient的使用详解
Dec 18 Python
pygame实现五子棋游戏
Oct 29 Python
Django 404、500页面全局配置知识点详解
Mar 10 Python
Python将字典转换为XML的方法
Aug 01 Python
Pycharm调试程序技巧小结
Aug 08 Python
python3.7中安装paddleocr及paddlepaddle包的多种方法
Nov 27 Python
python爬虫中url管理器去重操作实例
Nov 30 Python
Python爬虫教程之利用正则表达式匹配网页内容
Dec 08 Python
python实现企业微信定时发送文本消息的实例代码
Nov 25 #Python
Python json解析库jsonpath原理及使用示例
Nov 25 #Python
搭建pypi私有仓库实现过程详解
Nov 25 #Python
Python代码覆盖率统计工具coverage.py用法详解
Nov 25 #Python
python 实时调取摄像头的示例代码
Nov 25 #Python
Python存储读取HDF5文件代码解析
Nov 25 #Python
python 简单的调用有道翻译
Nov 25 #Python
You might like
PHP如何得到当前页和上一页的地址?
2006/11/27 PHP
发一个php简单的伪原创程序,配合商城采集用的
2010/10/12 PHP
php遍历目录方法小结
2015/03/10 PHP
那些年,我还在学习jquery 学习笔记
2012/03/05 Javascript
js获取时间并实现字符串和时间戳之间的转换
2015/01/05 Javascript
Webwork 实现文件上传下载代码详解
2016/02/02 Javascript
BootStrapValidator校验方式
2016/12/19 Javascript
JavaScript 限制文本框不可输入英文单双引号的方法
2016/12/20 Javascript
webpack4的迁移的使用方法
2018/05/25 Javascript
面试题:react和vue的区别分析
2019/04/08 Javascript
解决微信小程序调用moveToLocation失效问题【超简单】
2019/04/12 Javascript
Vuex 模块化使用详解
2019/07/31 Javascript
vue.js购物车添加商品组件的方法
2019/09/17 Javascript
JavaScript Window窗口对象属性和使用方法
2020/01/19 Javascript
js函数和this用法实例分析
2020/03/13 Javascript
[00:55]2015国际邀请赛中国区预选赛5月23日——28日约战上海
2015/05/25 DOTA
python高并发异步服务器核心库forkcore使用方法
2013/11/26 Python
python中如何正确使用正则表达式的详细模式(Verbose mode expression)
2017/11/08 Python
Python 数据库操作 SQLAlchemy的示例代码
2019/02/18 Python
Django重置migrations文件的方法步骤
2019/05/01 Python
Scrapy-Redis结合POST请求获取数据的方法示例
2019/05/07 Python
python图像和办公文档处理总结
2019/05/28 Python
Python进程的通信Queue、Pipe实例分析
2020/03/30 Python
python实现学生成绩测评系统
2020/06/22 Python
Python tkinter制作单机五子棋游戏
2020/09/14 Python
Python中读取文件名中的数字的实例详解
2020/12/25 Python
HTML5为输入框添加语音输入功能的实现方法
2017/02/06 HTML / CSS
农村婚礼证婚词
2014/01/10 职场文书
初中语文教学反思
2014/02/02 职场文书
观看《永远的雷锋》心得体会
2014/03/12 职场文书
科级干部群众路线教育实践活动对照检查材料思想汇报
2014/09/20 职场文书
2014年党员整改措施
2014/10/24 职场文书
2015年检验员工作总结范文
2015/04/30 职场文书
2015年客房服务员工作总结
2015/05/15 职场文书
《自己的花是让别人看的》教学反思
2016/02/19 职场文书
2016年中学植树节活动总结
2016/03/16 职场文书