py.test 每个夹具多次测试
py.test multiple tests per fixture
我有以下内容。
@pytest.fixture
def patch_socket(monkeypatch):
def gethostname():
return 'web01-east.domain.com'
monkeypatch.setattr(socket, 'gethostname', gethostname)
def test__get_pod(patch_socket):
assert __get_pod() == 'east'
如果我想测试以下主机名,正确的方法是什么
- web01-east.domain.com
- redis01-master-east.domain.com
- web01.domain.com
我应该为每一个都有一个新的夹具,还是有办法在测试本身中传递主机名?
使用此代码
@pytest.fixture(params=['web01-east.domain.com', 'redis01-master-east.domain.com', 'web01.domain.com'])
def patch_socket(request, monkeypatch):
def gethostname():
return request.param
monkeypatch.setattr(socket, 'gethostname', gethostname)
def test__get_pod(patch_socket):
assert __get_pod() == 'east'
这将即时创建 3 个测试。如果你 运行 和 -vv
你会看到这样的东西:
<FILE>::test__get_pod[web01-east.domain.comm PASSED
<FILE>::test__get_pod[redis01-master-east.domain.com] PASSED
<FILE>::test__get_pod[web01.domain.com PASSED
我有以下内容。
@pytest.fixture
def patch_socket(monkeypatch):
def gethostname():
return 'web01-east.domain.com'
monkeypatch.setattr(socket, 'gethostname', gethostname)
def test__get_pod(patch_socket):
assert __get_pod() == 'east'
如果我想测试以下主机名,正确的方法是什么
- web01-east.domain.com
- redis01-master-east.domain.com
- web01.domain.com
我应该为每一个都有一个新的夹具,还是有办法在测试本身中传递主机名?
使用此代码
@pytest.fixture(params=['web01-east.domain.com', 'redis01-master-east.domain.com', 'web01.domain.com'])
def patch_socket(request, monkeypatch):
def gethostname():
return request.param
monkeypatch.setattr(socket, 'gethostname', gethostname)
def test__get_pod(patch_socket):
assert __get_pod() == 'east'
这将即时创建 3 个测试。如果你 运行 和 -vv
你会看到这样的东西:
<FILE>::test__get_pod[web01-east.domain.comm PASSED
<FILE>::test__get_pod[redis01-master-east.domain.com] PASSED
<FILE>::test__get_pod[web01.domain.com PASSED