1.pytest框架需要遵循的规则
(1).py 测试文件必须以test 开头(或者以 test结尾)
(2)测试类必须以Test开头,并且不能有 init 方法
(3)测试方法必须以test 开头
(4)断言必须使用 assert
2.pytest数据驱动
在pytest中,数据驱动测试通常使用pytest.mark.parametrize
标记实现。这个标记允许你向测试函数提供多组输入参数和预期结果,从而实现对一组数据进行测试的目的。
以下是一个简单的例子:
python
import pytest
@pytest.mark.parametrize("test_input,expected", [("3+5", 8), ("2+4", 6), ("6*9", 54)])
def test_eval(test_input, expected):
assert eval(test_input) == expected
这个测试test_eval
有两个参数test_input
和expected
,使用 pytest.mark.parametrize
标记,我们给这两个参数提供了三组值。test_input
是要被 eval
函数执行的表达式,expected
是预期的计算结果。这样,这个测试实际上会运行三次,每次运行都使用一组不同的参数。
eval()
是Python的一个内置函数,它可以将一个字符串当作Python代码来执行,并返回执行结果。这意味着你可以用它来动态地运行你创建的或者用户输入的Python代码。
例如,你可以像这样使用eval()
:
python
result = eval("3 + 4")
print(result) # 输出:7
运行上述测试,Pytest会对每一组参数执行一次测试函数,这样就能够很方便地进行数据驱动的测试。
3.登录接口
新建test_login模块(test_case包中创建)
test_login.py代码
python
# -*- coding: utf-8 -*-
# @File : test_login.py
# @Time : 2024/3/7 12:51
# @Author : syq
# @Email : 1721169065@qq.com
# @Software: PyCharm
import pytest
from lib.apiLib.login import Login
from tools.excelControl import get_data_excel
class Test_Login:
@pytest.mark.parametrize("respData,resExcept",get_data_excel('../data/外卖系统接口测试用例-V1.5.xls','登录模块','Login'))
def test_login(self,respData,resExcept):
login=Login()
resReal=login.login(respData)
assert resReal['code']==resExcept['code']
if __name__ == '__main__':
pytest.main(['test_login.py','-s'])
结果:
4.商铺接口
新建test_shop模块(test_case包中创建)
代码如下:
python
# -*- coding: utf-8 -*-
# @File : test_shop.py
# @Time : 2024/3/9 20:19
# @Author : syq
# @Email : 1721169065@qq.com
# @Software: PyCharm
import pytest
from tools.excelControl import get_data_excel
from lib.apiLib.shop import Shop
from lib.apiLib.login import Login
class Test_Shop:
#获取token,token值只需要获取一次
def setup_class(self):
self.token=Login().login({"username":"ct0909","password":"89254"},getToken=True)
self.shop=Shop(self.token)
@pytest.mark.parametrize("respData,resReq",get_data_excel('../data/外卖系统接口测试用例-V1.5.xls','我的商铺','listshopping'))
def test_shop_list(self,respData,resReq):
resReal=self.shop.shop_list(respData)
if "code" in resReal:
assert resReal['code']==resReq['code']
else:
assert resReal['error']==resReq['error']
#更新商铺
@pytest.mark.parametrize("respData,resReq",get_data_excel('../data/外卖系统接口测试用例-V1.5.xls','我的商铺','updateshopping'))
def test_shop_update(self,respData,resReq):
shopId=self.shop.shop_list({"page":1,"limit":1})['data']['records'][0]['id']
image_path=self.shop.file_update('温州修改.png','../data/温州修改.png','image.png')
resReal=self.shop.shop_update(respData,shopId,image_path)
assert resReal['code']==resReq['code']
if __name__ == '__main__':
pytest.main(['test_shop.py','-s'])
结果: