临时目录和文件¶
这个 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目录下。