Skip to main content

A general purpose mock library for Python

Project description

Python Fake

🌟 Overview

This project provides a Fake class that can be used to replace any object in a test, in development environment or in any other situation where you need to replace an object with a fake one.

The tries to provide a mock implementation for any usage, including properties, items, length, iterator, return value, await value, etc so that it never fails in runtime due to a missing implementation.

On the other hand, sometimes other pieces of code expect a certain implementation and the default implementation of the Fake class is not enough. In this case, you can use the __Fake_... parameters in the constructor to provide a more specific implementation.

At the moment, it doesn't provide tools for monitoring how the object was used, but it is planned to be implemented in the future.

🔎 Sample Usage

Fakeing the picamera2 module of Raspberry Pi so that one can run the code on a non-Raspberry Pi development environment:

from fake import Fake

sys.modules['picamera2'] = Fake(
    _Fake__props={
        'Picamera2': Fake(
            _Fake__return_value=Fake(
                _Fake__props={
                    'capture_array': Fake(
                        _Fake__return_value=np.zeros((1, 1, 3), dtype=np.uint8),
                    ),
                },
            ),
        ),
    },
)

⚙️ Parameters

A Fake object can be created with the following parameters:

  • _Fake__props: A dictionary that contains the properties of the object and their respective values.
  • _Fake__items: A dictionary that contains the items of the object and their respective values.
  • _Fake__list: A list that contains the items of the object. (in case the index is a number and not listed in the __items dictionary). It also sets the length of the object if _Fake__length is not set.
  • _Fake__return_value: The return value of the object when it is called.
  • _Fake__await_value: The return value of the object when it is awaited.
  • _Fake__length: The length of the object when it is queried via the len function.
  • _Fake__iter: The iterator of the object when it is queried via the iter function.

📦 Installation

Pip

pip install python-fake

Poetry

poetry add python-fake

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

python_fake-0.2.0.tar.gz (4.9 kB view details)

Uploaded Source

Built Distribution

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

python_fake-0.2.0-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file python_fake-0.2.0.tar.gz.

File metadata

  • Download URL: python_fake-0.2.0.tar.gz
  • Upload date:
  • Size: 4.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_fake-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e5effed784f9002fe44cf469c2e96c259b583ad097ec3c5771eadba53f3cf75c
MD5 7e2e5eb408b379228bebeccc20eaa93e
BLAKE2b-256 a2b89f35885b8fae3a47ffc2726ffcb485f10346b83134a19a385d350a8bee0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_fake-0.2.0.tar.gz:

Publisher: integration_delivery.yml on sassanh/python-fake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_fake-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: python_fake-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for python_fake-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 962a6605310a8a594b6e2f4cfd81f0a29cd32f790f62f198542a46398c2480cd
MD5 efe35e8f6295391390a46ccaf72ef84b
BLAKE2b-256 e348a9de476360154b5208fb51b5f0571879e6025167e33465cd108bc7c9b1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_fake-0.2.0-py3-none-any.whl:

Publisher: integration_delivery.yml on sassanh/python-fake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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