当前位置:   article > 正文

Python Pytest装饰器@pytest.mark.parametrize多样参数化(二)_pytest parameterize传多个参数

pytest parameterize传多个参数

Pytest中装饰器@pytest.mark.parametrize('参数名',list)可以实现测试用例参数化,类似DDT

1、第一个参数是字符串,多个参数中间用逗号隔开

2、第二个参数是list,多组数据用元祖类型;传三个或更多参数也是这样传。list的每个元素都是一个元组,元组里的每个元素和按参数顺序一一对应
3、传一个参数 @pytest.mark.parametrize('参数名',list) 进行参数化
4、传两个参数@pytest.mark.parametrize('参数名1,参数名2',[(参数1_data[0], 参数2_data[0]),(参数1_data[1], 参数2_data[1])]) 进行参数化,当装饰给方法时,这时方法被被执行2次,第1次:参数名1 对应值 参数1_data[0],参数名2 对应值 参数2_data[0]

第2次:参数名1 对应值 参数1_data[1],参数名2 对应值 参数2_data[1],这样就可以用到我们测试用例执行中,根据用例的多少,调用多次,断言多次,不需要用循环去写了。

我们试着尝试list里面嵌套字符串、列表、元祖、字典时是如何处理的,请看下面脚本执行情况

  1. import pytest
  2. class Test(object):
  3. #列表
  4. #====参数为列表====
  5. @pytest.mark.parametrize('a',[1])
  6. def test01(self,a):
  7. print(type(a),a)
  8. @pytest.mark.parametrize('b',[1,2]) #test02被调用2
  9. def test02(self,b):
  10. print(type(b),b)
  11. #列表套元祖
  12. #====参数为列表嵌套元祖====
  13. @pytest.mark.parametrize('c',[(3,4)])
  14. def test03(self,c):
  15. print(type(c),c)
  16. @pytest.mark.parametrize('d,e',[(5,6)])
  17. def test04(self,d,e):
  18. print(type(d),type(e),d,e)
  19. @pytest.mark.parametrize('f',[(7,8),(9,10)])#test05被调用2
  20. def test05(self,f):
  21. print(type(f),f)
  22. @pytest.mark.parametrize('g,h',[(11,12),(13,14)])#test06被调用2
  23. def test06(self,g,h):
  24. print(type(g),type(h),g,h)
  25. #列表套字典
  26. #====参数为列表嵌套字典====
  27. @pytest.mark.parametrize('i',[{15,16}])
  28. def test07(self,i):
  29. print(type(i),i)
  30. @pytest.mark.parametrize('j,k',[{17,18}])
  31. def test08(self,j,k):
  32. print(type(j),type(k),j,k)
  33. @pytest.mark.parametrize('l',[{19,20},{21,22}])#test14被调用2
  34. def test09(self,l):
  35. print(type(l),l)
  36. @pytest.mark.parametrize('m,n',[{23,24},{25,26}])#test14被调用2
  37. def test10(self,m,n):
  38. print(type(m),type(n),m,n)
  39. # 列表套列表
  40. #====参数为列表嵌套列表====
  41. @pytest.mark.parametrize('o',[[27,28]])
  42. def test011(self,o):
  43. print(type(o),o)
  44. @pytest.mark.parametrize('p,q',[[29,30]])
  45. def test12(self,p,q):
  46. print(type(p),type(q),p,q)
  47. @pytest.mark.parametrize('r',[[31,32],[33,34]])#test14被调用2
  48. def test13(self,r):
  49. print(type(r),r)
  50. @pytest.mark.parametrize('s,t',[[35,36],[37,38]])#test14被调用2
  51. def test14(self,s,t):
  52. print(type(s),type(s),s,t)
  53. if __name__=="__main__":
  54. pytest.main(["-s","test02.py"])
  55. "C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test02.py
  56. ============================= test session starts =============================
  57. platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
  58. rootdir: C:\Users\wangli\PycharmProjects\Test\test
  59. plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
  60. collected 21 items
  61. test02.py <class 'int'> 1
  62. .<class 'int'> 1
  63. .<class 'int'> 2
  64. .<class 'tuple'> (3, 4)
  65. .<class 'int'> <class 'int'> 5 6
  66. .<class 'tuple'> (7, 8)
  67. .<class 'tuple'> (9, 10)
  68. .<class 'int'> <class 'int'> 11 12
  69. .<class 'int'> <class 'int'> 13 14
  70. .<class 'set'> {16, 15}
  71. .<class 'int'> <class 'int'> 17 18
  72. .<class 'set'> {19, 20}
  73. .<class 'set'> {21, 22}
  74. .<class 'int'> <class 'int'> 24 23
  75. .<class 'int'> <class 'int'> 25 26
  76. .<class 'list'> [27, 28]
  77. .<class 'int'> <class 'int'> 29 30
  78. .<class 'list'> [31, 32]
  79. .<class 'list'> [33, 34]
  80. .<class 'int'> <class 'int'> 35 36
  81. .<class 'int'> <class 'int'> 37 38
  82. .
  83. ============================= 21 passed in 0.09s ==============================
  84. Process finished with exit code 0

从上面尝试中我们可以看出,装饰器@pytest.mark.parametrize('参数名',list)装饰给方法,list里可以嵌套字符串、列表、字典、元祖,可根据具体情况去使用,当len(list)>1时,方法会被调用多次执行。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/143707
推荐阅读
相关标签
  

闽ICP备14008679号