Skip to main content

Mock library using python decorators

Project description

# Python decorators for mocking

This module contains a set of decorators that allow to mock functions. (Replacing the behavior of a method, attribute, object or class)

## Requisites

This module has been created using python 3.4 and tested in python 2.7, 3.4 and 3,5. This should works in python 2.7 and higher. If you want to know if this module works
in a concrete python version, download the project and execute:

`make test PYTHON_VERSION=2.6`

you can replace 2.6 for the version as you want to test. Note that you must be installed this version.

## Change log:

**1.0**:

* Created the mocks, documentation.

**1.0.1**:

* Revise compatibility of ClassMock in python 2.7
* Update with coverage report


## Installation

This module can be installed using the following command
* master: `pip install git+git://github.com/ansible/ansible.git (for master version)`
* For the last stable version, visit [here](https://github.com/fhuertas/mock_decorators/releases) and download it. Then execute `pip install <downloaded_package>`

## Usage

The tests contain examples to use this library but here there are the more useful examples:

### FunctionMock

This mock replace a function for other. [Example](https://github.com/fhuertas/mock_decorators/blob/v1.0.3/tests/mock_decorators/test_function_mock.py#L18)

The parameters are the following:

* **entity+*: The module, class or object that you can replace the function.
* **function_name**: The name string of the function to replace.
* **mocked_function**: The function that you can use.
* **check_signature**: (*optional, true by default*) Check if the signature of the original function and the mocked mock function is the same

### FunctionMockResult

This mock replace a function for a result value. [Example](https://github.com/fhuertas/mock_decorators/blob/v1.0.3/tests/mock_decorators/test_function_mock.py#L114)

The parameters are the following:

* **entity**: The module, class or object that you can replace the function.
* **function_name**: The name string of the function to replace.
* **result**: The result of the mocked function
* **checkExists**: (*optional, True by default*): Check if the original function exists

### FunctionMockChangeResult

This mock modify the result of a function. i.e. if Add 2 to a result of a function.
[Example](https://github.com/fhuertas/mock_decorators/blob/v1.0.3/tests/mock_decorators/test_function_mock.py#L18)

The parameters are the following:
* **entity**: The module, class or object where the function is.
* **function_name**: The function where you can modify the result
* **fn**: The function to apply to the original function

## AttributeMock

This mock change the value of a attribute for other. [Example](https://github.com/fhuertas/mock_decorators/blob/v1.0.3/tests/mock_decorators/test_attribute_mock.py#L8)

The parameters are the following:

* **entity**: The module, class or object that you can replace the attribute.
* **attribute_name**: The name of the attribute
* **value**: New value


## ClassMock

This mock only work in python 3 and higher. This mock replace a class or object by other. [Example](https://github.com/fhuertas/mock_decorators/blob/v1.0.3/tests/mock_decorators/test_class_mock.py#L24)

The parameters are the following
* **old_class_name**: The original object/class that you can replace
* **new_class**: The new object/class

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

mock_decorators-1.0.3-py3-none-any.whl (7.5 kB view hashes)

Uploaded Python 3

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