这是一个很好的问题,看起来你已经从几个不同的角度来解决这个问题了。我自己不是专家,但我可以考虑用几种不同的方式在 pytest 中做这样的事情。它们都涉及将繁重的工作交给固定装置。因此,这里简要介绍了一种调整您已经共享的代码以使用某些固定装置的方法:
默认参数
看起来您有一些不是特定于主机的参数。将它们拉入会话范围的固定装置可能是有意义的,这样您就可以在许多主机上重用相同的值:
@pytest.fixture(scope="session")
def default_params():
with open("tests/microservices_default_params.yml", "r") as f:
try:
return yaml.safe_load(f)
except yaml.YAMLError as exc:
print(exc)
这样,您可以将default_params
作为参数添加到任何需要这些值的测试函数。
主机特定参数
您当然可以像以前一样加载这些参数,或者在测试本身中放置一些查找逻辑。这可能是最好和最清晰的方法!另一种选择是有一个参数化的夹具,其值因实例而异:
@pytest.fixture(scope="function", params=testinfra_hosts)
def instance_params(request):
with open(f"tests/{request.param}/params/{request.param}_params.yml", "r") as f:
try:
return request.param, yaml.safe_load(f)
except yaml.YAMLError as exc:
print(exc)
现在,如果我们将instance_params
作为参数添加到测试函数中,它将为 中的每个条目运行一次测试testinfra_hosts
。夹具每次都会根据活动主机返回一个新值。
编写测试
如果我们将繁重的工作交给固定装置,实际测试会变得更简单:
def test_files(default_params, instance_params):
hostname, params = instance_params
merged_files = default_params["files"] + params["files"]
print(f"""
Host: {hostname}
Files: {merged_files}
""")
(我什至没有在这里断言任何东西,只是玩弄固定装置以确保他们正在做我认为他们正在做的事情)
试一试
我使用以下示例 yaml 文件在本地进行了尝试:
测试/microservices_default_params.yml
files:
- common_file1.txt
- common_file2.txt
测试/server1/params/server1_params.yml
files:
- server1_file.txt
测试/server2/params/server2_params.yml
files:
- server2_file.txt
测试/server3/params/server3_params.yml
files:
- server3_file.txt
- server3_file2.txt
运行测试文件会产生:
test_infra.py::test_files[server1]
Host: server1
Files: ['common_file1.txt', 'common_file2.txt', 'server1_file.txt']
PASSED
test_infra.py::test_files[server2]
Host: server2
Files: ['common_file1.txt', 'common_file2.txt', 'server2_file.txt']
PASSED
test_infra.py::test_files[server3]
Host: server3
Files: ['common_file1.txt', 'common_file2.txt', 'server3_file.txt', 'server3_file2.txt']
PASSED
这似乎至少是您所追求的总体方向。我希望其中一些有用 - 祝你好运,测试愉快!
更新
下面的评论询问如何打破这一点,以便列表中的每个文件生成自己的测试。我不确定最好的方法,但有几个选择可能是:
- 构建服务器/文件名对的平面列表并将其输入
@pytest.mark.parametrize
- 用于
pytest_generate_tests
设置动态参数化,类似于此处描述的内容。
无论哪种情况,您都可以从以下内容开始:
import pytest
import yaml
testinfra_hosts = ["server1", "server2", "server3"]
def get_default_params():
with open("tests/microservices_default_params.yml", "r") as f:
try:
return yaml.safe_load(f)
except yaml.YAMLError as exc:
print(exc)
def get_instance_params(instance):
with open(f"tests/{instance}/params/{instance}_params.yml", "r") as f:
try:
return yaml.safe_load(f)
except yaml.YAMLError as exc:
print(exc)
要使用@pytest.mark.parametrize
,您可以跟进:
def get_instance_files(instances):
default_files = get_default_params()["files"]
for instance in instances:
instance_files = default_files + get_instance_params(instance)["files"]
for filename in instance_files:
yield (instance, filename)
@pytest.mark.parametrize("instance_file", get_instance_files(testinfra_hosts))
def test_files(instance_file):
hostname, filename = instance_file
print(
f"""
Host: {hostname}
Files: {filename}
"""
)
或者采取这种pytest_generate_tests
方法,你可以这样做:
def pytest_generate_tests(metafunc):
if "instance_file" in metafunc.fixturenames:
default_files = get_default_params()["files"]
params = [
(host, filename)
for host in testinfra_hosts
for filename in (
default_files + get_instance_params(host)["files"]
)
]
metafunc.parametrize(
"instance_file", params, ids=["_".join(param) for param in params]
)
def test_files(instance_file):
hostname, filename = instance_file
print(
f"""
Host: {hostname}
Files: {filename}
"""
)
无论哪种方式都可行,我怀疑更有经验的人可能会将pytest_generate_tests
版本打包到一个类中并稍微清理一下逻辑。不过,我们必须从某个地方开始,嗯?