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 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> Pytest官方文档深入解读(1)快速入门 -> 正文阅读

[开发测试]Pytest官方文档深入解读(1)快速入门

目录

正文

Pytest的安装

(1) 安装

pip install pytest

(2)查看版本,如下表示安装OK

$ pytest --version
pytest 6.2.5

(3)升级

pip install -U pytest

创建第一个测试脚本

(1)四行代码即可写一个测试脚本,如下,文件命名为 test_sample.py

def func(x):
    return x + 1

def test_answer():
    assert func(3) == 5

(2)打开cmd窗口或者从pycharm进入终端,或者使用git shell,进入到test_sample.py文件所在的目录,然后执行pytest命令即开始执行脚本

$ pytest
=========================== test session starts ============================
platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-1.x.y
cachedir: $PYTHON_PREFIX/.pytest_cache
rootdir: $REGENDOC_TMPDIR
collected 1 item

test_sample.py F                                                     [100%]

================================= FAILURES =================================
_______________________________ test_answer ________________________________

    def test_answer():
>       assert func(3) == 5
E       assert 4 == 5
E        +  where 4 = func(3)

test_sample.py:6: AssertionError
========================= short test summary info ==========================
FAILED test_sample.py::test_answer - assert 4 == 5
============================ 1 failed in 0.12s =============================

使用类组织测试函数

(1)使用类组织测试函数,注意不能写__init__()函数,创建test_class.py文件,代码如下:

class TestClass:
    def test_one(self):
        x = "this"
        assert "h" in x

    def test_two(self):
        x = "hello"
        assert hasattr(x, "check")

然后执行pytest test_class.py

$ pytest test_class.py
============================= test session starts =============================
platform win32 -- Python 3.9.6, pytest-6.2.5, py-1.10.0, pluggy-1.0.0 -- D:\python39\python.exe
cachedir: .pytest_cache
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('G:\\src\\blog\\tests\\demo\\.hypothesis\\examples')
rootdir: G:\src\blog\tests, configfile: pytest.ini
plugins: allure-pytest-2.9.43, caterpillar-pytest-0.0.2, hypothesis-6.31.6, forked-1.3.0, rerunfailures-10.1, xdist-2.3.0
collecting ... collected 2 items

test_class.py::TestClass::test_one PASSED
test_class.py::TestClass::test_two FAILED

================================== FAILURES ===================================
_____________________________ TestClass.test_two ______________________________

self = <test_class.TestClass object at 0x000001BC163991F0>

    def test_two(self):
        x = "hello"
>       assert hasattr(x, "check")
E       AssertionError: assert False
E        +  where False = hasattr('hello', 'check')

test_class.py:8: AssertionError
=========================== short test summary info ===========================
FAILED test_class.py::TestClass::test_two - AssertionError: assert False
========================= 1 failed, 1 passed in 0.35s =========================

(2)使用类组织测试函数的好处

  • 可以有效的组织用例
  • 可以仅在类中共享fixture
  • 可以在类上打标签从而对类中的所有用例打标签

(3)使用类组织测试函数时需要特别注意,勒种的每个用例都是测试类的一个独立的对象,类中的用例如果通过类属性共享变量将是非常糟糕的设计,如下:

# content of test_class_demo.py
class TestClassDemoInstance:
    value = 0

    def test_one(self):
        self.value = 1
        assert self.value == 1

    def test_two(self):
        assert self.value == 1

执行结果如下:

$ pytest -k TestClassDemoInstance -q
.F                                                                   [100%]
================================= FAILURES =================================
______________________ TestClassDemoInstance.test_two ______________________

self = <test_class_demo.TestClassDemoInstance object at 0xdeadbeef0002>

    def test_two(self):
>       assert self.value == 1
E       assert 0 == 1
E        +  where 0 = <test_class_demo.TestClassDemoInstance object at 0xdeadbeef0002>.value

test_class_demo.py:9: AssertionError
========================= short test summary info ==========================
FAILED test_class_demo.py::TestClassDemoInstance::test_two - assert 0 == 1
1 failed, 1 passed in 0.12s

执行批量用例

pytest 会执行当前目录及所有子目录中的test_.py和_test.py文件中的脚本,更多详细规则请参考 Pytest官方文档深入解读(24)Pytest默认的用例发现规则

相关推荐

Pytest官方文档深入解读(1)快速入门

Pytest官方文档深入解读(2)如何执行pytest脚本

Pytest官方文档深入解读(3)如何使用断言

Pytest官方文档深入解读(4)如何使用fixture

Pytest官方文档深入解读(5)如何使用mark

Pytest官方文档深入解读(6)如何使用参数化进行数据驱动开发

Pytest官方文档深入解读(7)如何使用临时目录和文件

Pytest官方文档深入解读(8)如何使用猴子补丁以及模拟环境和模块

Pytest官方文档深入解读(9)如何执行文本测试

Pytest官方文档深入解读(10)如何重执行失败用即保持用例状态

Pytest官方文档深入解读(11)如何管理日志

Pytest官方文档深入解读(12)如何捕获标准输出和标准错误输出

Pytest官方文档深入解读(13)如何捕获告警

Pytest官方文档深入解读(14)如何使用skip和xfail

Pytest官方文档深入解读(15)如何安装和使用插件

Pytest官方文档深入解读(16)如何写插件

Pytest官方文档深入解读(17)如何写hook钩子函数

Pytest官方文档深入解读(18)如何针对已有测试套使用pytest

Pytest官方文档深入解读(19)如何使用pytest执行unittest用例

Pytest官方文档深入解读(20)如何使用pytest执行nose用例

Pytest官方文档深入解读(21)如何使用经典的setup和teardown

Pytest官方文档深入解读(22)如何建立bash命令行自动补全

Pytest官方文档深入解读(23)测试脚本的加载原理

Pytest官方文档深入解读(24)Pytest默认的用例发现规则

Pytest官方文档深入解读(25)修改Pytest默认的用例发现规则

  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2021-12-23 16:01:58  更:2021-12-23 16:02:17 
 
开发: 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 4:20:11-

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