Skip to main content

Mocking library for Python inspired by Google Mock C++ mocking toolkit

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://gitlab.com/zef1r/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.13.1.tar.gz (90.7 kB view details)

Uploaded Source

Built Distribution

mockify-0.13.1-py3-none-any.whl (49.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mockify-0.13.1.tar.gz
  • Upload date:
  • Size: 90.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for mockify-0.13.1.tar.gz
Algorithm Hash digest
SHA256 b1a944f509ce67bc67342564fa6250a5909f4343765c4032337a0fc9384dc940
MD5 f80109e31ba5501944f4afde131e5b0c
BLAKE2b-256 0b55ee6e816d09f4a640cfa5786de03cac49685b9b2d5ec604649a607c2f1717

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: mockify-0.13.1-py3-none-any.whl
  • Upload date:
  • Size: 49.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for mockify-0.13.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eb907374e8abc6b7a9bb1312313f078bc772fe4b34e8be799c0d869db6980232
MD5 c956f803194c05d7c42a59653dc0c1eb
BLAKE2b-256 cfde7b37f53b46b053a2c231c4ce3327913b4c0202bce281cb0e09563b99b12e

See more details on using hashes here.

Provenance

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