【发布时间】:2018-04-10 09:09:50
【问题描述】:
我使用 pytest 已经有一段时间了,并且学会了喜欢参数化和固定装置。第一次,我想测试一些具有分支继承结构的类。自然,我想为子类重用测试用例。假设我有以下包结构:
mock
├── pkg
│ ├── child.py
│ ├── grandchild.py
│ └── parent.py
└── tests
├── test_child.py
├── test_grandchild.py
└── test_parent.py
正如this SO question 中所述,我可以使用夹具来提供正在测试的类的实例。但是,当我从另一个测试模块中的一个测试模块导入一个测试类时,它 (a) 感觉它不是 pytest 方式,并且 (b) pytest 将运行导入类的所有测试方法,并作为继承测试类的一部分再次运行它们.例如,文件test_child.py 包含以下内容:
from test_parent import TestParent
class TestChild(TestParent):
def test_foo(self):
pass
def test_bar(self):
pass
这会导致 pytest 运行 TestParent 中的测试方法一次(由于被导入到模块中)加上另一次作为 TestChild 的一部分(由于其方法被继承)。
所以我看到了两种方法:(1)不继承基测试类,而只是创建一个夹具,以便当前实例同时用于TestParent 和TestChild,本质上是:
import pytest
from pkg.child import Child
from test_parent import TestParent
@pytest.fixture(scope="class")
def instance():
return Child()
class TestChild(object):
def test_foo(self, instance):
pass
def test_bar(self, instance):
pass
(2) 我看到的另一种方法是不导入任何测试类,而只是在test_parent.py 中创建一个参数化夹具,它将所有相关类的实例插入到这些测试方法中。比如:
import pytest
from pkg.parent import Parent
from pkg.child import Child
from pkg.grandchild import GrandChild
@pytest.fixture(scope="class", params=[Parent, Child, GrandChild])
def instance(request):
return request.param()
class TestParent(object):
def test_base(self, instance):
pass
考虑一下,我更喜欢选项 (2),因为它避免了导入,我什至可以完全跳过测试类。不过,有没有更好的方法?
【问题讨论】:
标签: python inheritance pytest