IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> Python单元测试框架pytest学习总结一:安装、运行第一个测试脚本,以及标记、跳过的使用。 -> 正文阅读

[开发测试]Python单元测试框架pytest学习总结一:安装、运行第一个测试脚本,以及标记、跳过的使用。

pytest框架学习总结:
作为一个小白,首先要先把准备工作做好:
1.安装:pip install pytest
2、 查看是否安装成功:pip list
装好之后就可以开始了。
先了解下pytest单元测试框架的一些规则:
这个框架只要你装了,然后import进来之后,就可以对你的函数,类,模块,进行测试。
那么怎么测试呢,就是你自己除了有要测试的代码(你的函数,类,模块),还要自己写测试代码,什么样的呢,就是得是pytest能够识别的格式:
–》如果是测试文件需要以test_开头(或者以_test结尾)
–》class要以Test开头,且不能有__init__方法
–》函数以test开头
–》所有的包pakege必须要有__init__.py文件

有了以上的规则,有规矩,那么我们就按照这样的规矩写一些我们要测试的点。
我们知道要测试一个东西是不是对的,首先是要有输入,然后有输出,最后就是一个预期,手工测试的话,就是判断输出符不符合预期,这个预期是我们自己知道的,但是你要是用自动化实现,也就是让计算机给你测试,那么你得告诉计算机,你的输入,和你的预期,判断的事交给计算机,那就是用pytest中assert方法来判断。
断言使用assert 方法。

3、查看pytest命令行参数,可以用pytest -h 或pytest --help查看
常用的:
-v 显示详细的信息
-q显示简要的信息
-m显示被mark标记的测试用例
-s 将测试例中的打印函数的内容显示出来

下面给出了一个测试脚本,很简单。
以下是cmd也就是命令行中,我这里是直接在pycharm的terminal窗口中执行的。后面会介绍不使用命令行窗口的方式。
测试第一个脚本:

import pytest
def add(x, y):
    if type(x) is int or type(y) is int:
        return x+y
    else:
        raise TypeError

def testcase1():
    print("正常值。。。")
    assert add(1,2) == 3

def testcase2():
    print("异常值")
    with pytest.raises(TypeError):  
        assert add(1,"2") != 3

def testCase3():
    print("特殊字符:")
    with pytest.raises(TypeError):
        assert add("$", "****") != 3

执行用例有以下几种方法:
①在终端:执行pytest (这种是不指定具体的测试名称,默认从当前目录以及子目录中查找符合规则的测试用例进行执行) 或者pytest 指定文件名(可以直接指定文件名,如果是类名则需要文件名::类名,如果是方法,则还需要文件名::类名::方法名,如果是函数名,文件名::函数名)

(venv) D:\自动化B\python_test>pytest -s  -vv test_10_21.py
=========================================================================== test session starts ============================================================================
platform win32 -- Python 3.6.5, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 -- c:\python36\python.exe
cachedir: .pytest_cache
metadata: {'Python': '3.6.5', 'Platform': 'Windows-7-6.1.7601-SP1', 'Packages': {'pytest': '6.1.2', 'py': '1.9.0', 'pluggy': '0.13.1'}, 'Plugins': {'allure-pytest': '2.8.22'
, 'assume': '2.3.3', 'html': '3.1.0', 'metadata': '1.11.0', 'pythonpath': '0.7.3'}}
rootdir: D:\自动化B\python_test
plugins: allure-pytest-2.8.22, assume-2.3.3, html-3.1.0, metadata-1.11.0, pythonpath-0.7.3
collected 3 items                                                                                                                                                           

test_10_21.py::test_case1 正常值。。。
PASSED
test_10_21.py::test_case2 异常值
PASSED
test_10_21.py::test_Case3 特殊字符:
PASSED

============================================================================ 3 passed in 0.04s =============================================================================

②通过关键字匹配的方式,需要指定参数-k
比如test_10_21.py文件下面有几个测试case,是函数,分别是:test_a 、test_ab、test_c,那么如果想执行前面两个,可以pytest -k “a” test_10_21.py,就是执行文件下类名、函数名、方法名中有a的,都执行,不区分大小写。
③通过标记,默认情况下,pytest如果不指定执行的文件,那么会把当前目录下所有的符合规则的文件都执行了,但是有些情况下,比如回归测试,我们只想执行部分,那么可以使用标记函数进行选择性的执行。指定参数-m,并且需要在测试例的头部使用装饰器@pytest.mark.标记名,来进行标记:

import pytest
def add(x, y):
    if type(x) is int or type(y) is int:
        return x+y
    else:
        raise TypeError
@pytest.mark.notToDo
def test_case1():
    print("正常值。。。")
    assert add(1,2) == 3
    print("正常值。。。")
@pytest.mark.toDo
def test_case2():
    print("异常值")
    with pytest.raises(TypeError):
        assert add(1,"2") != 3
@pytest.mark.toDo
def test_Case3():
    print("特殊字符:")
    with pytest.raises(TypeError):
        assert add("$", "****") != 3

if __name__ == '__main__':
    pytest.main(['-s','-m','toDo','test_10_21.py'])

运行结果:

