Skip to main content

Test fixtures for providing fake versions of various system resources (processes, users, groups, etc.)

Project description

Latest Version Build Status Coverage Documentation Status

A collection of Python fixtures to fake out various system resources (processes, users, groups, etc.).

Each fake resource typically behaves as an “overlay” on the real resource, in that it can be programmed with fake behavior for a set of inputs, but falls back to the real behavior for the rest.

>>> import pwd

>>> from systemfixtures import FakeUsers

>>> users = FakeUsers()
>>> users.setUp()

>>> pwd.getpwnam("foo")
Traceback (most recent call last):
...
KeyError: 'getpwnam(): name not found: foo'

>>> users.add("foo", 123)
>>> info = pwd.getpwnam("foo")
>>> info.pw_uid
123
>>> users.cleanUp()

Support and Documentation

See the online documentation for a complete reference.

Developing and Contributing

See the GitHub project. Bugs can be filed in the issues tracker.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

systemfixtures-0.6.4.tar.gz (21.2 kB view details)

Uploaded Source

Built Distribution

systemfixtures-0.6.4-py2.py3-none-any.whl (19.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file systemfixtures-0.6.4.tar.gz.

File metadata

File hashes

Hashes for systemfixtures-0.6.4.tar.gz
Algorithm Hash digest
SHA256 87f75d33151cc36bbdcf6e6fc94811f19c79fc7866169561f5da1b5820ac43fa
MD5 07a1ae8edcab249c16dbc12d393d96a3
BLAKE2b-256 ba63bc0edea72c05afe8f611ace458bc7c573dfe2db4c49e11f88f2b38d4d265

See more details on using hashes here.

File details

Details for the file systemfixtures-0.6.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for systemfixtures-0.6.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8ab8a6114dfb427df07c63f0be8e66b720c307ae19e4d5709b92a88a1c190e2b
MD5 05587c7d885b738d5f9906847b4b6ba9
BLAKE2b-256 fee75a4d8f28cc9f707162da54e9577f78576cb3accc9d0a8011868f21a369d7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page