Skip to main content

pyfakefs implements a fake file system that mocks the Python file system modules.

Project description

pyfakefs implements a fake file system that mocks the Python file system modules. Using pyfakefs, your tests operate on a fake file system in memory without touching the real disk. The software under test requires no modification to work with pyfakefs.

pyfakefs works with Linux, Windows and MacOS.

The current pyfakfs API is referenced in the auto-generated documentation. A list of changes in the latest versions can be found in the Release Notes.

Usage

There are two approaches to implementing tests using pyfakefs.

The first method is to allow pyfakefs to automatically find all real file functions and modules, and stub these out with the fake file system functions and modules. This is explained in the usage tutorial and demonstrated by example.py and example_test.py.

The other approach is to do the patching yourself using mock.patch():

import pyfakefs.fake_filesystem as fake_fs

# Create a faked file system
fs = fake_fs.FakeFilesystem()

# Do some setup on the faked file system
fs.CreateFile('/var/data/xx1.txt')
fs.CreateFile('/var/data/xx2.txt')

# Replace some built-in file system related modules you use with faked ones

# Assuming you are using the mock library to ... mock things
try:
    from unittest.mock import patch  # In Python 3, mock is built-in
except ImportError:
    from mock import patch  # Python 2

import pyfakefs.fake_filesystem_glob as fake_glob

# Note that this fake module is based on the fake fs you just created
glob = fake_glob.FakeGlobModule(fs)
with patch('mymodule.glob', glob):
    print(glob.glob('/var/data/xx*'))

Usage as a Pytest Plugin

Installation of pyfakefs also provides a PyTest plugin. The plugin makes the fs fixture available for any test. For example:

def my_fakefs_test(fs):
    # "fs" is the reference to the fake file system
    fs.CreateFile('/var/data/xx1.txt')
    assert os.path.exists('/var/data/xx1.txt')

Similar to the unittest class (fake_filesystem_unittest.TestCase), the fs fixture stubs out all file system functions and modules.

Continuous Integration

pyfakefs is automatically tested with Python 2.6 and above, and it is currently Build Status.

See Travis-CI for test results for each Python version.

Installation

Compatibility

pyfakefs works with Python 2.6 and above, on Linux, Windows and OSX (MacOS).

pyfakefs requires mox3.

pyfakefs works with PyTest version 2.8.6 or above.

PyPi

pyfakefs is available on PyPi.

History

pyfakefs.py was initially developed at Google by Mike Bland as a modest fake implementation of core Python modules. It was introduced to all of Google in September 2006. Since then, it has been enhanced to extend its functionality and usefulness. At Google alone, pyfakefs is used in over 2,000 Python tests.

Google released pyfakefs to the public in 2011 as Google Code project pyfakefs.

Fork jmcgeheeiv-pyfakefs added a usage tutorial, direct support for unittest and doctest.

Fork shiffdane-jmcgeheeiv-pyfakefs added further corrections.

After the shutdown of Google Code was announced, John McGehee merged all three Google Code projects together here on GitHub where an enthusiastic community actively maintains and extends pyfakefs.

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

pyfakefs-3.1.tar.gz (57.5 kB view details)

Uploaded Source

Built Distribution

pyfakefs-3.1-py2.py3-none-any.whl (53.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyfakefs-3.1.tar.gz.

File metadata

  • Download URL: pyfakefs-3.1.tar.gz
  • Upload date:
  • Size: 57.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyfakefs-3.1.tar.gz
Algorithm Hash digest
SHA256 9998ac19b7be5bb7641c1e001665d27561e9fe12dfe457868cb78f5f9d488d21
MD5 039d782b7e5042e05904912a2ba5ffc2
BLAKE2b-256 5407165b646a2374622f64b1c2115f82b538b49b1c1feed597e6181cec57de06

See more details on using hashes here.

File details

Details for the file pyfakefs-3.1-py2.py3-none-any.whl.

File metadata

  • Download URL: pyfakefs-3.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 53.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/3.6.3

File hashes

Hashes for pyfakefs-3.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6feb34788f23e0645a80e0f540552ba02e85479991623e09629ad38e0f623c27
MD5 758b2eb58dd3afc32177d311284b20ba
BLAKE2b-256 83f5599bab8e47099f0c9bb3f9ec2cf9b1d5bf89aa6658509f02dab60fbf7df8

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