单元测试pytest

一、安装

可以在终端安装

安装pytest:

 pip install pytest

安装pytest-html(生成html测试报告):

pip install pytest-html 

二、命名规则

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

  unittest:

Setup>>  setupclass , teardown >> teardownclass

pytest:

 setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样)

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

3.1 下载pytest-html模块

pip install pytest-html

案例一:

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

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

案例二:

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

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

3.2 pytest调用语句

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

-x出现一条测试用例失败就退出测试
-s:显示print内容

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

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

四、Pytest的运行方式

. 点号,表示用例通过
F 表示失败 Failure
E 表示用例中存在异常 Error

五、文件读取

5.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())

5.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

六、Allure的特性

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

6.1 allure.feature

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

6.2 allure.story

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

代码案例:

import pytest,allure,os
class TestClass005():
    @allure.feature("用户登录功能")#用于定义被测试的功能,被测产品的需求点
    @allure.story("登录成功")     #用于定义被测功能的用户场景,即子功能点
    def test_success(self):
        assert 1==1
    @allure.feature("用户登录功能")#用于定义被测试的功能,被测产品的需求点
    @allure.story("登录失败")     #用于定义被测功能的用户场景,即子功能点
    def test_fail(self):
        assert 1==2
if __name__ == '__main__':
    pytest.main(['--alluredir', 'report/result', 'test_06.py'])  #生成json类型的测试报告
    split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean'  #将测试报告转为html格式
    os.system(split)  # system函数可以将字符串转化成命令在服务器上运行

界面展示:

6.3 with allure.step()

用于描述测试步骤,将会输出到报告中

6.4 allure.attach

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

代码案例:

import pytest,os,allure
class TestShop():
    @allure.feature("购物车")
    @allure.story("产品展示")
    def testshow(self):
        with allure.step("查看哈吉利系列车信息"):
            allure.attach("博越","吉利")
        with allure.step("查看哈弗系列车信息"):
            allure.attach("H7","哈弗")
if __name__ == '__main__':
    pytest.main(['--alluredir', 'report/result', 'test_07.py'])
    split = 'allure ' + 'generate ' + './report/result ' + '-o ' + './report/html ' + '--clean'
    os.system(split)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值