文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

pytest如何实现测试用例参数化

2023-06-14 13:55

关注

小编给大家分享一下pytest如何实现测试用例参数化,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

说明

软件测试中,输入相应值,检查期望值,是常见测试方法。
在自动化测试中,一个测试用例对应一个测试点,通常一组测试数据无法完全覆盖测试范围,所以,需要参数化来传递多组数据。

pytest的测试用例参数化使用如下装饰器即可完成。

@pytest.mark.parametrize(argnames, argvalues)# 参数:# argnames:以逗号分隔的字符串# argvaluse: 参数值列表,若有多个参数,一组参数以元组形式存在,包含多组参数的所有参数# 以元组列表形式存在

示例:

参数化之一个参数。

# ./test_case/test_func.pyimport pytest@pytest.mark.parametrize("arg_1", [4399, 2012])def test_add_by_func_aaa(arg_1): print(arg_1) # ./run_test.pyimport pytestif __name__ == '__main__': pytest.main(['-v','-s']) '''============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- D:\Python3.7\python.execachedir: .pytest_cacherootdir: D:\Python3.7\project\pytest, inifile: pytest.iniplugins: allure-pytest-2.8.9, rerunfailures-8.0collecting ... collected 2 itemstest_case/test_func.py::test_add_by_func_aaa[4399] 4399PASSEDtest_case/test_func.py::test_add_by_func_aaa[2012] 2012PASSED============================== 2 passed in 0.04s ==============================[Finished in 1.3s]'''

参数化之多个参数。

# ./test_case/test_func.pyimport pytest  @pytest.mark.parametrize("arg_1, arg_2", [(4399, 'AAAA'), (2012, 'BBBB')])def test_add_by_func_aaa(arg_1,arg_2): print("arg_1:{}  arg_2:{}".format(arg_1, arg_2))# ./run_test.pyimport pytestif __name__ == '__main__': pytest.main(['-v','-s']) '''============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- D:\Python3.7\python.execachedir: .pytest_cacherootdir: D:\Python3.7\project\pytest, inifile: pytest.iniplugins: allure-pytest-2.8.9, rerunfailures-8.0collecting ... collected 2 itemstest_case/test_func.py::test_add_by_func_aaa[4399-AAAA] arg_1:4399  arg_2:AAAAPASSEDtest_case/test_func.py::test_add_by_func_aaa[2012-BBBB] arg_1:2012  arg_2:BBBBPASSED============================== 2 passed in 0.05s ==============================[Finished in 1.3s]'''

以上第2个示例,展现的是一个测试用例有两个参数,然后参数化了两组数据。

但在实际测试中,有的场景,比如多条件查询,比如有2个查询条件,每个条件有3个选项,如果要全部覆盖,则是3*3==9种情况。这种情景,人工测试一般是不会全部覆盖的,但在自动化测试中,只要你想,就可以做到。如下示例:

如下格式参数化,其测试结果为所有参数选项数量的乘积。

# ./test_case/test_func.pyimport pytestfrom func import *'''class TestFunc: # 正常测试用例 def test_add_by_class(self):  assert add(2,3) == 5 def test_add_by_class_11(self):  assert add(2,3) == 5'''  @pytest.mark.parametrize("arg_1", [4399,  2012, 1997])@pytest.mark.parametrize("arg_2", ['AAAA', 'BBBB', 'CCCC'])def test_add_by_func_aaa(arg_1,arg_2): print("arg_1:{}  arg_2:{}".format(arg_1, arg_2)) # ./run_test.pyimport pytestif __name__ == '__main__': pytest.main(['-v','-s'])   '''============================= test session starts =============================platform win32 -- Python 3.7.0, pytest-5.3.4, py-1.8.1, pluggy-0.13.1 -- D:\Python3.7\python.execachedir: .pytest_cacherootdir: D:\Python3.7\project\pytest, inifile: pytest.iniplugins: allure-pytest-2.8.9, rerunfailures-8.0collecting ... collected 9 itemstest_case/test_func.py::test_add_by_func_aaa[AAAA-4399] arg_1:4399  arg_2:AAAAPASSEDtest_case/test_func.py::test_add_by_func_aaa[AAAA-2012] arg_1:2012  arg_2:AAAAPASSEDtest_case/test_func.py::test_add_by_func_aaa[AAAA-1997] arg_1:1997  arg_2:AAAAPASSEDtest_case/test_func.py::test_add_by_func_aaa[BBBB-4399] arg_1:4399  arg_2:BBBBPASSEDtest_case/test_func.py::test_add_by_func_aaa[BBBB-2012] arg_1:2012  arg_2:BBBBPASSEDtest_case/test_func.py::test_add_by_func_aaa[BBBB-1997] arg_1:1997  arg_2:BBBBPASSEDtest_case/test_func.py::test_add_by_func_aaa[CCCC-4399] arg_1:4399  arg_2:CCCCPASSEDtest_case/test_func.py::test_add_by_func_aaa[CCCC-2012] arg_1:2012  arg_2:CCCCPASSEDtest_case/test_func.py::test_add_by_func_aaa[CCCC-1997] arg_1:1997  arg_2:CCCCPASSED============================== 9 passed in 0.06s ==============================[Finished in 1.4s]'''

以上是“pytest如何实现测试用例参数化”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