单元测试之pytest

本文介绍了Pytest的命名规则,强调了test开头的类和方法是测试核心。详细阐述了如何生成HTML测试报告,包括使用`pytest.main`命令的不同用法。还讨论了Pytest的运行方式,如跳过测试用例的标记。此外,文章讲解了如何读取csv和xml文件作为测试数据,并介绍了Allure测试报告框架的集成和常用特性。
摘要由CSDN通过智能技术生成

1:命名规则

Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨

Pytest: setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样) 运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown 运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class

2:Pytest生成自带的html测试报告

首先安装pytest和pytest-html(生成html测试报告)

在控制台使用 pip install pytest 和 pip install pytest-html

案例一

pytest.main("模块.py")【运行指定模块下,运行所有test开头的类和测试用例】

pytest.main(["--html=./report.html","模块.py"])

案例二

运行指定模块指定类指定用例,冒号分割,并生成测试报告

pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001'])

运行指定模块指定类指定用例,冒号分割,并生成测试报告

案例三

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

pytest.main([‘--html=./report.html’])

Pytest调用语句

pytst.main(['-x','--html=./report.html','t12est000.py'])

-x出现一条测试用例失败就退出测试

-s:显示print内容

跳过使用

@pytest.mark.skip()跳过该用例(函数)

@pytest.mark.skip()
def test001(self):
    assert 2==2

3:Pytest的运行方式

. 点号,表示用例通过

F 表示失败 Failure

E 表示用例中存在异常 Error

4.1:读取csv文件

import csv   #导入csv模块
class ReadCsv():
    def read_csv(self):
        item =[]    #定义一个空列表
        c = csv.reader(open("../commonDemo/test1.csv","r"))    #得到csv文件对象
        for csv_i in c:
            item.append(csv_i)      #将获取的数据添加到列表中
        return item

r = ReadCsv()

print(r.read_csv())

4.2:读取xml文件

from xml.dom import minidom
class Readxml():
    def read_xml(self,filename,onename,twoname):
        root =minidom.parse(filename)
        firstnode =root.getElementsByTagName(onename)[0]
        secondnode=firstnode.getElementsByTagName(twoname)[0].firstChild.data
        return secondnode

5:allure

Allure是一款轻量级并且非常灵活的开源测试报告框架。 它支持绝大多数测试框架, 例如TestNG、Pytest、JUint等。它简单易用,易于集成。首先配置allure的环境变量

 

验证allure是否配置成功

 其次要安装allure

pip install allure-pytest

allure-pytest是Pytest的一个插件,通过它我们可以生成Allure所需要的用于生成测试报告的数据

5.1:Allure常用的几个特性

@allure.feature # 用于描述被测试产品需求
@allure.story # 用于描述feature的用户场景,即测试需求
with allure.step(): # 用于描述测试步骤,将会输出到报告中
allure.attach # 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

5.1.1:allure.feature

@allure.feature # 用于描述被测试产品需求

5.1.2:allure.story

5.1.2:allure.story # 用于描述feature的用户场景,即测试需求

 

测试数据

读取测试数据

 

开发代码

 

 

pytest是一种用于Python单元测试框架,它与Python自带的unittest框架相似,但使用起来更简洁高效。根据官方网站的介绍,pytest具有以下特点:简洁、高效、易于使用、灵活、支持参数化测试、自动发现测试用例、支持插件扩展等。 pytest可以通过安装pytest包来使用,并且可以在终端中直接运行测试文件。pytest还提供了许多命令行选项和配置文件选项来管理测试的执行方式和结果输出。例如,可以使用pytest.ini配置文件来设置pytest的运行选项,如指定测试文件的路径、测试文件的命名规则、测试类和测试方法的命名规则等。 总的来说,pytest是一个功能强大、简洁易用的Python单元测试框架,可以帮助开发者编写和运行高效的单元测试。它提供了丰富的功能和灵活的配置选项,使得测试工作更加方便和高效。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [python单元测试框架pytest简介](https://download.csdn.net/download/weixin_38717579/16053295)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* *3* [python单元测试框架—pytest](https://blog.csdn.net/qq_22895113/article/details/126292624)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值