test_ok2/doc/en/how-to/tmpdir.rst

140 lines
4.4 KiB
ReStructuredText
Raw Normal View History

2010-11-06 06:37:25 +08:00
.. _`tmpdir handling`:
.. _tmpdir:
2010-11-06 06:37:25 +08:00
How to use temporary directories and files in tests
===================================================
The ``tmp_path`` fixture
2018-10-11 21:33:19 +08:00
------------------------
2018-10-19 11:54:29 +08:00
You can use the ``tmp_path`` fixture which will
provide a temporary directory unique to the test invocation,
created in the `base temporary directory`_.
``tmp_path`` is a :class:`pathlib.Path` object. Here is an example test usage:
2018-10-11 21:33:19 +08:00
.. code-block:: python
# content of test_tmp_path.py
CONTENT = "content"
2018-10-11 21:33:19 +08:00
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
2018-10-16 04:17:02 +08:00
assert len(list(tmp_path.iterdir())) == 1
assert 0
Running this would result in a passed test except for the last
2018-11-24 13:41:22 +08:00
``assert 0`` line which we use to look at values:
.. code-block:: pytest
$ pytest test_tmp_path.py
2018-10-16 04:23:30 +08:00
=========================== test session starts ============================
2020-07-09 05:51:01 +08:00
platform linux -- Python 3.x.y, pytest-6.x.y, py-1.x.y, pluggy-0.x.y
2019-01-31 00:25:38 +08:00
cachedir: $PYTHON_PREFIX/.pytest_cache
2019-04-15 22:24:17 +08:00
rootdir: $REGENDOC_TMPDIR
2018-10-16 04:23:30 +08:00
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
2019-08-30 23:43:47 +08:00
============================ 1 failed in 0.12s =============================
.. _`tmp_path_factory example`:
2018-10-11 21:33:19 +08:00
The ``tmp_path_factory`` fixture
--------------------------------
2018-10-20 01:22:04 +08:00
The ``tmp_path_factory`` is a session-scoped fixture which can be used
to create arbitrary temporary directories from any other fixture or test.
For example, suppose your test suite needs a large image on disk, which is
generated procedurally. Instead of computing the same image for each test
that uses it into its own ``tmp_path``, you can generate it once per-session
to save time:
.. code-block:: python
# contents of conftest.py
import pytest
2018-06-03 11:29:28 +08:00
@pytest.fixture(scope="session")
def image_file(tmp_path_factory):
img = compute_expensive_image()
fn = tmp_path_factory.mktemp("data") / "img.png"
img.save(fn)
return fn
2018-06-03 11:29:28 +08:00
# contents of test_image.py
def test_histogram(image_file):
img = load_image(image_file)
# compute and test histogram
See :ref:`tmp_path_factory API <tmp_path_factory factory api>` for details.
.. _`tmpdir and tmpdir_factory`:
The ``tmpdir`` and ``tmpdir_factory`` fixtures
---------------------------------------------------
The ``tmpdir`` and ``tmpdir_factory`` fixtures are similar to ``tmp_path``
and ``tmp_path_factory``, but use/return legacy `py.path.local`_ objects
rather than standard :class:`pathlib.Path` objects. These days, prefer to
use ``tmp_path`` and ``tmp_path_factory``.
See :fixture:`tmpdir <tmpdir>` :fixture:`tmpdir_factory <tmpdir_factory>`
API for details.
.. _`base temporary directory`:
The default base temporary directory
-----------------------------------------------
Temporary directories are by default created as sub-directories of
the system temporary directory. The base name will be ``pytest-NUM`` where
``NUM`` will be incremented with each test run. Moreover, entries older
than 3 temporary directories will be removed.
You can override the default temporary directory setting like this:
.. code-block:: bash
pytest --basetemp=mydir
.. warning::
The contents of ``mydir`` will be completely removed, so make sure to use a directory
for that purpose only.
When distributing tests on the local machine using ``pytest-xdist``, care is taken to
automatically configure a basetemp directory for the sub processes such that all temporary
2010-12-24 04:56:38 +08:00
data lands below a single per-test run basetemp directory.
.. _`py.path.local`: https://py.readthedocs.io/en/latest/path.html