A library that allows your python tests to easily mock out the recurly library
Project description
mocurly
Mocurly is a library that mocks the recurly python client so that you can easily write tests for applications that use the recurly python client.
Full documentation is available at readthedocs.
Overview
Mocurly acts as a mock backend for the recurly client, allowing you to use the recurly python client AS IS. This means that all your code that uses the recurly python client and targets recurly objects will all work as you would expect. Best of all: you can use the recurly python client to setup the test environment!
For example, suppose you had a simple function in your app that lists all the users in recurly, and counts them:
import recurly
recurly.API_KEY = 'foo'
recurly.SUBDOMAIN = 'bar'
def count_recurly_accounts():
return len(recurly.Account.all())
With mocurly, you can test the above code like so:
import recurly
recurly.API_KEY = 'foo'
recurly.SUBDOMAIN = 'bar'
from mocurly import mocurly
from count_module import count_recurly_accounts
@mocurly
def test_count_recurly_accounts():
for i in range(10):
recurly.Account(account_code=str(i)).save()
assert count_recurly_accounts() == 10
Within the decorator context, all calls to recurly are captured by mocurly, which keeps the state in memory for the duration of the context. No actual web calls are made, allowing you to test your recurly code without worrying about existing context or internet connections.
Usage
You can use mocurly as a decorator, context manager, or manually.
Decorator
@mocurly
def test_count_recurly_accounts():
for i in range(10):
recurly.Account(account_code=str(i)).save()
assert count_recurly_accounts() == 10
Context Manager
def test_count_recurly_accounts():
with mocurly():
for i in range(10):
recurly.Account(account_code=str(i)).save()
assert count_recurly_accounts() == 10
Manual
def test_count_recurly_accounts():
mocurly_ = mocurly()
mocurly_.start()
for i in range(10):
recurly.Account(account_code=str(i)).save()
assert count_recurly_accounts() == 10
mocurly_.stop()
Install
$ pip install mocurly
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
File details
Details for the file mocurly-0.2.3.tar.gz
.
File metadata
- Download URL: mocurly-0.2.3.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a90687e4d983193495d4766f205827bcca974cafd3e0c7786eed329b515df955 |
|
MD5 | 0785a21d9775749ac16dc4f9b78d0be2 |
|
BLAKE2b-256 | f5216983d37bdc9698b370523521364ba2125f24124ff97070a8fbee00f8f8db |