Skip to main content

Highly customizable and expressive mocking library for Python.

Project description

PyPI - License PyPI PyPI - Downloads codecov

Mockify

Highly customizable and expressive mocking library for Python.

About

Mockify is a library inspired by Google Mock C++ framework, but adopted to Python world.

Mockify is based on expectations that you need to record on your mocks before those are called by code you're testing. And expectations you're recording are basically assertions that must pass before test ends. Along with expectations you can also record actions the mock will execute once called. And all of these is provided by simple, expressive and easy to use API.

Here's a simple example:

from mockify.core import satisfied
from mockify.mock import Mock
from mockify.actions import Return

def func_caller(func):
    return func()

def test_func_caller():
    func_mock = Mock('greet')
    func_mock.expect_call().will_once(Return('Hello, world!'))
    with satisfied(func_mock):
        assert func_caller(func_mock) == 'Hello, world!'

Mockify allows you to:

  • Record expectations with any number of positional and/or keyword arguments,
  • Set expected call count or call count range,
  • Record action chains, allowing subsequent action can be performed on subsequent call to same mock,
  • Record repeated actions that can be executed any number of times,
  • Use matchers, allowing to match range of parameters the mock is called with instead of exact ones,
  • and more.

I hope you'll find this library useful.

Documentation

Newest documentation can be found at https://mockify.readthedocs.org/.

Source

Source code is available at https://github.com/mwiatrzyk/mockify.

License

This software is released under the terms of 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

mockify-0.14.0.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

mockify-0.14.0-py3-none-any.whl (48.2 kB view details)

Uploaded Python 3

File details

Details for the file mockify-0.14.0.tar.gz.

File metadata

  • Download URL: mockify-0.14.0.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/5.15.0-1057-aws

File hashes

Hashes for mockify-0.14.0.tar.gz
Algorithm Hash digest
SHA256 fb29101062bac981aebd0e571e37a1fac7e0796be47fe50e3a93fc879f90011d
MD5 744265f96d7ce87a494969f1437837b5
BLAKE2b-256 e2b5e1ed8644c788191be497187691b72d2c5c28885a6bb67e0d560a59c36243

See more details on using hashes here.

File details

Details for the file mockify-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: mockify-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/5.15.0-1057-aws

File hashes

Hashes for mockify-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e112bd9b58cf64d17448d63ce144f06ba8ccbce9a0ede35b0dc7d0c24f6cddaf
MD5 96a768bff5c954647c79bd8560e23d46
BLAKE2b-256 b3d9b499945b1949bdce6ae0bec30be05cba1bbfbff9a85b37ce423eebc71a90

See more details on using hashes here.

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