pyfakefs


Namepyfakefs JSON
Version 5.4.0 PyPI version JSON
download
home_pagehttps://github.com/pytest-dev/pyfakefs
Summarypyfakefs implements a fake file system that mocks the Python file system modules.
upload_time2024-04-07 07:13:00
maintainerJohn McGehee
docs_urlNone
authorGoogle
requires_python>=3.7
licensehttp://www.apache.org/licenses/LICENSE-2.0
keywords testing test file os shutil pathlib mocking unittest pytest fakes filesystem
VCS
bugtrack_url
requirements pytest
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pyfakefs [![PyPI version](https://badge.fury.io/py/pyfakefs.svg)](https://badge.fury.io/py/pyfakefs) [![Python version](https://img.shields.io/pypi/pyversions/pyfakefs.svg)](https://img.shields.io/pypi/pyversions/pyfakefs.svg) ![Testsuite](https://github.com/pytest-dev/pyfakefs/workflows/Testsuite/badge.svg) [![Documentation Status](https://readthedocs.org/projects/pytest-pyfakefs/badge/?version=latest)](https://pytest-pyfakefs.readthedocs.io/en/latest/?badge=latest) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pytest-dev/pyfakefs/main.svg)](https://results.pre-commit.ci/latest/github/pytest-dev/pyfakefs/main)


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 creates a new empty in-memory file system at each test start, which replaces
the real filesystem during the test. Think of pyfakefs as making a per-test temporary
directory, except for an entire file system.

There are several means to achieve this: by using
the `fs` fixture if running pytest, by using `fake_filesystem_unittest.TestCase` as a
base class if using unittest, by using a `fake_filesystem_unittest.Patcher` instance
as a context manager, or by using the `patchfs` decorator.



pyfakefs works with current versions of Linux, Windows and macOS.

## Documentation

This document provides a general overview for pyfakefs.  There is more:

* The documentation at **Read the Docs**:
  * The [Release documentation](https://pytest-pyfakefs.readthedocs.io/en/stable)
    contains usage documentation for pyfakefs and a description of the
    most relevant classes, methods and functions for the last version
    released on PyPI
  * The [Development documentation](https://pytest-pyfakefs.readthedocs.io/en/latest)
    contains the same documentation for the current main branch
  * The [Release 3.7 documentation](https://pytest-pyfakefs.readthedocs.io/en/v3.7.2/)
    contains usage documentation for the last version of pyfakefs
    supporting Python 2.7
* The [Release Notes](https://github.com/pytest-dev/pyfakefs/blob/main/CHANGES.md)
  show a list of changes in the latest versions

## Usage
The simplest method to use pyfakefs is using the `fs` fixture with `pytest`.
Refer to the
[usage documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/usage.html)
for information on other test scenarios, test customization and
using convenience functions.

## Features
Apart from automatically mocking most file-system functions, pyfakefs
provides some additional features:
- mapping files and directories from the real file system into the fake filesystem
- configuration and tracking of the file system size
- pause and resume of patching to be able to use the real file system inside a
  test step
- (limited) emulation of other OSes (Linux, macOS or Windows)
- configuration to behave as if running as a non-root user while running
  under root

## Compatibility
pyfakefs works with CPython 3.7 and above, on Linux, Windows and macOS, and
with PyPy3.

pyfakefs works with [pytest](http://doc.pytest.org) version 3.0.0 or above,
though a current version is recommended.

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. Refer to the
[documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/intro.html#limitations)
for more information about the limitations of pyfakefs.

## Development

### Continuous integration

pyfakefs is currently automatically tested on Linux, macOS and Windows, with
Python 3.7 to 3.12, and with PyPy3 on Linux, using
[GitHub Actions](https://github.com/pytest-dev/pyfakefs/actions).

### Running pyfakefs unit tests

#### On the command line
pyfakefs unit tests can be run using `pytest` (all tests) or `unittest`
(all tests except `pytest`-specific ones):

```bash
$ cd pyfakefs/
$ export PYTHONPATH=$PWD

$ python -m pytest pyfakefs
$ python -m pyfakefs.tests.all_tests
```

Similar scripts are called by `tox` and Github Actions. `tox` can be used to
run tests locally against supported python versions:

```bash
$ tox
```

#### In a Docker container

The `Dockerfile` at the repository root will run the tests on the latest
Ubuntu version.  Build the container:
```bash
cd pyfakefs/
docker build -t pyfakefs .
```
Run the unit tests in the container:
```bash
docker run -t pyfakefs
```

### Contributing to pyfakefs

We always welcome contributions to the library. Check out the
[Contributing Guide](https://github.com/pytest-dev/pyfakefs/blob/main/CONTRIBUTING.md)
for more information.

## 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 was used in over 20,000
Python tests at Google.

Google released pyfakefs to the public in 2011 as Google Code project
[pyfakefs](http://code.google.com/p/pyfakefs/):
* Fork
  [jmcgeheeiv-pyfakefs](http://code.google.com/p/jmcgeheeiv-pyfakefs/) added
  [direct support for unittest and doctest](../../wiki/Automatically-find-and-patch-file-functions-and-modules)
* Fork
  [shiffdane-jmcgeheeiv-pyfakefs](http://code.google.com/p/shiffdane-jmcgeheeiv-pyfakefs/)
  added further corrections

After the [shutdown of Google Code](http://google-opensource.blogspot.com/2015/03/farewell-to-google-code.html)
was announced, [John McGehee](https://github.com/jmcgeheeiv) merged all three Google Code projects together
[here on GitHub](https://github.com/pytest-dev/pyfakefs) where an enthusiastic community actively supports, maintains
and extends pyfakefs. In 2022, the repository has been transferred to
[pytest-dev](https://github.com/pytest-dev) to ensure continuous maintenance.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pytest-dev/pyfakefs",
    "name": "pyfakefs",
    "maintainer": "John McGehee",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "pyfakefs@johnnado.com",
    "keywords": "testing, test, file, os, shutil, pathlib, mocking, unittest, pytest, fakes, filesystem",
    "author": "Google",
    "author_email": "google-pyfakefs@google.com",
    "download_url": "https://files.pythonhosted.org/packages/07/bd/f90ac3d871b2b7f6799d8b768c768526e509e15b50821fe21943a250d417/pyfakefs-5.4.0.tar.gz",
    "platform": null,
    "description": "# pyfakefs [![PyPI version](https://badge.fury.io/py/pyfakefs.svg)](https://badge.fury.io/py/pyfakefs) [![Python version](https://img.shields.io/pypi/pyversions/pyfakefs.svg)](https://img.shields.io/pypi/pyversions/pyfakefs.svg) ![Testsuite](https://github.com/pytest-dev/pyfakefs/workflows/Testsuite/badge.svg) [![Documentation Status](https://readthedocs.org/projects/pytest-pyfakefs/badge/?version=latest)](https://pytest-pyfakefs.readthedocs.io/en/latest/?badge=latest) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/pytest-dev/pyfakefs/main.svg)](https://results.pre-commit.ci/latest/github/pytest-dev/pyfakefs/main)\n\n\npyfakefs implements a fake file system that mocks the Python file system modules.\nUsing pyfakefs, your tests operate on a fake file system in memory without\ntouching the real disk. The software under test requires no modification to\nwork with pyfakefs.\n\nPyfakefs creates a new empty in-memory file system at each test start, which replaces\nthe real filesystem during the test. Think of pyfakefs as making a per-test temporary\ndirectory, except for an entire file system.\n\nThere are several means to achieve this: by using\nthe `fs` fixture if running pytest, by using `fake_filesystem_unittest.TestCase` as a\nbase class if using unittest, by using a `fake_filesystem_unittest.Patcher` instance\nas a context manager, or by using the `patchfs` decorator.\n\n\n\npyfakefs works with current versions of Linux, Windows and macOS.\n\n## Documentation\n\nThis document provides a general overview for pyfakefs.  There is more:\n\n* The documentation at **Read the Docs**:\n  * The [Release documentation](https://pytest-pyfakefs.readthedocs.io/en/stable)\n    contains usage documentation for pyfakefs and a description of the\n    most relevant classes, methods and functions for the last version\n    released on PyPI\n  * The [Development documentation](https://pytest-pyfakefs.readthedocs.io/en/latest)\n    contains the same documentation for the current main branch\n  * The [Release 3.7 documentation](https://pytest-pyfakefs.readthedocs.io/en/v3.7.2/)\n    contains usage documentation for the last version of pyfakefs\n    supporting Python 2.7\n* The [Release Notes](https://github.com/pytest-dev/pyfakefs/blob/main/CHANGES.md)\n  show a list of changes in the latest versions\n\n## Usage\nThe simplest method to use pyfakefs is using the `fs` fixture with `pytest`.\nRefer to the\n[usage documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/usage.html)\nfor information on other test scenarios, test customization and\nusing convenience functions.\n\n## Features\nApart from automatically mocking most file-system functions, pyfakefs\nprovides some additional features:\n- mapping files and directories from the real file system into the fake filesystem\n- configuration and tracking of the file system size\n- pause and resume of patching to be able to use the real file system inside a\n  test step\n- (limited) emulation of other OSes (Linux, macOS or Windows)\n- configuration to behave as if running as a non-root user while running\n  under root\n\n## Compatibility\npyfakefs works with CPython 3.7 and above, on Linux, Windows and macOS, and\nwith PyPy3.\n\npyfakefs works with [pytest](http://doc.pytest.org) version 3.0.0 or above,\nthough a current version is recommended.\n\npyfakefs will not work with Python libraries that use C libraries to access the\nfile system. This is because pyfakefs cannot patch the underlying C libraries'\nfile access functions--the C libraries will always access the real file\nsystem. Refer to the\n[documentation](https://pytest-pyfakefs.readthedocs.io/en/latest/intro.html#limitations)\nfor more information about the limitations of pyfakefs.\n\n## Development\n\n### Continuous integration\n\npyfakefs is currently automatically tested on Linux, macOS and Windows, with\nPython 3.7 to 3.12, and with PyPy3 on Linux, using\n[GitHub Actions](https://github.com/pytest-dev/pyfakefs/actions).\n\n### Running pyfakefs unit tests\n\n#### On the command line\npyfakefs unit tests can be run using `pytest` (all tests) or `unittest`\n(all tests except `pytest`-specific ones):\n\n```bash\n$ cd pyfakefs/\n$ export PYTHONPATH=$PWD\n\n$ python -m pytest pyfakefs\n$ python -m pyfakefs.tests.all_tests\n```\n\nSimilar scripts are called by `tox` and Github Actions. `tox` can be used to\nrun tests locally against supported python versions:\n\n```bash\n$ tox\n```\n\n#### In a Docker container\n\nThe `Dockerfile` at the repository root will run the tests on the latest\nUbuntu version.  Build the container:\n```bash\ncd pyfakefs/\ndocker build -t pyfakefs .\n```\nRun the unit tests in the container:\n```bash\ndocker run -t pyfakefs\n```\n\n### Contributing to pyfakefs\n\nWe always welcome contributions to the library. Check out the\n[Contributing Guide](https://github.com/pytest-dev/pyfakefs/blob/main/CONTRIBUTING.md)\nfor more information.\n\n## History\npyfakefs.py was initially developed at Google by Mike Bland as a modest fake\nimplementation of core Python modules.  It was introduced to all of Google\nin September 2006. Since then, it has been enhanced to extend its\nfunctionality and usefulness.  At last count, pyfakefs was used in over 20,000\nPython tests at Google.\n\nGoogle released pyfakefs to the public in 2011 as Google Code project\n[pyfakefs](http://code.google.com/p/pyfakefs/):\n* Fork\n  [jmcgeheeiv-pyfakefs](http://code.google.com/p/jmcgeheeiv-pyfakefs/) added\n  [direct support for unittest and doctest](../../wiki/Automatically-find-and-patch-file-functions-and-modules)\n* Fork\n  [shiffdane-jmcgeheeiv-pyfakefs](http://code.google.com/p/shiffdane-jmcgeheeiv-pyfakefs/)\n  added further corrections\n\nAfter the [shutdown of Google Code](http://google-opensource.blogspot.com/2015/03/farewell-to-google-code.html)\nwas announced, [John McGehee](https://github.com/jmcgeheeiv) merged all three Google Code projects together\n[here on GitHub](https://github.com/pytest-dev/pyfakefs) where an enthusiastic community actively supports, maintains\nand extends pyfakefs. In 2022, the repository has been transferred to\n[pytest-dev](https://github.com/pytest-dev) to ensure continuous maintenance.\n",
    "bugtrack_url": null,
    "license": "http://www.apache.org/licenses/LICENSE-2.0",
    "summary": "pyfakefs implements a fake file system that mocks the Python file system modules.",
    "version": "5.4.0",
    "project_urls": {
        "Homepage": "https://github.com/pytest-dev/pyfakefs"
    },
    "split_keywords": [
        "testing",
        " test",
        " file",
        " os",
        " shutil",
        " pathlib",
        " mocking",
        " unittest",
        " pytest",
        " fakes",
        " filesystem"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3220e2bb9d7c33b07cd6772012d46f2dcd0fd12b2fbad6c037fdd528bd69507e",
                "md5": "107927bae33afd7c790e1e573f00dea0",
                "sha256": "96e52554621a3af7b8171f8660debb65781bcd0cb0bdddea8b12e1b7871c33f3"
            },
            "downloads": -1,
            "filename": "pyfakefs-5.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "107927bae33afd7c790e1e573f00dea0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 216387,
            "upload_time": "2024-04-07T07:12:57",
            "upload_time_iso_8601": "2024-04-07T07:12:57.965381Z",
            "url": "https://files.pythonhosted.org/packages/32/20/e2bb9d7c33b07cd6772012d46f2dcd0fd12b2fbad6c037fdd528bd69507e/pyfakefs-5.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07bdf90ac3d871b2b7f6799d8b768c768526e509e15b50821fe21943a250d417",
                "md5": "26c4b3807f1e6a38b37d0a4d513072f9",
                "sha256": "969096d84b5b986f4f84399d03f4900381a3880d03adcdbd609566a4baf39bf9"
            },
            "downloads": -1,
            "filename": "pyfakefs-5.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "26c4b3807f1e6a38b37d0a4d513072f9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 203395,
            "upload_time": "2024-04-07T07:13:00",
            "upload_time_iso_8601": "2024-04-07T07:13:00.380321Z",
            "url": "https://files.pythonhosted.org/packages/07/bd/f90ac3d871b2b7f6799d8b768c768526e509e15b50821fe21943a250d417/pyfakefs-5.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-07 07:13:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pytest-dev",
    "github_project": "pyfakefs",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pytest",
            "specs": [
                [
                    ">=",
                    "3.0.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "pyfakefs"
}
        
Elapsed time: 0.22486s