Skip to main content

Mocking framework Python with *exact* Scenarios

Project description

TESTIX

Testix is a Mocking framework for Python, meant to be used with pytest.

MIT license GitHub release

Testix is special because it allows you to specify what your mock objects do, and it then enforces your specifications automatically. It also reduces (albeit not entirely) mock setup. Other frameworks usually have a flow like this:

  • setup mock
  • let code do something with mock
  • assert mock used in correct way

Testix flow is a bit different

  • setup mock objects (sock in the following example)
  • specify exactly what should happen to them using a Scenario context

TOC

Documentation

Read the full docs at readthedocs

Small Example

Here's a small example:

    # create your object under test, pass in some mock objects
    # in production, Chatbot will receive and actual socket object
    # here we want to test what it does with the socket it receives
    # and we do not want it to actually communicate with anyone
    # to both those ends, we pass a mock, or fake, object.
    self.tested = chatbot.Chatbot(Fake('sock')) # Fake('sock') is a mock object named "sock"

    # create a Scenario context
    # inside, you specify exactly what the unit should do with the objects its handed
    with Scenario() as s:

        # we can refer here to s.sock, because there is a mock named `sock`
        s.sock.recv(4096) >> 'request text'  # unit must call sock.recv(4096).
                                             # this call will return 'request text'
        s.sock.send('response text')

        # call your unit's code
        self.tested.go()


# Scenario context ends, and verifies everything happened exactly as specified
# No more, no less

Note that you do not have to setup sock.recv or sock.send - once sock is set up, it will generate other mock objects automatically as you go along with it. Only "top level" mock objects need to be setup explicitly.

Continue reading for further examples.

Installation

With pip:

$ pip install testix

Python 3 and Legacy Python (Python 2)

Testix works with Python 3. It will not work with legacy python.

Credit Where it's due

Testix started as a re-implementation of ideas from the Voodoo-Mock unit-testing framework. Since then it has evolved some different traits though.

License

This software is available under the MIT License, see the LICENSE file.

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

If you're not sure about the file name format, learn more about wheel file names.

testix-12.1.0-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file testix-12.1.0-py3-none-any.whl.

File metadata

  • Download URL: testix-12.1.0-py3-none-any.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for testix-12.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7953d7c2ff69987f589a968f44dd6b5fe2920c81c45354df0ea9473a423f6039
MD5 3ce472d73ba379c6e29c2ad80c77bc16
BLAKE2b-256 c9d64084b78c8511bb70e0da1ef6b52dce4fc63a64a583ae166bb7ed0e64d6fc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page