我正在尝试使用参数化,我想给我使用pytest从不同函数获得的测试用例。 我试过这个
test_input = []
rarp_input1 = ""
rarp_output1 = ""
count =1
def test_first_rarp():
global test_input
config = ConfigParser.ConfigParser()
config.read(sys.argv[2])
global rarp_input1
global rarp_output1
rarp_input1 = config.get('rarp', 'rarp_input1')
rarp_input1 =dpkt.ethernet.Ethernet(rarp_input1)
rarp_input2 = config.get('rarp','rarp_input2')
rarp_output1 = config.getint('rarp','rarp_output1')
rarp_output2 = config.get('rarp','rarp_output2')
dict_input = []
dict_input.append(rarp_input1)
dict_output = []
dict_output.append(rarp_output1)
global count
test_input.append((dict_input[0],count,dict_output[0]))
#assert test_input == [something something,someInt]
@pytest.mark.parametrize("test_input1,test_input2,expected1",test_input)
def test_mod_rarp(test_input1,test_input2,expected1):
global test_input
assert mod_rarp(test_input1,test_input2) == expected1
但第二个测试案例正在被跳过。它说
test_mod_rarp1.py::test_mod_rarp [test_input10-test_input20-expected10]
为什么跳过测试用例?我检查过功能和输入都没有错。因为以下代码工作正常
@pytest.mark.parametrize("test_input1,test_input2,expected1,[something something,someInt,someInt])
def test_mod_rarp(test_input1,test_input2,expected1):
assert mod_rarp(test_input1,test_input2) == expected1
我没有把实际输入放在这里。无论如何它是正确的。我也有配置文件,我使用configParser从中获取输入。 test_mod_rarp1.py是我正在执行此操作的python文件名。我基本上想知道我们是否可以从其他函数访问变量(我的例子中的test_input),以便在参数化中使用,如果这会导致问题。如果我们不能如何改变变量的范围?
答案 0 :(得分:0)
参数化在编译时发生,因此,如果您想对在运行时生成的数据进行参数化,则跳过该参数化。
实现你想要做的事情的理想方法是使用夹具参数化。
下面的示例应该为您清楚,然后您可以在您的案例中应用相同的逻辑
import pytest
input = []
def generate_input():
global input
input = [10,20,30]
@pytest.mark.parametrize("a", input)
def test_1(a):
assert a < 25
def generate_input2():
return [10, 20, 30]
@pytest.fixture(params=generate_input2())
def a(request):
return request.param
def test_2(a):
assert a < 25
<强> OP 强>
<SKIPPED:>pytest_suites/test_sample.py::test_1[a0]
********** test_2[10] **********
<EXECUTING:>pytest_suites/test_sample.py::test_2[10]
Collected Tests
TEST::pytest_suites/test_sample.py::test_1[a0]
TEST::pytest_suites/test_sample.py::test_2[10]
TEST::pytest_suites/test_sample.py::test_2[20]
TEST::pytest_suites/test_sample.py::test_2[30]
请参阅test_1
已被跳过,因为参数化在执行generate_input()
之前发生,但test_2
已根据需要进行了参数化