Utilities to create temporary file hierarchies in pytest.
Project description
pytest_tmp_files is a pytest plugin that provides a fixture for creating temporary file hierarchies. This fixture is called tmp_files, and you can think of it as an extension of the built-in tmp_path fixture. In addition to creating a unique temporary directory for each test, tmp_files also fills in that directory with any files needed for that test.
The files to create are specified by a dictionary provided to fixture via indirect parametrization. For example, here’s a test for a function that searches for files whose contents match a given regular expression:
import pytest, re
from pathlib import Path
def find_text(top, pattern):
hits = set()
for path in Path(top).glob('**/*'):
if path.is_file() and re.search(pattern, path.read_text()):
hits.add(path)
return hits
@pytest.mark.parametrize(
'tmp_files, pattern, expected', [
({'a': 'x'}, 'x', {'a'}),
({'a': 'x'}, 'y', set()),
({'a/b': 'x'}, 'x', {'a/b'}),
({'a/b': 'x'}, 'y', set()),
({'a/b': 'x', 'c': 'y'}, 'x', {'a/b'}),
({'a/b': 'x', 'c': 'y'}, 'y', {'c'}),
({'a/b': 'x', 'c': 'y'}, '[xy]', {'a/b', 'c'}),
],
indirect=['tmp_files'],
)
def test_find_text(tmp_files, pattern, expected):
expected = {
tmp_files / p
for p in expected
}
assert find_text(tmp_files, pattern) == expected
The first parameter in each set (the dictionary) specifies the files to create. The keys are file paths and the values are file contents, so {'a/b': 'x'} specifies a subdirectory a containing a text file b with the contents x. Although not shown here, it’s also possible to create different kinds of files (e.g. binary files, symlinks, hard links, named FIFOs) and to specify file metadata (e.g. permissions, modification times).
If this plugin sounds useful to you, you may also be interested in Parametrize From File. These two packages work really well together, because tmp_files lends itself to long, multi-line parameters and Parametrize From File makes such parameters easier to manage.
Check out the documentation for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pytest_tmp_files-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47ff5267063285c5388137c284fc46d26bbbf0331e6b2c68bc9815fe116d5a29 |
|
MD5 | bf3d1752d7aefa145982141009f4507b |
|
BLAKE2b-256 | 5a9d572fccbc32e03334c6154cdcd6b0b0679e52ae3961d68074263b4aa2ac51 |