我正在尝试编写测试以通过有效和无效的代理详细信息。我已经编写了一个Pytest固定装置,它将请求并返回响应。但是我的问题是我想在测试期间发送无效和有效的代理详细信息。有人可以纠正我这种方法是否正确,还是可以通过有效的方法建议我,我是Pytests的新手。我尝试了以下方法。
@pytest.fixture(scope="module")
@pytest.mark.parametrize("proxyDict",[
({
"http": "web-proxy.testsite:8080",
"https": "web-proxy.testsite:8080"
}),
({
"http": "web-wrong:8080",
"https": "web-.wrong:8080"
})
])
def cve_response(proxy_dict):
year="2018"
base_url = 'https://static.nvd.nist.gov/feeds/json/cve/1.0/nvdcve-1.0-' + str(year) + '.json.zip'
headers = {
"content-type": "application/json"
}
response_data = requests.request("GET", base_url, headers=headers, verify=False, stream=True,
proxies=proxy_dict)
yield response_data
@pytest.mark.proxy
def test_valid_proxy(cve_response):
assert 200 == cve_response.status_code
@pytest.mark.invalidproxy
def test_invalid_proxy(cve_response):
assert not 200 == cve_response.status_code
答案 0 :(得分:0)
您需要参数化测试用例而不是夹具。另外,这不是使用固定装置的用例。因此,这里是您应该如何处理的方法:
data = [{
"http": "web-proxy.testsite:8080",
"https": "web-proxy.testsite:8080"
},
{
"http": "web-wrong:8080",
"https": "web-.wrong:8080"
}]
def cve_response(proxy_dict):
year="2018"
base_url = 'https://static.nvd.nist.gov/feeds/json/cve/1.0/nvdcve-1.0-' + str(year) + '.json.zip'
headers = {
"content-type": "application/json"
}
response_data = requests.request("GET", base_url, headers=headers, verify=False, stream=True,
proxies=proxy_dict)
return response_data
@pytest.mark.proxy
@pytest.mark.parameterize("proxy", data)
def test_valid_proxy(proxy):
assert 200 == cve_response(proxy).status_code
@pytest.mark.invalidproxy
@pytest.mark.parameterize("proxy", data)
def test_invalid_proxy(proxy):
assert not 200 == cve_response(proxy).status_code
您可以根据需要为正面和负面场景选择不同的数据。