简体   繁体   English

在模块中的测试文件之间传递py.test fixture

[英]passing a py.test fixture between test files in a module

I have a common py.test fixture that I want to use generically in different test files within the same module. 我有一个常见的py.test fixture,我想在同一个模块中的不同测试文件中使用。 After reading the py.test documentation, the suggestion was to add the fixture to a conftest.py file which should make the fixture available to all files in the module. 在阅读py.test文档后,建议将夹具添加到conftest.py文件中,该文件应该使夹具可用于模块中的所有文件。 But for some reason, I can't seem to get this common fixture to work with my test class. 但由于某些原因,我似乎无法使用这个常用夹具来使用我的测试类。

#In conftest.py

import pytest

@pytest.fixture
def mock_data(scope="module"):
    return ({'number_of_females_1': 14,
             'number_of_females_2': 3,
             'number_of_females_3': 19,
             'number_of_males_1': 37)} 

Then in my test class file I have 然后在我的测试类文件中

Import pytest
from unittest import TestCase    

@pytest.mark.usefixtures('mgmt_data')
class Test_param_sweeps(TestCase):

    def test_Base_model(self, mgmt_data):
        from pyugend.pyugend.Models import Base_model
        t = Base_model(**mgmt_data)
        assert isinstance(t, Base_model)

The documentation said that I did not have to import the mgmt_data fixture or anything. 文档说我没有必要导入mgmt_data fixture或任何东西。

The error I get when running this test case is: 运行此测试用例时出现的错误是:

self = <pyugend.tests.test_param_sweeps.Test_param_sweeps testMethod=test_Base_model>
result = <TestCaseFunction 'test_Base_model'>

    def run(self, result=None):
        orig_result = result
        if result is None:
            result = self.defaultTestResult()
            startTestRun = getattr(result, 'startTestRun', None)
            if startTestRun is not None:
                startTestRun()

        result.startTest(self)

        testMethod = getattr(self, self._testMethodName)
        if (getattr(self.__class__, "__unittest_skip__", False) or
            getattr(testMethod, "__unittest_skip__", False)):
            # If the class or method was skipped.
            try:
                skip_why = (getattr(self.__class__, '__unittest_skip_why__', '')
                            or getattr(testMethod, '__unittest_skip_why__', ''))
                self._addSkip(result, self, skip_why)
            finally:
                result.stopTest(self)
            return
        expecting_failure_method = getattr(testMethod,
                                           "__unittest_expecting_failure__", False)
        expecting_failure_class = getattr(self,
                                          "__unittest_expecting_failure__", False)
        expecting_failure = expecting_failure_class or expecting_failure_method
        outcome = _Outcome(result)
        try:
            self._outcome = outcome

            with outcome.testPartExecutor(self):
                self.setUp()
            if outcome.success:
                outcome.expecting_failure = expecting_failure
                with outcome.testPartExecutor(self, isTest=True):
>                   testMethod()
E                   TypeError: test_Base_model() missing 1 required positional argument: 'mgmt_data'

/home/krishnab/anaconda3/envs/py35_gu/lib/python3.5/unittest/case.py:600: TypeError

I am not sure that the error is? 我不确定错误是什么? It says that I am missing a positional argument, but mgmt_data() does not take any arguments and the Base_model() class takes only one argument which is the **mgmt_data . 它说我缺少位置参数,但mgmt_data()不接受任何参数,而Base_model()类只接受一个参数,即**mgmt_data

I figured out the answer. 我想出了答案。 The issue was that I was using a Unittest type class instead of a py.test type class. 问题是我使用的是Unittest类型而不是py.test类型类。 Technically both can work with py.test but only py.test type classes can access fixtures. 从技术上讲,两者都可以使用py.test但只有py.test类型类可以访问fixture。

So I just changed: 所以我改变了:

from unittest import TestCase    

@pytest.mark.usefixtures('mgmt_data')
class Test_param_sweeps(TestCase):

in the OP, to the following: 在OP中,以下内容:

import pytest

@pytest.mark.usefixtures('mgmt_data')
class Test_param_sweeps:

    def test_Base_model(self, mgmt_data):
        from pyugend.pyugend.Models import Base_model
        t = Base_model(**mgmt_data)
        assert isinstance(t, Base_model)

Problem solved. 问题解决了。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM