Pytest学习(四) - fixture的使用

写这篇文章,整体还是比较坎坷的,我发现有知识断层,理解再整理写出来,还真的有些难。

作为java党硬磕Python,虽然对我而言是常事了(因为我比较爱折腾,哈哈),但这并不能影响我的热情。

执念这东西,有时真的很强大,回想下,你有多久没有特别想坚持学一样技能或者看一本书了呢

之前就有很多粉丝和我说,六哥pytest很简单,都是入门的东西不爱看,网上有很多教程,能不能写点干货呀,但我为什么还是要坚持写呢?

简单呀,因为我想学,我之前都是拿来改改直接用,“哪里不会点哪里”,个中细节处理不是很懂,想好好消化下,再整理写出来。

fixture功能

传入测试中的数据集

配置测试前系统的数据准备,即初始化数据

为批量测试提供数据源

fixture可以当做参数传入 如何使用

在函数上加个装饰器@pytest.fixture(),个人理解为,就是java的注解在方法上标记下,依赖注入就能用了。
fixture是有返回值,没有返回值默认为None。用例调用fixture返回值时,把fixture的函数名当做变量用就可以了,示例代码如下:

# -*- coding: utf-8 -*- # @Time : 2020/10/24 18:23 # @Author : longrong.lang # @FileName: test_fixture_AsParam.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang import pytest @pytest.fixture() def param(): return "fixture当做参数" def test_Asparam(param): print('param : '+param) 输出结果:

Pytest学习(四) - fixture的使用

多个fixture的使用

示例代码如下:

# -*- coding: utf-8 -*- # @Time : 2020/10/24 18:43 # @Author : longrong.lang # @FileName: test_Multiplefixture.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' 多个fixture使用情况 ''' import pytest @pytest.fixture() def username(): return '软件测试君' @pytest.fixture() def password(): return '123456' def test_login(username, password): print('\n输入用户名:'+username) print('输入密码:'+password) print('登录成功,传入多个fixture参数成功') 输出结果:

Pytest学习(四) - fixture的使用

fixture的参数使用

示例代码如下:

@pytest.fixture(scope="function", params=None, autouse=False, ids=None, name=None) def test(): print("fixture初始化参数列表") 参数说明:

scope:即作用域,function"(默认),"class","module","session"四个

params:可选参数列表,它将导致多个参数调用fixture函数和所有测试使用它。

autouse:默认:False,需要用例手动调用该fixture;如果是True,所有作用域内的测试用例都会自动调用该fixture

ids:params测试ID的一部分。如果没有将从params自动生成.

name:默认:装饰器的名称,同一模块的fixture相互调用建议写个不同的name。

session的作用域:是整个测试会话,即开始执行pytest到结束测试

scope参数作用范围

控制fixture的作用范围:session>module>class>function

function:每一个函数或方法都会调用

class:每一个类调用一次,一个类中可以有多个方法

module:每一个.py文件调用一次,该文件内又有多个function和class

session:是多个文件调用一次,可以跨.py文件调用,每个.py文件就是module

scope四个参数的范围 1、scope="function

@pytest.fixture()如果不写参数,参数就是scope="function",它的作用范围是每个测试用例执行之前运行一次,销毁代码在测试用例之后运行。在类中的调用也是一样的。
示例代码如下:

# -*- coding: utf-8 -*- # @Time : 2020/10/24 19:05 # @Author : longrong.lang # @FileName: test_fixture_scopeFunction.py # @Software: PyCharm # @Cnblogs :https://www.cnblogs.com/longronglang ''' scope="function"示例 ''' import pytest # 默认不填写 @pytest.fixture() def test1(): print('\n默认不填写参数') # 写入默认参数 @pytest.fixture(scope='function') def test2(): print('\n写入默认参数function') def test_defaultScope1(test1): print('test1被调用') def test_defaultScope2(test2): print('test2被调用') class Testclass(object): def test_defaultScope2(self, test2): print('\ntest2,被调用,无返回值时,默认为None') assert test2 == None if __name__ == '__main__': pytest.main(["-q", "test_fixture_scopeFunction.py"]) 输出结果:

Pytest学习(四) - fixture的使用

2、scope="class"

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zygyfj.html