Subprocess Mock
Project description
Subprocess Mock
Mock objects for the standard library’s subprocess module
pip install subprocess-mock
Installation in a virtual environment is recommended.
Example Usage
Use the functions defined in the subprocess_mock.functions module (and also exposed in the subprocess_mock namespace) to patch subprocess module functions in unit tests.
>>> import pathlib
>>> import subprocess
>>> import subprocess_mock
>>> from unittest.mock import patch
>>>
>>> new_file = pathlib.Path("testfile.txt")
>>> new_file.exists()
False
>>> # Test: call a process with a mock.patched subprocess.run
>>> # No Process is called,
>>> # but a subprocess.CompletedProcess instance is returned.
>>>
>>> with patch("subprocess.run", new=subprocess_mock.run):
... run_result = subprocess.run(["touch", str(new_file)])
...
>>> run_result
CompletedProcess(args=['touch', 'testfile.txt'], returncode=0)
>>> new_file.exists()
False
>>>
>>> # Counter-test: call the process without patching subprocess.run
>>> # The process is called with normal effects.
>>>
>>> run_result = subprocess.run(["touch", str(new_file)])
>>> new_file.exists()
True
>>>
Further reading
Please see the documentation at https://blackstream-x.gitlab.io/subprocess-mock for detailed usage information.
If you found a bug or have a feature suggestion, please open an issue here
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
subprocess-mock-0.3.1.tar.gz
(24.5 kB
view details)
Built Distribution
File details
Details for the file subprocess-mock-0.3.1.tar.gz
.
File metadata
- Download URL: subprocess-mock-0.3.1.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2e1149b972934ebb52280bf3755a4e1bd2963be32a61fc336462fa80311f2a2 |
|
MD5 | ae64cfeb5ae80a82290e4fc68f22151c |
|
BLAKE2b-256 | 26825c53f2f52832bebf2b7cb849e9bdb5546e8f33da315f99aeae54f598d972 |
File details
Details for the file subprocess_mock-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: subprocess_mock-0.3.1-py3-none-any.whl
- Upload date:
- Size: 25.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06481f4fc9d731545c3784d1dcf9215328261895e551f69f60a5ad5f24e8e363 |
|
MD5 | 731cb49cd206f910e2d851d065d32bec |
|
BLAKE2b-256 | b93bd7f0e1944cc555b9f4fd4886cf378a2d4a1783023e7b29570ddaf2d1c13d |