Skip to main content

Create a mock object for a Decorator

Project description

Homepage python 3.9 - 3.12 PyPI - Version PyPI - Downloads PyPI - License

Code Coverage Mutation Coverage

Imports: isort Code Style: black Linter: ruff Snyk Security

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 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 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

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

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:

    with mock.patch.object(<decorator module>, "<decorator name>", MockDecorator()) as <mock_name>:
    
  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: <mock_name>.<decorated function name>.assert_called_once_with(<decorator args>)

Contribute

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.

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

mock-decorator-1.0.0.tar.gz (9.7 kB view hashes)

Uploaded Source

Built Distribution

mock_decorator-1.0.0-py3-none-any.whl (6.4 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