当前位置: 代码迷 >> 综合 >> 18.pytest_fixture的作用范围(scope)
  详细解决方案

18.pytest_fixture的作用范围(scope)

热度:50   发布时间:2023-09-19 01:31:04.0

fixture里面有个scope参数可以控制fixture的作用范围:session > module > class > function

fixture(scope="function", params=None, autouse=False, ids=None, name=None):"""使用装饰器标记fixture的功能** 作者:上海-悠悠 QQ交流群:588402570**可以使用此装饰器(带或不带参数)来定义fixture功能。 fixture功能的名称可以在以后使用引用它会在运行测试之前调用它:test模块或类可以使用pytest.mark.usefixtures(fixturename标记。 测试功能可以直接使用fixture名称作为输入参数,在这种情况下,夹具实例从fixture返回功能将被注入。:arg scope: scope 有四个级别参数 "function" (默认), "class", "module" or "session".:arg params: 一个可选的参数列表,它将导致多个参数调用fixture功能和所有测试使用它:arg autouse:  如果为True,则为所有测试激活fixture func 可以看到它。 如果为False(默认值)则显式需要参考来激活fixture:arg ids: 每个字符串id的列表,每个字符串对应于params 这样他们就是测试ID的一部分。 如果没有提供ID它们将从params自动生成:arg name:   fixture的名称。 这默认为装饰函数的名称。 如果fixture在定义它的同一模块中使用,夹具的功能名称将被请求夹具的功能arg遮蔽; 解决这个问题的一种方法是将装饰函数命名“fixture_ <fixturename>”然后使用”@ pytest.fixture(name ='<fixturename>')“”。
  • function 每一个函数或方法都会调用
  • class 每一个类调用一次,一个类可以有多个方法
  • module,每一个.py文件调用一次,该文件内又有多个function和class
  • session 是多个文件调用一次,可以跨.py文件调用,每个.py文件就是module

scope=“function”

@pytest.fixture()如果不写参数,默认就是scope="function",它的作用范围是每个测试用例来之前运行一次,销毁代码在测试用例运行之后运行。

import pytest
@pytest.fixture(scope="function")
def first():a = "wwj"return a
@pytest.fixture(scope="function")
def sencond():b = "111"return bdef test_01(first,sencond):print(f"用户是:{first},密码是:{sencond}")assert "w" in firstif __name__ == "__main__":pytest.main(["-s", "test_05_fun.py"])

用例放到类里面也一样

import pytest
@pytest.fixture(scope="function")
def first():a = ("wwj","wwj2")return a
@pytest.fixture(scope="function")
def sencond():b = "111"return b
class TestCase():def test_01(self,first,sencond):print(f"用户是:{first[0]},密码是:{sencond}")assert "w" in first[0]def test_02(self,first):print(f"用户是:{first[1]}")assert "wwj" != first[1]if __name__ == "__main__":pytest.main(["-s", "test_06_fun.py"])

scope=“class”

fixture为class级别的时候,如果一个class里面有多个用例,都调用了此fixture,那么此fixture只在该class里所有用例开始前执行一次

import pytest
@pytest.fixture(scope="class")
def first():print("=============开始first==========")a = ("wwj","wwj2")return a
@pytest.fixture(scope="class")
def sencond():print("=============开始second==========")b = "111"return b
class TestCase():def test_01(self,first,sencond):print(f"用户是:{first[0]},密码是:{sencond}")assert "w" in first[0]def test_02(self,first,sencond):print(f"用户是:{first[1]}")assert "wwj" in first[1]if __name__ == "__main__":pytest.main(["-s", "test_06_fun.py"])

运行结果:

test_fix07_class.py::TestCase::test_01 =============开始first==========
=============开始second==========
PASSED                            [ 50%]用户是:wwj,密码是:111test_fix07_class.py::TestCase::test_02 PASSED                            [100%]用户是:wwj2============================== 2 passed in 0.02s ==============================

cope=“module”

fixture为module级别时,在当前.py脚本里面所有用例开始前只执行一次

import pytest
@pytest.fixture(scope="module")
def first():print("=============开始first==========")a = ("wwj","wwj2")return adef test_01(first):assert 'w' in first[0]
class TestCase01():def test_01(self,first):print(f"用户是:{first[0]}")assert "w" in first[0]def test_02(self,first):print(f"用户是:{first[1]}")assert "wwj" in first[1]class TestCase02():def test_01(self,first):print(f"用户是:{first[0]}")assert "w" in first[0]def test_02(self,first):print(f"用户是:{first[1]}")assert "wwj" in first[1]if __name__ == "__main__":pytest.main(["-s", "test_08_module.py"])

运行结果:

test_fix08_module.py::test_01 =============开始first==========
PASSED                                     [ 20%]
test_fix08_module.py::TestCase01::test_01 PASSED                         [ 40%]用户是:wwjtest_fix08_module.py::TestCase01::test_02 PASSED                         [ 60%]用户是:wwj2test_fix08_module.py::TestCase02::test_01 PASSED                         [ 80%]用户是:wwjtest_fix08_module.py::TestCase02::test_02 PASSED                         [100%]用户是:wwj2

scope=“session”

fixturesession级别是可以跨.py模块调用的,也就是当我们有多个.py文件的用例时候,如果多个用例只需调用一次fixture,那就可以设置为scope=“session”,并且写到conftest.py文件里

conftest.py文件名称是固定的,pytest会自动识别该文件。放到工程的根目录下,就可以全局调用了,如果放到某个package包下,那就只在该package内有效

编写conftest.py文件:

import pytest@pytest.fixture(scope="session")
def first():print("\n获取用户名,scope为session级别多个.py模块只运行一次")a = "wwj"return a
import pytest
def test_1(first):'''用例传fixture'''print("测试账号:%s" % first)assert first == "wwj"if __name__ == "__main__":pytest.main(["-s", "test_fix09_session.py"])
import pytest
def test_2(first):'''用例传fixture'''print("测试账号:%s" % first)assert first == "wwj"if __name__ == "__main__":pytest.main(["-s", "test_fix10_session.py"])

在cmd运行:

test_fix09_session.py
获取用户名,scope为session级别多个.py模块只运行一次
测试账号:wwj
.
test_fix10_session.py 测试账号:wwj
.
  相关解决方案