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.

Documentation

This file provides general usage instructions for pyfakefs. There is more:

Usage

There are several approaches to implementing tests using pyfakefs.

Automatically find and patch

The first approach 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 pyfakefs wiki page Automatically find and patch file functions and modules and demonstrated in files example.py and example_test.py.

Patch using the PyTest plugin

If you use PyTest, you will be interested in the PyTest plugin in pyfakefs. This automatically patches all file system functions and modules in a manner similar to the automatic find and patch approach described above.

The PyTest plugin provides the fs fixture for use in your 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')

Patch using unittest.mock

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*'))

Installation

Compatibility

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

pyfakefs works with PyTest version 2.8.6 or above.

pyfakefs will not work with Python libraries that use C libraries to access the file system. This is because pyfakefs cannot patch the underlying C libraries’ file access functions–the C libraries will always access the real file system. For example, pyfakefs will not work with `lxml <http://lxml.de/>`__. In this case lxml must be replaced with a pure Python alternative such as `xml.etree.ElementTree <https://docs.python.org/3/library/xml.etree.elementtree.html>`__.

PyPi

pyfakefs is available on PyPi.

Development

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.

Running pyfakefs unit tests

pyfakefs unit tests are available via two test scripts:

$ python all_tests.py
$ py.test pytest_plugin_test.py

These scripts are called by tox and Travis-CI. tox can be used to run tests locally against supported python versions:

$ tox

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 last count, pyfakefs is used in over 2,000 Python tests at Google.

Google released pyfakefs to the public in 2011 as Google Code project pyfakefs: * Fork jmcgeheeiv-pyfakefs added 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 supports, maintains and extends pyfakefs.

Project details


Release history Release notifications | RSS feed

This version

3.2

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.2.tar.gz (65.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyfakefs-3.2-py2.py3-none-any.whl (58.7 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for pyfakefs-3.2.tar.gz
Algorithm Hash digest
SHA256 c0e99db909645328dd0280974885885d829cd9402293ab7d0b4b74574476855d
MD5 2034ebb4c3969bf23eb4882731dbb393
BLAKE2b-256 1a2e39cc19b30771762e4546628cdfc1190b4c3118adc66838fa97bb944f2b63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyfakefs-3.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 58.7 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.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4436cf3f02695a1bfa07a864d07b3336e8a18a0af4262bdbd7dc49ceb72624fa
MD5 fc6844f86f09b510c465fb49490246c4
BLAKE2b-256 3f0f4cf6b3126f44231b89acd242e9b9e0ffb5f499f855b8ca990faa8c5d0abd

See more details on using hashes here.

Supported by

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