python pytest测试框架介绍三
之前介绍了pytest以xUnit形式来写用例,下面来介绍pytest特有的方式来写用例
1、pytest fixture实例1
代码如下
from __future__ import print_function
import pytest @pytest.fixture(scope='module')
def resource_a_setup(request):
print('\nresources_a_setup()')
def resource_a_teardown():
print('\nresources_a_teardown()')
request.addfinalizer(resource_a_teardown) def test_1_that_needs_resource_a(resource_a_setup):
print('test_1_that_needs_resource_a()') def test_2_that_does_not():
print('\ntest_2_that_does_not()') def test_3_that_does(resource_a_setup):
print('\ntest_3_that_does()')
使用-s -v运行查看详情如下
这里使用的了pytest的特有的模式来写用例,使用的方式是scope方式,scope支持多种,后面会介绍
这里还使用了pytest的addfinalizer内置功能,具体可参见官网,用处是:在最后一个测试项目中调用teardown
2、pytest fixture实例2
代码如下
from __future__ import print_function
import pytest @pytest.fixture()
def resource_a():
print('\nresources_a() "setup"') def test_1_that_needs_resource_a(resource_a):
print('test_1_that_needs_resource_a()') def test_2_that_does_not():
print('\ntest_2_that_does_not()') def test_3_that_does(resource_a):
print('test_3_that_does()')
这是最简单的一个例子,结果如下
可以看出测试用例继承了用pytest.fixture的函数后,都执行了setup的功能,默认的pytest.fixture是function
3、使用pytest.fixture的几种方法
在写用例时,有几种方法使用pytest.fixture来形成框架,
方法一:
就是上面提到的这种方法,如下
pytest.fixture()
def before():
print('\nbefore each test') def test_1(before):
print('test_1()') def test_2(before):
print('test_2()')
方法二:使用fixture修饰
@pytest.fixture()
def before():
print('\nbefore each test') @pytest.mark.usefixtures("before")
def test_1():
print('test_1()') @pytest.mark.usefixtures("before")
def test_2():
print('test_2()')
标红的就是修饰器
4、fixture scope的范围参数
之前使用@pytest.fixture(scope='module')来定义框架,scope的参数有以下几种
- function 每一个用例都执行
- class 每个类执行
- module 每个模块执行(函数形式的用例)
- session 每个session只运行一次,在自动化测试时,登录步骤可以使用该session
如下一个用module例子
@pytest.fixture(scope='module')
def resource_a():
print('\nresources_a() "setup"') def test_1_that_needs_resource_a(resource_a):
print('test_1_that_needs_resource_a()') def test_2_that_does_not():
print('\ntest_2_that_does_not()') def test_3_that_does(resource_a):
print('test_3_that_does()')
即使我们在每个用例都继承了resource_a,但在实际测试中,所有用例只执行了一次resource_a
这时,你可能会问,为什么只这setup功能,没有teardown功能,要teardown怎么写,方法如下:
def cheese_db(request):
..... def teardown():
print('\n[teardown] cheese_db finalizer, disconnect from db')
request.addfinalizer(teardown)
这里使用的还是之前介绍的request.addfinalizer功能,函数名字可以任意取,不一定要teardown
5、带参数的fixture
这里就不介绍了,看官方文档吧
6、多种fixture scope结合使用
看代码,如下
@pytest.fixture(scope="module")
def foo(request):
print('\nfoo setup - module fixture')
def fin():
print('foo teardown - module fixture')
request.addfinalizer(fin) @pytest.fixture()
def bar(request):
print('bar setup - function fixture')
def fin():
print('bar teardown - function fixture')
request.addfinalizer(fin) @pytest.fixture()
def baz(request):
print('baz setup - function fixture')
def fin():
print('baz teardown - function fixture')
request.addfinalizer(fin) def test_one(foo, bar, baz):
print('in test_one()') def test_two(foo, bar, baz):
print('in test_two()')
测试结果如下
pytest还有很有用的yield功能,后续再介绍
python pytest测试框架介绍三的更多相关文章
- python pytest测试框架介绍二
在介绍一中简单介绍了pytest的安装和简单使用,接下来我们就要实际了解pytest了 一.pytest的用例发现规则 pytest可以在不同的函数.包中发现用例,发现的规则如下 文件名以test_开 ...
- python pytest测试框架介绍四----pytest-html插件html带错误截图及失败重测机制
一.html报告错误截图 这次介绍pytest第三方插件pytest-html 这里不介绍怎么使用,因为怎么使用网上已经很多了,这里给个地址给大家参考,pytest-html生成html报告 今天在这 ...
- python pytest测试框架介绍一
一.安装 pytest不是python默认的package,需要自动手工安装. pytest支持python 2.6--3.5之间的版本,同时可以在unix及windows上安装 安装方式: pip ...
- python pytest测试框架介绍五---日志实时输出
同样的,在使用pytest进行自动化测试时,需要将实时日志打印出来,而不是跑完后才在报告中出结果. 不过,好在pytest在3.3版本开始,就支持这一功能了,而不用再像nose一样,再去装第三方插件. ...
- Pytest测试框架(三):pytest fixture 用法
xUnit style 结构的 fixture用于初始化测试函数, pytest fixture是对传统的 xUnit 架构的setup/teardown功能的改进.pytest fixture为测试 ...
- 『德不孤』Pytest框架 — 1、Pytest测试框架介绍
目录 1.什么是单元测试框架 2.单元测试框架主要做什么 3.单元测试框架和自动化测试框架有什么关系 4.Pytest测试框架说明 5.Pytest框架和Unittest框架区别 (1)Unittes ...
- 【pytest系列】- pytest测试框架介绍与运行
如果想从头学起pytest,可以去看看这个系列的文章! https://www.cnblogs.com/miki-peng/category/1960108.html 前言 目前有两种纯测试的测 ...
- python nose测试框架全面介绍十---用例的跳过
又来写nose了,这次主要介绍nose中的用例跳过应用,之前也有介绍,见python nose测试框架全面介绍四,但介绍的不详细.下面详细解析下 nose自带的SkipTest 先看看nose自带的S ...
- python nose测试框架全面介绍七--日志相关
引: 之前使用nose框架时,一直使用--logging-config的log文件来生成日志,具体的log配置可见之前python nose测试框架全面介绍四. 但使用一段时间后,发出一个问题,生成的 ...
随机推荐
- mysql 用户权限操作
https://www.cnblogs.com/SQL888/p/5748824.html http://blog.csdn.net/fafa211/article/details/2249217
- 关于Android打版本号的小白文
尽管常常和android打交道.但事实上我对android不是非常了解. 这里记录一下ant编译androidproject的过程,然后顺便记录一下android的一些基本概念.不求渡人,但求渡己.这 ...
- hdu5289 2015多校联合第一场1002 Assignment
题意:给出一个数列.问当中存在多少连续子区间,当中子区间的(最大值-最小值)<k 思路:设dp[i]为从区间1到i满足题意条件的解.终于解即为dp[n]. 此外 如果对于arr[i] 往左遍历 ...
- 8 -- 深入使用Spring -- 4...1 为什么需要AOP
8.4.1 为什么需要AOP AOP专门用于处理系统中分布于各种模块(不同方法)中的交叉关注点的问题,在Java EE应用中,常常通过AOP来处理一些具有横切性质的系统级服务,如事务管理.安全检查.缓 ...
- nodejs服务器部署教程四
nodejs服务器部署最后一篇文章,部署ssl证书,升级http为https,其实网上相关教程有很多,但是略麻烦,本教程让你一切从简,5分钟搞定https,免费一年哦 申请ssl证书 免费申请的机构有 ...
- springboot学习过程笔记
1.spring-boot-devtools热部署在IDEA中配置后不起作用(Eclipse设置了自动编译,所以不用额外设置) 1).pom.xml添加spring-boot-devtools依赖后 ...
- 【遥感影像】Python GDAL 像素与坐标对应
转:https://blog.csdn.net/theonegis/article/details/50805520 https://blog.csdn.net/wsp_1138886114/arti ...
- Greenplum-cc-web安装
第一章 文档概述 1. 本安装手册描述适用于Greenplum4.0以上版本的安装Greenplum-cc-web操作 第二章 安装介质 针对Greenplum版本下载对应Greenplum-cc-w ...
- 如何关闭Struts2的webconsole.html
出于安全目的,在禁用了devMode之后,仍然不希望其他人员看到webconsole.html页面,则可以直接删除webconsole.html 的源文件, 它的位置存在于: 我们手工删除 strut ...
- Windows内存放血篇,突破物理内存的CopyOnWrite
本篇以x86(开启PAE) 以及x64 Win7系统 不借助微软API突破内存的写拷贝机制进行讲述 https://bbs.pediy.com/thread-222949.htm 0x01 B ...