是否可以为参数化生成输入?

时间:2018-06-12 17:22:15

标签: python pytest

我有一组相当大的参数来运行几个测试用例。 如果可能的话,我更喜欢在其他地方而不是在参数化语句中使用该组,然后填充参数化。这种方式参数化几个测试用例没有重复的大块测试用例参数。

如果不可能,还有另一种“共享”参数化的方法吗?为避免重复修饰受影响的测试用例?

import pytest

# this data structure has about 20 of these
@pytest.mark.parametrize("a, b, c" [('hello' [(1,1), ('abc','abc')],[(1, 2)]....)
def test_case_a(a, b, c):

# the same data and arguments as test_case_a
@pytest.mark.parametrize("a, b, c" [('hello' [(1,1), ('abc','abc')],[(1, 2)]....)
def test_case_b(a, b, c):

1 个答案:

答案 0 :(得分:2)

只需将共享的参数放在全局变量中即可:

test.py

import pytest

SHARED_PARAMS = "a, b, c", [['hello', [(1, 1), ('abc', 'abc')], [(1, 2)]]]

@pytest.mark.parametrize(*SHARED_PARAMS)
def test_case_a(a, b, c):
    pass

@pytest.mark.parametrize(*SHARED_PARAMS)
def test_case_b(a, b, c):
    pass

执行结果:

$ pytest -v
=========================== test session starts =========================
platform linux -- Python 3.7.0, pytest-3.6.2, py-1.5.4, pluggy-0.6.0 
-- /home/user/.virtualenvs/test3.7/bin/python3.7
cachedir: .pytest_cache
rootdir: /home/user/projects/so, inifile:
collected 2 items

so/test_api.py::test_case_a[hello-b0-c0] PASSED
so/test_api.py::test_case_b[hello-b0-c0] PASSED

======================== 2 passed in 0.01 seconds =======================