python单元测试---pytest

pytest

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

pip install pytest 和 pip install pytest-html

 命名规则

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

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

Pytest生成自带的html测试报告

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

pip install pytest-html

方法一

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

方法二

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

方法三

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

test结尾的py文件】

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

Pytest的运行方式

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

文件读取

被测代码

class ClacClass():
    def add(self,a,b):    #两个数相加
        return a+b
    def reduct(self,a,b):     #两个数相减
        return a-b

csv

csv数据文件

1,2,3
3,4,6
6,3,3
5,2,1

读取csv文件

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

 执行测试用例

import pytest,os,allure
from demo.clac import ClacClass
from readdata.readcsv import ReadCsv
c = ClacClass()
r = ReadCsv()
l=r.read_csv()
class TestCase():
    def test001(self):
        assert c.add(int(l[0][0]), int(l[0][1])) == int(l[0][2])
    def test002(self):
        assert c.add(int(l[1][0]), int(l[1][1])) == int(l[0][2])
    def test003(self):
        assert c.reduct(int(l[2][0]), int(l[2][1])) == int(l[2][2])
    def test004(self):
        assert c.reduct(int(l[3][0]), int(l[3][1])) == int(l[3][2])

if __name__ == '__main__':
    pytest.main(["-s","testcsv.py","--html=./report.html"])

 xml

xml数据文件

<?xml version="1.0" encoding="UTF-8" ?>
<root>
    <add>
        <add1>1</add1>
        <add2>2</add2>
        <add3>3</add3>
    </add>
    <adds>
        <add4>3</add4>
        <add5>4</add5>
        <add6>6</add6>
    </adds>
    <reduct>
        <re1>4</re1>
        <re2>2</re2>
        <re3>2</re3>
    </reduct>
    <reduct1>
        <re1>5</re1>
        <re2>3</re2>
        <re3>1</re3>
    </reduct1>
<root>

读取xml文件

from xml.dom import minidom
class ReadXml():
    def read_xml(self,first,second):
        root = minidom.parse("../data/xmldata.xml")
        firstnode = root.getElementsByTagName(first)[0]
        secondnode = firstnode.getElementsByTagName(second)[0].firstChild.data
        return secondnode

执行测试用例

import pytest,os,allure
from demo.clac import ClacClass
from readdata.readxml import ReadXml
c = ClacClass()
r = ReadXml()
a1 = r.read_xml("add","add1")
a2 = r.read_xml("add","add2")
a3 = r.read_xml("add","add3")
a4 = r.read_xml("adds","add4")
a5 = r.read_xml("adds","add5")
a6 = r.read_xml("adds","add6")
b1 = r.read_xml("reduct","re1")
b2 = r.read_xml("reduct","re2")
b3 = r.read_xml("reduct","re3")
b4 = r.read_xml("reduct1","re1")
b5 = r.read_xml("reduct1","re2")
b6 = r.read_xml("reduct1","re3")

class TestXml():
    def test001(self):
        assert int(a3) == c.add(int(a1),int(a2))
    def test002(self):
        assert int(a6) == c.add(int(a4),int(a5))
    def test003(self):
        assert int(b3) == c.reduct(int(b1),int(b2))
    def test004(self):
        assert int(b6) == c.reduct(int(b5), int(b4))

if __name__ == '__main__':
    pytest.main(["testxml.py","--html=./report1.html"])

allure

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

allure下载

Allure下载地址icon-default.png?t=M7J4https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/

配置allure的环境变量

 验证allure是否配置成功  

未成功显示不是内部命令

安装pytest的allure-pytest 插件

在pycharm终端输入

pip install allure-pytest

Allure常用的几个特性

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

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函数可以将字符串转化成命令在服务器上运行

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、付费专栏及课程。

余额充值