Skip to main content

The simplest possible mock library

Project description

License & Repository

MiniMock is by Ian Bicking with substantial contributions by Mike Beachy. It is licensed under an MIT-style license.

Introduction

minimock is a simple library for doing Mock objects with doctest. When using doctest, mock objects can be very simple.

Here’s an example of something we might test, a simple email sender:

>>> import smtplib
>>> def send_email(from_addr, to_addr, subject, body):
...     conn = smtplib.SMTP('localhost')
...     msg = 'To: %s\nFrom: %s\nSubject: %s\n\n%s' % (
...         to_addr, from_addr, subject, body)
...     conn.sendmail(from_addr, [to_addr], msg)
...     conn.quit()

Now we want to make a mock smtplib.SMTP object. We’ll have to inject our mock into the smtplib module:

>>> smtplib.SMTP = Mock('smtplib.SMTP')
>>> smtplib.SMTP.mock_returns = Mock('smtp_connection')

Now we do the test:

>>> send_email('ianb@colorstudy.com', 'joe@example.com',
...            'Hi there!', 'How is it going?')
Called smtplib.SMTP('localhost')
Called smtp_connection.sendmail(
    'ianb@colorstudy.com',
    ['joe@example.com'],
    'To: joe@example.com\nFrom: ianb@colorstudy.com\nSubject: Hi there!\n\nHow is it going?')
Called smtp_connection.quit()

Voila! We’ve tested implicitly that no unexpected methods were called on the object. We’ve also tested the arguments that the mock object got. We’ve provided fake return calls (for the smtplib.SMTP() constructor). These are all the core parts of a mock library. The implementation is simple because most of the work is done by doctest.

Controlling Mocks

Mock objects have several attributes, all of which you can set when instantiating the object. To avoid name collision, all the attributes start with mock_, while the constructor arguments don’t.

name:

The name of the object, used when printing out messages. In the example about it was 'smtplib.SMTP'.

returns:

When this object is called, it will return this value. By default it is None.

returns_iter:

Alternately, you can give an iterable of return results, like returns_iter=[1, 2, 3]; on each subsequent call it will return the next value.

returns_func:

If given, this will be called to get the return value. In essence, this function will be the real implementation of the method.

raises:

An exception (instance or class) that will be raised when this object is called.

So to create an object that always raises ValueError, do:

>>> dummy_module = Mock('mylibrary')
>>> dummy_module.invalid_func.raises = ValueError

Creating Mocks

Every attribute of a mock object will itself be another mock object, unless you specifically set it to something else. For instance, you can do:

>>> from minimock import Mock
>>> dummy_module = Mock('mylibrary')
>>> dummy_module.CONSTANT = 1

Then the CONSTANT value will persist. But you can also traverse to whatever object you want, and you will get another mock object.

Another technique for creating a mock object is the mock(...) function. This works like:

>>> from minimock import mock
>>> import os.path
>>> mock('os.path.isfile', returns=True)

This looks up the os.path.isfile object, and changes it to a mock object. Any keyword arguments you give (like returns=True in this example) will be used to create the mock object; you can also give a mock_obj keyword argument to pass in a mock object you’ve already created.

This function looks in the calling function to figure out what to replace (os.path.isfile in the example). You must import the proper modules first. Alternately you can pass in a dictionary like [locals(), globals()] for it to use for lookup.

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

MiniMock-0.8.tar.gz (5.7 kB view details)

Uploaded Source

Built Distributions

MiniMock-0.8-py2.5.egg (8.9 kB view details)

Uploaded Egg

MiniMock-0.8-py2.4.egg (9.1 kB view details)

Uploaded Egg

File details

Details for the file MiniMock-0.8.tar.gz.

File metadata

  • Download URL: MiniMock-0.8.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for MiniMock-0.8.tar.gz
Algorithm Hash digest
SHA256 a6b9d74500bdfa82627486388f2e48f4e57138d89e22b33329390043c3d2199a
MD5 ff96ba95eb88382c72dd00154ea52f00
BLAKE2b-256 24376aeb4231a18f4cf0c08d06b18242e5624c6dbc4d2d7b5ae79daf05f0ad3d

See more details on using hashes here.

File details

Details for the file MiniMock-0.8-py2.5.egg.

File metadata

  • Download URL: MiniMock-0.8-py2.5.egg
  • Upload date:
  • Size: 8.9 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for MiniMock-0.8-py2.5.egg
Algorithm Hash digest
SHA256 d3fdc9af3012345890dfc1b79d6012f1bca98b1e2fb7431111226c734212a1ea
MD5 f2bedae745b2247aadb1067c54df9dd1
BLAKE2b-256 8ae45560b68269d5131f08222ce3941696e941634ebe941362b4058005ed25a2

See more details on using hashes here.

File details

Details for the file MiniMock-0.8-py2.4.egg.

File metadata

  • Download URL: MiniMock-0.8-py2.4.egg
  • Upload date:
  • Size: 9.1 kB
  • Tags: Egg
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for MiniMock-0.8-py2.4.egg
Algorithm Hash digest
SHA256 939639096ce501a2fe18317e0723000e1f505e3701dd84796f3b82afea0d1798
MD5 161f396c66aefa52fa31fc902d8bf59c
BLAKE2b-256 52a4308f0fdba9b7b0ddba0dfde2acb187f8fb029a2651ba53d7d196b7b5c549

See more details on using hashes here.

Supported by

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