从0开始python学习-33.夹具@pytest.fixture(scope=““,params=““,autouse=““,ids=““,name=““)

目录

[1. 创建夹具](#1. 创建夹具)

[1.1 pytest方式](#1.1 pytest方式)

[1.2 unittest方式](#1.2 unittest方式)

[2. 使用夹具](#2. 使用夹具)

[2.1 通过参数引用](#2.1 通过参数引用)

[2.2 通过函数引用](#2.2 通过函数引用)

[3. 参数详解](#3. 参数详解)

[3.1 scope:作用域](#3.1 scope:作用域)

[3.2 params-参数化](#3.2 params-参数化)

[3.3 autouse=True表示自动使用,默认为False](#3.3 autouse=True表示自动使用,默认为False)

[3.4 ids:设置变量名](#3.4 ids:设置变量名)

[3.5 name:别名](#3.5 name:别名)


1. 创建夹具

1.1 pytest方式

python 复制代码
@pytest.fixture()
def test_a():
    print('case执行之前执行')
    yield
    print('case执行之后执行')

1.2 unittest方式

python 复制代码
class Test:
    def setup_method(self):
        print('setup_method:case执行之前执行--用例之前执行一次')
    def teardown_method(self):
        print('teardown_method:case执行之后执行--每个case执行之前均执行')
    def setup_class(self):
        print('setup_class:case执行之前执行--每个case执行之后均执行')
    def teardown_class(self):
        print('teardown_class:case执行之后执行--全部用例执行完了之后才执行')

2. 使用夹具

2.1 通过参数引用

2.2 通过函数引用

3. 参数详解

@pytest.fixture(scope="",params="",autouse="",ids="",name="")

3.1 scope:作用域

表示标记方法的作用域:function(默认),class,module,package,session

session > module > class > function

function:每个用例都有一个

python 复制代码
@pytest.fixture(scope='function')
def test_a():
    print('之前执行')
    yield
    print('之后执行')
class Test_A:
    def test_1(self,test_a):
        print('test_1')
    def test_2(self,test_a):
        print('test_2')
class Test_B:
    def test_3(self,test_a):
        print('test_3')

class:每个class 共用一个

python 复制代码
@pytest.fixture(scope='class')
def test_a():
    print('之前执行')
    yield
    print('之后执行')
class Test_A:
    def test_1(self,test_a):
        print('test_1')
    def test_2(self):
        print('test_2')
class Test_B:
    def test_3(self):
        print('test_3')

下面就不举例了:module:每个文件共用一个;package:每个包共用一个;session:全局共用一个

3.2 params-参数化

支持列表[]、元组()、字典列表[{},{}],字典元组({},{})

fixture引用外部参数

python 复制代码
param = ['111',[1,2],('a','b')]
@pytest.fixture(params=param)
def test_a(request):
    test = request.param
    return test

def test_1(test_a):
    print(test_a)

fixture标签直接进行参数化

python 复制代码
@pytest.fixture(params=[1,2,'aaaa'])
def test_b(request):
    test1 = request.param
    return test1
def test_2(test_b):
    print(test_b)

3.3 autouse=True表示自动使用,默认为False

autouse=True时无论是否使用都会被使用

python 复制代码
@pytest.fixture(autouse=True)
def test_a():
    print('test_a')

def test_1():
    print('test_1')

autouse=False时必须要手动调用了才会被使用

python 复制代码
@pytest.fixture(autouse=False)
def test_b():
    print('test_b')

def test_2(test_b):
    print('test_2')

3.4 ids:设置变量名

当使用params参数化时,给每一个值设置一个变量名

python 复制代码
param = ['111',[1,2],('a','b')]
@pytest.fixture(params=param,ids=['user1','user2','user3'])
def test_a(request):
    test = request.param
    return test

def test_1(test_a):
    print(test_a)

3.5 name:别名

表示被@pytest.fixture标记的方法取一个别名,当取了别名后,原来的名称就不能用了

python 复制代码
@pytest.fixture(name='yyyy')
def test_a():
    print('11111')

def test_1(yyyy):
    print('test_1')
def test_2(test_a):
    print('test_1')
相关推荐
pzx_0012 分钟前
【内积】内积计算公式及物理意义
数据结构·python·opencv·算法·线性回归
一丝晨光3 分钟前
逻辑运算符
java·c++·python·kotlin·c#·c·逻辑运算符
ForRunner1236 分钟前
使用 Python 高分解决 reCAPTCHA v3 的指南
数据库·python·microsoft
晓幂1 小时前
CTFShow-信息搜集
笔记·学习
躺平的花卷1 小时前
Python爬虫案例六:抓取某个地区某月份天气数据并保存到mysql数据库中
数据库·爬虫·python·mysql
虚拟搬运工1 小时前
Python类及元类的创建流程
开发语言·chrome·python
cyr___1 小时前
Unity教程(十六)敌人攻击状态的实现
学习·游戏·unity·游戏引擎
Code哈哈笑1 小时前
【C++ 学习】多态的基础和原理(10)
java·c++·学习
学步_技术1 小时前
Python编码系列—Python原型模式:深克隆与高效复制的艺术
开发语言·python·原型模式
nbsaas-boot2 小时前
架构卡牌游戏:通过互动与挑战学习系统设计的创新玩法
学习·游戏·架构