前言

官方文档关于fixture功能的解释如下:

The purpose of test fixtures is to provide a fixed baseline upon which tests can reliably and repeatedly execute. pytest fixtures offer dramatic improvements over the classic xUnit style of setup/teardown functions:

  • fixtures have explicit names and are activated by declaring their use from test functions, modules, classes or whole projects.
  • fixtures are implemented in a modular manner, as each fixture name triggers a fixture function which can itself use other fixtures.
  • fixture management scales from simple unit to complex functional testing, allowing to parametrize fixtures and tests according to configuration and component options, or to re-use fixtures across function, class, module or whole test session scopes.

fixtrue特点

  1. 和setup和teardown一样的功能,但相对更灵活一些
  2. 通过conftest.py文件可以实现数据共享,方便调用

使用fixtrue

通过fixtrue源码,可以看到fixtrue的几个参数作用如下:

def fixture(callable_or_scope=None, *args, scope="function", params=None, autouse=False, ids=None, name=None)
:arg scope: the scope for which this fixture is shared, one of
``"function"`` (default), ``"class"``, ``"module"``,
``"package"`` or ``"session"`` (``"package"`` is considered **experimental**
at this time). This parameter may also be a callable which receives ``(fixture_name, config)``
as parameters, and must return a ``str`` with one of the values mentioned above. See :ref:`dynamic scope` in the docs for more information.
scope: scope 有四个级别参数 "function", "class", "module" or "session". 默认情况下为function
:arg params: an optional list of parameters which will cause multiple
invocations of the fixture function and all of the tests
using it.
The current parameter is available in ``request.param``.
一个可选的参数列表,它将导致多个参数调用fixture功能和所有测试使用它 :arg autouse: if True, the fixture func is activated for all tests that
can see it. If False (the default) then an explicit
reference is needed to activate the fixture.
如果为True,则为所有测试激活fixture func 可以看到它。 如果为False(默认值)则显式需要参考来激活fixture :arg ids: list of string ids each corresponding to the params
so that they are part of the test id. If no ids are provided
they will be generated automatically from the params. 每个字符串id的列表,每个字符串对应于params 这样他们就是测试ID的一部分。 如果没有提供ID它们将从params自动生成
:arg name: the name of the fixture. This defaults to the name of the
decorated function. If a fixture is used in the same module in
which it is defined, the function name of the fixture will be
shadowed by the function arg that requests the fixture; one way
to resolve this is to name the decorated function
``fixture_<fixturename>`` and then use
``@pytest.fixture(name='<fixturename>')``.
fixture的名称。 默认装饰函数的名称。 如果fixture在定义它的同一模块中使用,
功能名称将被请求夹具的功能arg遮蔽; 解决这个问题的一种方法是将装饰函数命名
"""

  


 

实际使用

在举例过程中可以使用 pytest --setup-show 文件名.py 执行测试用例,可以查看用例的执行细节

第一个例子:scope为默认值

import pytest

@pytest.fixture(scope="class")
def login():
print("登录") def test_1(login):
print("登录后1") def test_2(login):
print("登录后2") test_fix2.py
SETUP C login
test_fix2.py::test_1 (fixtures used: login).
TEARDOWN C login
SETUP C login
test_fix2.py::test_2 (fixtures used: login).
TEARDOWN C login

  从执行结果看到,当fixtrue参数为空,默认为function时,两条测试用例各执行了一次login函数

  

第二个例子:scope=class

@pytest.fixture(scope="class")
def login():
print("登录") class TestCase():
def test_1(self, login):
print("登录后1") def test_2(self, login):
print("登录后2") 执行结果:
test_fix2.py 
SETUP C login
test_fix2.py::TestCase::test_1 (fixtures used: login).
test_fix2.py::TestCase::test_2 (fixtures used: login).
TEARDOWN C login

 从执行结果可以看到,在两条测试用例login在该类中只执行了一次 

第三个例子:scope="module"

import pytest


@pytest.fixture(scope="module")
def login():
print("登录") def test_1(login):
print("登录后1") def test_2(login):
print("登录后2") class TestCase():
def test_case1(self, login):
print("类方法,登录1") def test_case2(self, login):
print("类方法,登录2") 执行结果:

test_fix2.py
SETUP M login
test_fix2.py::test_1 (fixtures used: login).
test_fix2.py::test_2 (fixtures used: login).
test_fix2.py::TestCase::test_case1 (fixtures used: login).
test_fix2.py::TestCase::test_case2 (fixtures used: login).
TEARDOWN M login

第四个例子:scope="session",跨文件使用

文件一

import pytest

def test_1(login):
print("登录后1") def test_2(login):
print("登录后2") class TestCase():
def test_case1(self, login):
print("类方法,登录1") def test_case2(self, login):
print("类方法,登录2") 文件二 import pytest def test_1(login):
print('第二个文件登录后的第一个用例')
conftest.py 文件
import pytest
@pytest.fixture(scope="session")
def login():
print("登录")

执行结果:

test_fix2.py
SETUP S login
test_fix2.py::test_1 (fixtures used: login).
test_fix2.py::test_2 (fixtures used: login).
test_fix2.py::TestCase::test_case1 (fixtures used: login).
test_fix2.py::TestCase::test_case2 (fixtures used: login).
test_fix1.py
test_fix1.py::test_1 (fixtures used: login).
TEARDOWN S login

  由上面的执行结果可知,当scope="session"的时候,多个测试文件,多个测试用例,添加fixtrue装饰器后都是执行一次

小结

由以上四个简单的例子,可以看到pytest具有的强大的fixtrue功能,可以使用例设计更加灵活,测试数据、测试依赖等配置更加方便,以后在书写测试脚本的时候,可以根据不同请款合理使用fixtrue功能

pytest学习笔记二 fixtrue的更多相关文章

  1. pytest 学习笔记二:兼容unittest、执行方式、生成报告

    1.官方文档上说pytest兼容unittest时,不支持setUpModule 和 tearDownModule,但实际验证是可以的. 验证的场景是py文件中,只有一个测试类, 经验证有多个测试类, ...

  2. [转载]pytest学习笔记

    pytest学习笔记(三)   接着上一篇的内容,这里主要讲下参数化,pytest很好的支持了测试函数中变量的参数化 一.pytest的参数化 1.通过命令行来实现参数化 文档中给了一个简单的例子, ...

  3. WPF的Binding学习笔记(二)

    原文: http://www.cnblogs.com/pasoraku/archive/2012/10/25/2738428.htmlWPF的Binding学习笔记(二) 上次学了点点Binding的 ...

  4. AJax 学习笔记二(onreadystatechange的作用)

    AJax 学习笔记二(onreadystatechange的作用) 当发送一个请求后,客户端无法确定什么时候会完成这个请求,所以需要用事件机制来捕获请求的状态XMLHttpRequest对象提供了on ...

  5. [Firefly引擎][学习笔记二][已完结]卡牌游戏开发模型的设计

    源地址:http://bbs.9miao.com/thread-44603-1-1.html 在此补充一下Socket的验证机制:socket登陆验证.会采用session会话超时的机制做心跳接口验证 ...

  6. JMX学习笔记(二)-Notification

    Notification通知,也可理解为消息,有通知,必然有发送通知的广播,JMX这里采用了一种订阅的方式,类似于观察者模式,注册一个观察者到广播里,当有通知时,广播通过调用观察者,逐一通知. 这里写 ...

  7. java之jvm学习笔记二(类装载器的体系结构)

    java的class只在需要的时候才内转载入内存,并由java虚拟机的执行引擎来执行,而执行引擎从总的来说主要的执行方式分为四种, 第一种,一次性解释代码,也就是当字节码转载到内存后,每次需要都会重新 ...

  8. Java IO学习笔记二

    Java IO学习笔记二 流的概念 在程序中所有的数据都是以流的方式进行传输或保存的,程序需要数据的时候要使用输入流读取数据,而当程序需要将一些数据保存起来的时候,就要使用输出流完成. 程序中的输入输 ...

  9. 《SQL必知必会》学习笔记二)

    <SQL必知必会>学习笔记(二) 咱们接着上一篇的内容继续.这一篇主要回顾子查询,联合查询,复制表这三类内容. 上一部分基本上都是简单的Select查询,即从单个数据库表中检索数据的单条语 ...

随机推荐

  1. WPF 精修篇 调用Win32Api

    原文:WPF 精修篇 调用Win32Api 栗子是 调用WIn32API 让窗口最前 后台代码 [DllImport("user32.dll")] private static e ...

  2. 安卓访问https错误,访问http可以,可能是nginx ssl证书配置有问题

    开发中遇到react-native生成的android访问UAT和开发环境的http api都可以,但是访问生产环境的https就报错,还有就是第三方webhook调用你https网站的api也可能会 ...

  3. Golang中设置函数默认参数的优雅实现

    在Golang中,我们经常碰到要设置一个函数的默认值,或者说我定义了参数值,但是又不想传递值,这个在python或php一类的语言中很好实现,但Golang中好像这种方法又不行.今天在看Grpc源码时 ...

  4. 微服务架构 ------ 插曲 hikari连接池的配置

    开胃菜:据说hikari连接池很快,快到让另一个连接池的作者抛弃对自己连接池的维护,并且强烈推荐使用hikari 连接池目前我们项目使用的有两个 一个是Druid , 一个是 Hikari, 其中Dr ...

  5. Linux进程管理(11)

    进程介绍: 1.在Linux中,每个执行的程序(代码)都称为一个进程.每一个进程都分配一个ID号. 2.每一个进程,都会对应一个父进程,而这个父进程可以复制多个子进程. 3.每个进程都有两种方式存在: ...

  6. Spark MLlib基本算法【相关性分析、卡方检验、总结器】

    一.相关性分析 1.简介 计算两个系列数据之间的相关性是统计中的常见操作.在spark.ml中提供了很多算法用来计算两两的相关性.目前支持的相关性算法是Pearson和Spearman.Correla ...

  7. (原+修改)ubuntu上离线安装pytorch

    转载请注明出处: https://www.cnblogs.com/darkknightzh/p/12000809.html 参考网址: https://blog.csdn.net/qq_4193655 ...

  8. Linux shell awk中print及变量使用

    Linux处理文本工具     grep: 过滤文本内容     sed:  编辑文本内容     awk:   显示文本      awk:  Aho Peter Weinberger  Kerni ...

  9. 逆向破解之160个CrackMe —— 031

    CrackMe —— 031 160 CrackMe 是比较适合新手学习逆向破解的CrackMe的一个集合一共160个待逆向破解的程序 CrackMe:它们都是一些公开给别人尝试破解的小程序,制作 c ...

  10. 201871010115——马北《面向对象程序设计JAVA》第二周学习总结

    项目 内容 这个作业属于哪个课程 https://www.cnblogs.com/nwnu-daizh/ 这个作业的要求在哪里 https://www.cnblogs.com/nwnu-daizh/p ...