我有一个测试类和一个看起来像这样的设置函数:
@pytest.fixture(autouse=True, scope='function')
def setup(self, request):
self.client = MyClass()
first_patcher = patch('myclass.myclass.function_to_patch')
first_mock = first_patcher.start()
first_mock.return_value = 'foo'
value_to_return = getattr(request, 'value_name', None)
second_patcher = patch('myclass.myclass.function_two')
second_mock = second_patcher.start()
second_mock.return_value = value_to_return
#could clean up my mocks here, but don't care right now
我在pytest的文档中看到,可以对模块级别值进行内省: val = getattr(request.module,' val_name',None)
但是,我希望能够根据我所在的测试指定不同的值来返回。所以我正在寻找一种方法来反省test_function而不是test_module。
http://pytest.org/latest/fixture.html#fixtures-can-introspect-the-requesting-test-context
答案 0 :(得分:5)
您可以使用request.function
进入测试功能。只需按照您引用的b wepage上的链接查看测试request
对象上可用的内容:)