文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python测试框架pytest怎么使用

2023-06-29 08:51

关注

这篇文章主要介绍了Python测试框架pytest怎么使用的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python测试框架pytest怎么使用文章都会有所收获,下面我们一起来看看吧。

一、Pytest简介

Pytest is a mature full-featured Python testing tool that helps you write better programs.The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries.

通过官方网站介绍我们可以了解到,Pytest是一个非常成熟的全功能的python测试框架,主要有以下几个特点:

二、Pytest安装

1.直接使用pip命令安装:

pip install -U pytest    # -U是如果已安装会自动升级最新版本

2.验证安装结果:

pytest --version    # 展示当前安装版本C:\Users\edison>pytest --versionpytest 6.2.5

3.在pytest测试框架中,要遵循以下约束:

测试文件名要符合test_.py或_test.py格式(例如test_min.py)

测试类要以Test开头,且不能带有init方法

在单个测试类中,可以包含一个或多个test_开头的函数

三、Pytest测试执行

pytest进行测试比较简单,我们来看一个实例:

import pytest    # 导入pytest包def test_001():    # 函数以test_开头    print("test_01")def test_002():    print("test_02")if __name__ == '__main__':    pytest.main(["-v","test_1214.py"])    # 调用pytest的main函数执行测试

这里我们定义了两个测试函数,直接打印出结果,下面执行测试:

============================= test session starts =============================platform win32 -- Python 3.8.0, pytest-6.2.5, py-1.11.0, pluggy-1.0.0 -- D:\Code\venv\Scripts\python.execachedir: .pytest_cacherootdir: D:\Codecollecting ... collected 2 itemstest_1214.py::test_001 PASSED                                            [ 50%]test_1214.py::test_002 PASSED                                            [100%]============================== 2 passed in 0.11s ==============================Process finished with exit code 0

输出结果中显示执行了多少条案例、对应的测试模块、通过条数以及执行耗时。

四、测试类主函数

pytest.main(["-v","test_1214.py"])

通过python代码执行pytest.main():

直接执行pytest.main() 【自动查找当前目录下,以test_开头的文件或者以_test结尾的py文件】;

设置pytest的执行参数 pytest.main([’–html=./report.html’,‘test_login.py’])【执行test_login.py文件,并生成html格式的报告】。

main()括号内可传入执行参数和插件参数,通过[]进行分割,[]内的多个参数通过‘逗号,’进行分割:

运行目录及子包下的所有用例 pytest.main([‘目录名’])

运行指定模块所有用例 pytest.main([‘test_reg.py’])

运行指定模块指定类指定用例pytest.main([‘test_reg.py::TestClass::test_method’]) 冒号分割

–resultlog=./log.txt 生成log

–junitxml=./log.xml 生成xml报告

五、断言方法

pytest断言主要使用Python原生断言方法,主要有以下几种:

import pytest    # 导入pytest包def add(x,y):    # 定义以test_开头函数    return x + ydef test_add():    assert add(1,2) == 3    # 断言成功str1 = "Python,Java,Ruby"def test_in():    assert "PHP" in str1    # 断言失败if __name__ == '__main__':    pytest.main(["-v","test_pytest.py"])    # 调用main函数执行测试
============================= test session starts =============================platform win32 -- Python 3.8.0, pytest-6.2.5, py-1.11.0, pluggy-1.0.0 -- D:\Code\venv\Scripts\python.execachedir: .pytest_cacherootdir: D:\Codecollecting ... collected 2 itemstest_pytest.py::test_add PASSED                                          [ 50%]test_pytest.py::test_in FAILED                                           [100%]================================== FAILURES ===================================___________________________________ test_in ___________________________________    def test_in():>       assert "PHP" in str1E       AssertionError: assert 'PHP' in 'Python,Java,Ruby'test_pytest.py:11: AssertionError=========================== short test summary info ===========================FAILED test_pytest.py::test_in - AssertionError: assert 'PHP' in 'Python,Java...========================= 1 failed, 1 passed in 0.18s =========================Process finished with exit code 0

可以看到运行结果中明确指出了错误原因是“AssertionError”,因为PHP不在str1中。

六、常用命令详解

1.运行指定案例:

if __name__ == '__main__':    pytest.main(["-v","-s","test_1214.py"])

2.运行当前文件夹包括子文件夹所有用例:

if __name__ == '__main__':    pytest.main(["-v","-s","./"])

3.运行指定文件夹(code目录下所有用例):

if __name__ == '__main__':    pytest.main(["-v","-s","code/"])

4.运行模块中指定用例(运行模块中test_add用例):

if __name__ == '__main__':    pytest.main(["-v","-s","test_pytest.py::test_add"])

5.执行失败的最大次数

使用表达式"–maxfail=num"来实现(注意:表达式中间不能存在空格),表示用例失败总数等于num 时停止运行。

Python测试框架pytest怎么使用

Python测试框架pytest怎么使用

6.错误信息在一行展示。

在实际项目中如果有很多用例执行失败,查看报错信息将会很麻烦。使用"–tb=line"命令,可以很好解决这个问题。

Python测试框架pytest怎么使用

七、接口调用

本地写一个查询用户信息的接口,通过pytest来调用,并进行接口断言。

 # -*- coding: utf-8 -*- import pytest import requests  def test_agent():     r = requests.post(         url="http://127.0.0.1:9000/get_user",         data={             "name": "吴磊",            "sex": 1        },        headers={"Content-Type": "application/json"}    )    print(r.text)    assert r.json()['data']['retCode'] == "00" and r.json()['data']['retMsg'] == "调用成功"if __name__ == "__main__":    pytest.main(["-v","test_api.py"])

关于“Python测试框架pytest怎么使用”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Python测试框架pytest怎么使用”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

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

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

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

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

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

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

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