python – 如何参数化测试,从参数化夹具中获取参数?

前端之家收集整理的这篇文章主要介绍了python – 如何参数化测试,从参数化夹具中获取参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我提前道歉重复1000次单词参数.我的用例如下.

我正在使用pytest来测试解析器,该解析器从在线商店中解析产品页面中的字段.

我已经参数化了一个夹具,因此每个夹具都会导入一个产品的数据.根据数据,我的意思是HTML代码和带有预期值的字段列表.在线下我有一个参数化测试,它接受一个元组列表(字段,期望值),以便每个字段都有自己的测试.

基本上,“裸骨”问题会像这样:

from pytest import fixture,mark

products = [
    {
    'text': 'bla bla','fields': [('bla',0),('foo',-1)]
    },{
    'text': 'foo bar',-1),('bar',4)]
    }
]

@fixture(params=products)
def product(request):
    return request.param


@mark.parametrize('field_key,field_value',product['fields'])
def test_parser(product,field_key,field_value):
    assert product['text'].find(field_key) == field_value

在@ mark.parametrize装饰器的上下文中,产品不会被解释为fixture,因此pytest返回:

TypeError: 'function' object has no attribute '__getitem__'

pytest正在进行大量的内省魔术,我无法找到解决方案.我看了this question,但这不是我想要的.有没有办法实现这个目标?谢谢.

最佳答案
我认为你不需要固定装置来实现你的目标.

根据您的示例数据,这是一种可能的方式:

from pytest import mark


products = [
    {
        'text': 'bla bla',{
        'text': 'foo bar',4)]
    }
]

possible_params = []
for product in products:  # Iterate over the products to build all desired invocations
    for field_key,field_value in product['fields']:
        possible_params.append((product['text'],field_value))

@mark.parametrize('text,possible_params)
def test_parser(text,field_value):
    assert text.find(field_key) == field_value
原文链接:https://www.f2er.com/python/438553.html

猜你在找的Python相关文章