本文介绍了参数化火试夹具的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
就我从文档中了解到的有关pytest装置参数化的内容而言,它使用给定的参数创建装置的副本,从而使用不同的副本调用需要该装置的每个测试。
我的需求有点不同。假设有一个装置:
@pytest.fixture
def sample_foo():
return Foo(file_path='file/path/test.json')
def test1(sample_foo):
pass
def test2(sample_foo):
pass
问题是测试test1
和test2
需要类Foo
的相同实例,但file_path
所以目前我这样做:
def build_foo(path):
return Foo(file_path=path)
def test1():
sample_foo = build_foo('file/path/some.json')
def test2():
sample_foo = build_foo('file/path/another.json')
这看起来有点代码重复。我可以为每个文件创建单独的装置,但这看起来更糟。看起来每个测试都需要自己唯一的文件,所以也许可以通过查看请求装置的测试函数的名称来确定文件的名称,从而解决这个问题。但这不能保证。
推荐答案
def build_foo(path):
return Foo(file_path=path)
@pytest.fixture(params=["file/path/some.json", "file/path/another.json"])
def file_path(request):
return request.param
def test(file_path):
sample_foo = build_foo(file_path)
也许您可以直接
def test(file_path):
sample_foo = Foo(file_path)
这篇关于参数化火试夹具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!