- Pytest:帮助您编写更好的程序
- 完整的 Pytest 文档
- 安装和入门
- 使用和调用
- 在现有测试套件中使用 pytest
- 测试中断言的编写和报告
- Pytest 夹具:显式、模块化、可扩展
- 用属性标记测试函数
- MonkeyPatching / Mocking 模块和环境
- 临时目录和文件
- 捕获 stdout/stderr 输出
- 捕获警告
- 模块和测试文件的 Doctest 集成
- 跳过和 xfail:处理无法成功的测试
- 参数化夹具和测试功能
- 缓存:使用交叉测试运行状态
- UnitTest.TestCase 支持
- 运行为鼻子编写的测试
- 经典的 Xunit 风格设置
- 安装和使用插件
- 编写插件
- 登录
- 良好的集成实践
- 古怪的测试
- Pytest 导入机制和 sys.path/PYTHONPATH
- 设置 bash 完成
- API 引用
- _pytest.hookspec
- _pytest.python_api
- _pytest.outcomes
- _pytest.config
- _pytest.mark
- _pytest.recwarn
- _pytest.assertion
- _pytest.freeze_support
- _pytest.fixtures
- _pytest.cacheprovider
- _pytest.capture
- _pytest.doctest
- _pytest.junitxml
- _pytest.logging
- _pytest.monkeypatch
- _pytest.pytester
- _pytest.tmpdir
- _pytest.python
- _pytest.nodes
- _pytest.reports
- _pytest._code.code
- _pytest.config.argparsing
- _pytest.main
- pluggy.callers
- _pytest.config.exceptions
- py.test 2.0.0:断言++、UnitTest++、Reporting++、Config++、Docs++
- 示例和自定义技巧
- 配置
- 贡献开始
- 向后兼容策略
- Python 2.7 和 3.4 支持
- 企业版 pytest
- 项目实例
- 历史笔记
- 弃用和移除
- 发展指南
- 演讲和辅导
临时目录和文件
这个 tmp_path
固定装置
你可以使用 tmp_path
fixture,它将为测试调用提供一个唯一的临时目录,在 base temporary directory .
tmp_path
是一个 pathlib.Path
对象。下面是一个测试用法示例:
# content of test_tmp_path.py CONTENT = "content" def test_create_file(tmp_path): d = tmp_path / "sub" d.mkdir() p = d / "hello.txt" p.write_text(CONTENT) assert p.read_text() == CONTENT assert len(list(tmp_path.iterdir())) == 1 assert 0
运行这将导致通过测试,除了最后一个 assert 0
我们用来查看值的行:
$ pytest test_tmp_path.py =========================== test session starts ============================ platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y cachedir: $PYTHON_PREFIX/.pytest_cache rootdir: $REGENDOC_TMPDIR collected 1 item test_tmp_path.py F [100%] ================================= FAILURES ================================= _____________________________ test_create_file _____________________________ tmp_path = PosixPath('PYTEST_TMPDIR/test_create_file0') def test_create_file(tmp_path): d = tmp_path / "sub" d.mkdir() p = d / "hello.txt" p.write_text(CONTENT) assert p.read_text() == CONTENT assert len(list(tmp_path.iterdir())) == 1 > assert 0 E assert 0 test_tmp_path.py:11: AssertionError ========================= short test summary info ========================== FAILED test_tmp_path.py::test_create_file - assert 0 ============================ 1 failed in 0.12s =============================
这个 tmp_path_factory
固定装置
这个 tmp_path_factory
是会话范围的fixture,可用于从任何其他fixture或测试创建任意临时目录。
它的目的是取代 tmpdir_factory
并返回 pathlib.Path
实例。
见 tmp_path_factory API 有关详细信息。
tmpdir 夹具
你可以使用 tmpdir
fixture,它将为测试调用提供一个唯一的临时目录,在 base temporary directory .
tmpdir
是一个 py.path.local 提供的对象 os.path
方法和更多。以下是测试用法示例:
# content of test_tmpdir.py def test_create_file(tmpdir): p = tmpdir.mkdir("sub").join("hello.txt") p.write("content") assert p.read() == "content" assert len(tmpdir.listdir()) == 1 assert 0
运行这将导致通过测试,除了最后一个 assert 0
我们用来查看值的行:
$ pytest test_tmpdir.py =========================== test session starts ============================ platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y cachedir: $PYTHON_PREFIX/.pytest_cache rootdir: $REGENDOC_TMPDIR collected 1 item test_tmpdir.py F [100%] ================================= FAILURES ================================= _____________________________ test_create_file _____________________________ tmpdir = local('PYTEST_TMPDIR/test_create_file0') def test_create_file(tmpdir): p = tmpdir.mkdir("sub").join("hello.txt") p.write("content") assert p.read() == "content" assert len(tmpdir.listdir()) == 1 > assert 0 E assert 0 test_tmpdir.py:6: AssertionError ========================= short test summary info ========================== FAILED test_tmpdir.py::test_create_file - assert 0 ============================ 1 failed in 0.12s =============================
'tmpdir_factory'夹具
这个 tmpdir_factory
是会话范围的fixture,可用于从任何其他fixture或测试创建任意临时目录。
例如,假设您的测试套件需要磁盘上的一个大图像,该图像是按程序生成的。而不是为每个使用它的测试计算相同的图像 tmpdir
,您可以在每个会话中生成一次以节省时间:
# contents of conftest.py import pytest @pytest.fixture(scope="session") def image_file(tmpdir_factory): img = compute_expensive_image() fn = tmpdir_factory.mktemp("data").join("img.png") img.save(str(fn)) return fn # contents of test_image.py def test_histogram(image_file): img = load_image(image_file) # compute and test histogram
见 tmpdir_factory API 有关详细信息。
默认的基本临时目录
临时目录默认创建为系统临时目录的子目录。基本名称将是 pytest-NUM
在哪里? NUM
将随着每次测试运行而递增。此外,将删除超过3个临时目录的条目。
您可以这样覆盖默认的临时目录设置:
pytest --basetemp=mydir
警告
内容 mydir
将被完全删除,因此请确保仅为此目的使用目录。
在本地计算机上分发测试时使用 pytest-xdist
,请注意为子进程自动配置basetemp目录,以便所有临时数据都位于每个测试运行的单个basetemp目录下。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论