gpt4 book ai didi

python - 将参数传递给 fixture 函数

转载 作者:IT老高 更新时间:2023-10-28 21:11:28 26 4
gpt4 key购买 nike

我正在使用 py.test 来测试一些包装在 python 类 MyTester 中的 DLL 代码。出于验证目的,我需要在测试期间记录一些测试数据,然后再进行更多处理。由于我有很多 test_... 文件,因此我想在大多数测试中重用测试器对象创建(MyTester 的实例)。

由于测试器对象是获得对 DLL 变量和函数的引用的对象,因此我需要将 DLL 变量列表传递给每个测试文件的测试器对象(要记录的变量对于test_... 文件)。列表的内容用于记录指定的数据。

我的想法是这样做:

import pytest

class MyTester():
def __init__(self, arg = ["var0", "var1"]):
self.arg = arg
# self.use_arg_to_init_logging_part()

def dothis(self):
print "this"

def dothat(self):
print "that"

# located in conftest.py (because other test will reuse it)

@pytest.fixture()
def tester(request):
""" create tester object """
# how to use the list below for arg?
_tester = MyTester()
return _tester

# located in test_...py

# @pytest.mark.usefixtures("tester")
class TestIt():

# def __init__(self):
# self.args_for_tester = ["var1", "var2"]
# # how to pass this list to the tester fixture?

def test_tc1(self, tester):
tester.dothis()
assert 0 # for demo purpose

def test_tc2(self, tester):
tester.dothat()
assert 0 # for demo purpose

有可能这样实现还是有更优雅的方式?

通常我可以使用某种设置功能(xUnit 样式)为每种测试方法执行此操作。但我想获得某种重用。有谁知道这是否可以通过固定装置实现?

我知道我可以这样做:(来自文档)

@pytest.fixture(scope="module", params=["merlinux.eu", "mail.python.org"])

但我需要直接在测试模块中进行参数化。是否可以从测试模块访问fixture的params属性?

最佳答案

这实际上在 py.test 中通过 indirect parametrization 原生支持.

在你的情况下,你会:

@pytest.fixture
def tester(request):
"""Create tester object"""
return MyTester(request.param)


class TestIt:
@pytest.mark.parametrize('tester', [['var1', 'var2']], indirect=True)
def test_tc1(self, tester):
tester.dothis()
assert 1

关于python - 将参数传递给 fixture 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18011902/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com