单元测试之pytest知识总结

前提:需要安装pytest和pytest-html(生成html测试报告)

pip install pytest 和 pip install pytest-html 

一、命名规则

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

案例

import pytest

from xml.dom import minidom

class TestPy01():
    def testPy001(self):

        print("第一个pytest")

        assert1==1

    def testPy002(self):

        print("第二个pytest")

        assert1==2

    def testPy003(self):

        print("第三个pytest")

        assert1==1

if__name__=='__main__':

    pytest.main()

二、Pytest生成自带的html测试报告

前提条件:需要下载pytest-html模块(python自带的生成测试报告模块)

pip install pytest-html

2.1 方式一

格式

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

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

代码:

pytest.main(["--html=../report1.html", "test_01.py"])

2.2 方式二

格式

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

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

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

代码

pytest.main(["--html=../report1.html", "test_01.py::TestPy01::testPy001"])

2.4 方式三

Pytest调用语句

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

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

-v:丰富信息模式, 输出更详细的用例执行信息

-s:显示print内容

-q:简化结果信息,不会显示每个用例的文件名

三、Pytest的运行方式

.点号,表示用例通过

F表示失败 Failure

E表示用例中存在异常 Error

四、Allure

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

首先配置allure的环境变量

Allure下载

image.png

验证allure是否配置成功

image.png

其次要安装allure

pip install allure-pytest

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

4.1 Allure常用的几个特性

@allure.feature# 用于描述被测试产品需求@allure.story# 用于描述feature的用户场景,即测试需求

with allure.step():# 用于描述测试步骤,将会输出到报告中

allure.attach# 用于向测试报告中输入一些附加的信息,通常是一些测试数据,截图等

案例

实现用户登录功能,场景为登录成功和登录失败

import pytest, allure, osclass TestAllureDemo(object): @allure.feature('用户登录') @allure.story('登录成功') def testLoginSuccess(self): print('登录成功') assert 1 == 1 with allure.step("查看哈吉利系列车信息"): allure.attach("博越", "吉利") with allure.step("查看哈弗系列车信息"): allure.attach("H7", "哈弗") @allure.feature('用户登录') @allure.story('登录失败') def testLoginUnknown(self): print('登录失败') assert 1 == 2 @allure.feature('用户登录') @allure.story('登录未知') def testLoginFail(self): print('登录未知') assert 600 == 602if __name__ == '__main__': pytest.main(['--alluredir', 'report/result', 'allureDemomo.py']) # 生成json类型的测试报告 split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean' # 将测试报告转为html格式 os.system(split) # system函数可以将字符串转化成命令在服务器上运行

Pytest和allure效果展示

作者:Anwfly

链接:https://www.jianshu.com/p/477c66abe55d

来源:

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(单元测试之pytest知识总结)