前言
有的测试用例,需要依赖于某些特定的case才可以执行,比如登录获取到token,后面的请求都需要带着,为了确保在同一用户,必须带着和登录时获取的cookies。
大部分的用例都会先登录,就需要把登录单独抽出来写个函数,其他用例全部调用这个登录函数就行,但是登录的账号不能写死。
一、函数传参
单独写个登录函数,传2个参数user和password,写用例的时候调用登录函数,输入几组user、password参数化。需要用到装饰器$pytest.mark.parametrize,里面写两个参数
第1个参数是字符串,多个参数中间用逗号隔开
第2个参数是list,多组数组用元组类型
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import pytest
def login(user, password):
'''登录函数'''
print ( '用户名:%s' % user)
print ( '密码:%s' % password)
return 'hello'
login_data = [( 'admin' , '123456' ), ( 'admin' ,'')]
# 装饰器
@pytest .mark.parametrize( 'user, password' , login_data)
def test_login(user, password):
'''登录测试用例'''
result = login(user, password)
assert result = = 'hello'
if __name__ = = '__main__' :
pytest.main( '-s' , 'day0110_fixture.py' )
'''
运行结果
============================= test session starts =============================
platform win32 -- Python 3.6.6, pytest-4.5.0, py-1.8.0, pluggy-0.13.1
rootdir: F:\python work\youyou_class\study_pytestcollected 2 items
day0110_fixture.py .用户名:admin
密码:123456
.用户名:admin
密码:
[100%]
========================== 2 passed in 0.02 seconds ===========================
'''
|
request参数
request就是我需要什么东西,用来接受参数,用到@pytest.fixture装饰器,传参就用默认的request参数,user = request.param 这一步是接收传入的参数。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import pytest
# 测试账号数据
test_data = [ "admin1" , "admin2" ]
@pytest .fixture(scope = "function" )
def login(request):
user = request.param
print ( "登录账户:%s" % user)
return user
@pytest .mark.parametrize( "login" , test_data, indirect = True )
def test_login(login):
"""登录用例"""
a = login
print ( "测试用例中login的返回值:%s" % a)
assert a ! = ""
|
indirect=True 参数是为了把login当作一个函数去执行,而不是一个参数
request传两个参数
如果用到@pytest.fixture,里面用2个参数情况,可以把多个参数用一个字典去存储,这样最终还是只传一个参数。
不同的参数再从字典里面取对应key值就行,如: user = request.param[“user”]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#_*_coding:utf-8_*_
# 作者 :Administrator
# 创建时间 :2020/1/1018:18
# 文件 :day0110_fixture.py
import pytest
@pytest .fixture(scope = 'function' )
def login(request):
'''登录函数'''
user = request.param[ 'user' ]
password = request.param[ 'password' ]
print ( '用户名:%s' % user)
print ( '密码:%s' % password)
return 'hello'
login_data = [{ 'user' : 'admin' , 'password' : '123456' }, { 'user' : 'admin' , 'password' : '1' }]
# 装饰器
@pytest .mark.parametrize( 'login' , login_data, indirect = True )
def test_login(login):
'''登录测试用例'''
result = login
assert result = = 'hello'
if __name__ = = '__main__' :
pytest.main( '-s' , 'day0110_fixture.py' )
'''
运行结果:
============================= test session starts =============================
platform win32 -- Python 3.6.6, pytest-4.5.0, py-1.8.0, pluggy-0.13.1
rootdir: F:\python work\youyou_class\study_pytestcollected 2 items
day0110_fixture.py 用户名:admin
密码:123456
.用户名:admin
密码:1
. [100%]
========================== 2 passed in 0.02 seconds ===========================
'''
|
到此这篇关于pytest接口测试之fixture传参数request的使用的文章就介绍到这了,更多相关pytest fixture传参数request内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_42098424/article/details/103874175