https://github.com/wirednerd/mock-decorator
Create a mock object for a Decorator
https://github.com/wirednerd/mock-decorator
decorator mock python python3 test testing
Last synced: 3 months ago
JSON representation
Create a mock object for a Decorator
- Host: GitHub
- URL: https://github.com/wirednerd/mock-decorator
- Owner: WiredNerd
- License: mit
- Created: 2024-02-04T02:52:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-10T08:49:42.000Z (almost 2 years ago)
- Last Synced: 2025-12-28T22:56:16.760Z (6 months ago)
- Topics: decorator, mock, python, python3, test, testing
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/WiredNerd/mock-decorator)
[](https://pypi.org/project/mock-decorator)
[](https://pypi.org/project/mock-decorator)
[](https://pypistats.org/packages/mock-decorator)
[](https://github.com/WiredNerd/mock-decorator/blob/main/LICENSE)
[](https://pytest-cov.readthedocs.io)
[](https://github.com/WiredNerd/mock-decorator)
[](https://pycqa.github.io/isort/)
[](https://black.readthedocs.io)
[](https://beta.ruff.rs/docs/)
[](https://snyk.io/)
# Mock Decorator
Mock Decorator simplifes the process of creating a mock for a decorator.
## Features
* Can Mock Function Decorators.
* Can Mock Class Decorators.
* Can Mock Nested Decorators.
* Can Mock Simple Decorators. - like `@my_decorator`
* Can Mock Decorators with arguments. - like `@my_decorator(1)`
* Allows you to verify which Class or Function is decorated.
* Allows you to verify arguments passed to the decorator.
## Why Use Mock Decorator?
Mocking a decorator in python is more difficult than mocking other objects. The trick is that part of the decorator code is executed at load time, and part is executed when the target function is called. [Primer on Python Decorators](https://realpython.com/primer-on-python-decorators/) is the best article I've found explaining how decorators work.
When possible, it's best to validate the presence of a decorator by validating the effect(s) of the decorator. But sometimes a mock is required.
To mock a decorator, the decorator definition must be replaced with a mock before the decorated function is loaded. [How to mock a decorator in Python](https://dev.to/stack-labs/how-to-mock-a-decorator-in-python-55jc) explains a method for creating a mock for a decorator. There are also many examples in Stack Overflow. But I find it very tedious to create a decorator mock. And tricky to figure out which method was decorated, and what arguments were passed to the decorator.
Mock Decorator is an implementation of a general purpose decorator mock. It tracks which function(s) were decorated, and which arguments were passed to the decorator.
## Installation
```
pip install mock-decorator --upgrade
```
## Usage
__Note:__ The decorator to be mocked, and the function or class being decorated must be located in different modules.
### Example Usage:
my_functions.py
```python3
from my_decorators import decorator_with_args
@my_dec(1,2)
def my_func(arg1, arg2="default"):
return f"my_func: {arg1} {arg2} done"
```
test_my_functions.py
```python3
from mock_decorator import MockDecorator
import my_decorators, my_functions
from unittest import mock
def test_my_func():
with mock.patch.object(my_decorators, "my_dec", MockDecorator()) as mock_dec: # 1
importlib.reload(my_functions) # 2
mock_dec.my_func.assert_called_once_with(1,2) # 3
```
1. Replace the decorator in its module with an instance of MockDecorator.
Template using mock from unitest:
```python3
with mock.patch.object(, "", MockDecorator()) as :
```
2. Import or Reload the module that includes the decorated function.
During the loading of the module, the MockDecorator is called to create the decorator wrapper function. At this time, the MockDecorator will add a MagicMock attribute to itself with the name of the target function. It will then call the new attribute with the arguments passed to the decorator.
3. Validate the mocked decorator was called with expected arguments.
Template:
```python3
..assert_called_once_with()
```
## Contribute
- Issue Tracker: https://github.com/WiredNerd/mock-decorator/issues
- Source Code: https://github.com/WiredNerd/mock-decorator
## Support
If you are having issues, please let us know.
I can be contacted at: pbuschmail-github@yahoo.com
Or by opening an issue: https://github.com/WiredNerd/mock-decorator/issues
## License
The project is licensed under the MIT license.