A py.test plugin providing temporary directories in unit tests.
Project description
Testing code by invoking executable which potentially creates and deletes files and directories can be hard and error prone.
The purpose of this module is to simplify this task.
pytest-testdirectory provides a py.test fixture for working with temporary directories.
Installation
To install pytest-testdirectory:
pip install pytest-testdirectory
Usage
To make it easy to use in with py.test the TestDirectory object can be injected into a test function by using the testdirectory fixture.
Example:
def test_this_function(testdirectory): images = testdirectory.mkdir('images') images.copy_files('test/images/*') r = testdirectory.run('imagecompress --path=images') # r is an RunResult object containing information about the command # we just executed assert r.stdout.match('*finished successfully*')
The testdirectory is an instance of TestDirectory and represents an actual temporary directory somewhere on the machine running the test code. Using the API we can create additional temporary directories, populate them with an initial set of files and finally run some executable and observe its behavior.
Relase new version
Edit NEWS.rst and wscript (set correct VERSION)
Run
./waf upload
Source code
The main functionality is found in src/testdirectory.py and the corresponding unit test is in test/test_testdirectory.py if you want to play/modify/fix the code this would, in most cases, be the place to start.
Developer Notes
We try to make our projects as independent as possible of a local system setup. For example with our native code (C/C++) we compile as much as possible from source, since this makes us independent of what is currently installed (libraries etc.) on a specific machine.
To “fetch” sources we use Waf (https://waf.io/) augmented with dependency resolution capabilities: https://github.com/steinwurf/waf
The goal is to enable a work-flow where running:
./waf configure ./waf build --run_tests
Configures, builds and runs any available tests for a given project, such that you as a developer can start hacking at the code.
For Python project this is a bit unconventional, but we think it works well.
Tests
The tests will run automatically by passing --run_tests to waf:
./waf --run_tests
This follows what seems to be “best practice” advise, namely to install the package in editable mode in a virtualenv.
Notes
Why use an src folder (https://hynek.me/articles/testing-packaging/). tl;dr you should run your tests in the same environment as your users would run your code. So by placing the source files in a non-importable folder you avoid accidentally having access to resources not added to the Python package your users will install…
Python packaging guide: https://packaging.python.org/distributing/
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pytest_testdirectory-5.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_testdirectory-5.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38f78c33b57e4ab8968c2d1d021731d7eee7a9b5613b63db4679d5363da0db2e |
|
MD5 | 2014ec6a9aa06d56cc180c6b6e187313 |
|
BLAKE2b-256 | d9b7fbf9030106cd3aa915b7af6bfa5dca4f5423338cdd02b98898f01946f496 |