A simple Python client for Mountebank
Project description
mounty
A wrapper for Mountebank REST API, can be used for existing instances or for testing in CI/CD ephemeral Mountebank instances.
Who/what is Mountebank? Mountebank is an amazing open-source stub/service virtualisation tool, see more here. It can be used as a stub service for any external dependency, it can run as proxy (recording and replaying requests), it can be used for load testing services in isolation (stub external requests, so no latency added)
Installation
$ pip install mounty
Usage examples:
Start local Mountebank instance in container:
docker pull bbyars/mountebank:2.6.0
# start the container exposing port 2525 for imposters administration and ports 4555/4556 for imposters
docker run --rm -p 2525:2525 -p 8080:8080 -p 4555:4555 -p 4556:4556 bbyars/mountebank:2.6.0 mb start
import requests
from mounty import Mountebank
from mounty.models import Imposter, Stub, RecordedRequest
# the url must contain the port on which Mountebank is listening
mountebank = Mountebank(url="http://localhost:2525")
# or, if MOUNTEBANK_URL variable is defined:
mountebank_from_env = Mountebank.from_env()
# add imposter as dict
imposter = mountebank.add_imposter(imposter={
"port": 4555,
"protocol": "http",
"stubs": [{"responses": [{"is": {"statusCode": 201}}]}],
})
# add another imposter as Imposter object
other_imposter = mountebank.add_imposter(
imposter=Imposter(
port=4556,
protocol="http",
recordRequests=True,
stubs=[Stub(responses=[{"is": {"statusCode": 201}}])],
)
)
# perform 2 requests
requests.post(url="http://localhost:4556")
requests.post(url="http://localhost:4556")
# wait for maximum 2 seconds for the imposter to contain 2 recorded requests
reqs = mountebank.wait_for_requests(port=4556, count=2, timeout=2)
# validate recorded request
assert type(reqs[0]) == RecordedRequest
Local development
You will first need to clone the repository using git and place yourself in its directory:
$ poetry install -vv
$ poetry run pytest tests/
To make sure that you don't accidentally commit code that does not follow the coding style:
$ poetry run pre-commit autoupdate
$ poetry run pre-commit install
$ poetry run pre-commit run --all-files
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mounty-1.0.2.tar.gz
.
File metadata
- Download URL: mounty-1.0.2.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1895e002b5db74814e96e519b540eed4630ac8eeeeb92800511c7ce999a0a409 |
|
MD5 | 2e03e49b61aaf367a8635e075aae9527 |
|
BLAKE2b-256 | dccff90e43fb51cdfda384d5b3a69c9a3e7cb44a7e09041fa1225fdc86072775 |
File details
Details for the file mounty-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: mounty-1.0.2-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ade3d9a0c7ee9325c0f5b6c450760f593811757c825abb788667a474f39dcf8a |
|
MD5 | a3a7e66502cabae5ebd5247732f69a33 |
|
BLAKE2b-256 | 87214b0ed479a2f277e541c2f1dacacc5dffae57997f9ef696262f81dc521964 |