C:\Python36\python.exe D:/自动化B/python_test/test_10_21.py
============================= test session starts =============================
platform win32 -- Python 3.6.5, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: D:\自动化B\python_test
plugins: allure-pytest-2.8.22, assume-2.3.3, html-3.1.0, metadata-1.11.0, pythonpath-0.7.3
collected 3 items / 1 deselected / 2 selected

test_10_21.py 异常值
.特殊字符:
.

============================== warnings summary ===============================
test_10_21.py:7
  D:\自动化B\python_test\test_10_21.py:7: PytestUnknownMarkWarning: Unknown pytest.mark.notToDo - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/mark.html
    @pytest.mark.notToDo

test_10_21.py:12
  D:\自动化B\python_test\test_10_21.py:12: PytestUnknownMarkWarning: Unknown pytest.mark.toDo - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/mark.html
    @pytest.mark.toDo

test_10_21.py:17
  D:\自动化B\python_test\test_10_21.py:17: PytestUnknownMarkWarning: Unknown pytest.mark.toDo - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/mark.html
    @pytest.mark.toDo

-- Docs: https://docs.pytest.org/en/stable/warnings.html
================= 2 passed, 1 deselected, 3 warnings in 0.18s =================

Process finished with exit code 0

可以看到一个被过滤掉了,没有执行。
④对指定的包进行执行:
pytest --pyargs pkg.testing
这将导入pkg.testing并使用其文件系统位置来查找和运行测试。
(这个我没有看懂啊。。。。)

⑤另外,pytest还可以指定参数当用例执行的过程中遇到错误,可以停止运行,后续的测试用例将不会被执行:-x 参数
pytest -x test_10_21.py

⑥–maxfail=num:这个参数的功能是指定当执行用例的错误个数达到num,那么后面的都不会继续执行:
pytest --maxfail=1 test_10_21.py

下面介绍pycharm中不使用命令行窗口的方式执行:
①在执行的文件中加入下面的语句,且需要import pytest:
if name == ‘main’:
pytest.main([’-sv’, ‘test_10_21.py’])
上面是执行了文件名,如果不指定,则会执行这个目录下以及其子目录下所有的满足条件的用例。

C:\Python36\python.exe D:/自动化B/python_test/test_10_21.py
============================= test session starts =============================
platform win32 -- Python 3.6.5, pytest-6.1.2, py-1.9.0, pluggy-0.13.1
rootdir: D:\自动化B\python_test
plugins: allure-pytest-2.8.22, assume-2.3.3, html-3.1.0, metadata-1.11.0, pythonpath-0.7.3
collected 3 items

test_10_21.py 正常值。。。
.异常值
.特殊字符:
.

============================== 3 passed in 0.05s ==============================

Process finished with exit code 0

上面的mark是指定哪些需要执行,但是一般我们不执行的比较少的话,可以指定不执行哪些。
pytest中使用pytest.mark.skip就可以实现。

import pytest
def add(x, y):
    if type(x) is int or type(y) is int:
        return x+y
    else:
        raise TypeError
# @pytest.mark.ToDo3
def test_case1():
    print("正常值。。。")
    assert add(1,2) == 3
    print("正常值。。。")
# @pytest.mark.toDo2
def test_case2():
    print("异常值")
    with pytest.raises(TypeError):
        assert add(1,"2") != 3
@pytest.mark.skip(reason = "我不想被执行")
def test_Case3():
    print("特殊字符:")
    with pytest.raises(TypeError):
        assert add("$", "****") != 3

# if __name__ == '__main__':
#     pytest.main(['-s','-m','toDo','test_10_21.py'])

运行结果:

(venv) D:\自动化B\python_test>pytest -s  -v  test_10_21.py
=========================================================================== test session starts ============================================================================
platform win32 -- Python 3.6.5, pytest-6.1.2, py-1.9.0, pluggy-0.13.1 -- c:\python36\python.exe
cachedir: .pytest_cache
metadata: {'Python': '3.6.5', 'Platform': 'Windows-7-6.1.7601-SP1', 'Packages': {'pytest': '6.1.2', 'py': '1.9.0', 'pluggy': '0.13.1'}, 'Plugins': {'allure-pytest': '2.8.22'
, 'assume': '2.3.3', 'html': '3.1.0', 'metadata': '1.11.0', 'pythonpath': '0.7.3'}}
rootdir: D:\自动化B\python_test
plugins: allure-pytest-2.8.22, assume-2.3.3, html-3.1.0, metadata-1.11.0, pythonpath-0.7.3
collected 3 items                                                                                                                                                           

test_10_21.py::test_case1 正常值。。。
正常值。。。
PASSED
test_10_21.py::test_case2 异常值
PASSED
test_10_21.py::test_Case3 SKIPPED

======================================================================= 2 passed, 1 skipped in 0.15s =======================================================================

pytest还支持跳过的时候根据判断进行是否跳过:

count = 1
@pytest.mark.skipif(count <= 1, reason = "count值太小")
def test_case2():
    print("异常值")
    with pytest.raises(TypeError):
        assert add(1,"2") != 3
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2021-10-23 12:47:37  更:2021-10-23 12:47:57 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 2:39:13-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码