No project description provided
Project description
Yellowbox
Yellowbox makes it easy to run docker containers as part of black box tests.
Documentation: https://yellowbox.readthedocs.io/
Examples
Say you want to run a blackbox test on a service that depends on a redis server.
from yellowbox.clients import docker_client
from yellowbox.extras import RedisService
def test_black_box():
with docker_client() as docker_client, RedisService.run(docker_client) as redis:
redis_port = redis.client_port() # this the host port the redis
... # run your black box test here
# yellowbox will automatically close the service when exiting the scope
def test_black_box_with_initial_data():
# you can use the service's built-in utility functions to
# easily interoperate the service
with docker_client() as docker_client,
RedisService.run(docker_client) as redis,
redis.client() as client:
client.set("foo", "bar")
...
License
Yellowbox is registered under the MIT public license
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
yellowbox-0.7.2.tar.gz
(44.4 kB
view details)
Built Distribution
yellowbox-0.7.2-py3-none-any.whl
(57.0 kB
view details)
File details
Details for the file yellowbox-0.7.2.tar.gz
.
File metadata
- Download URL: yellowbox-0.7.2.tar.gz
- Upload date:
- Size: 44.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.12 Linux/5.13.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d40a1e462375648d33432e5095ae9e326913f1c3827db4c2b80c800730a7781 |
|
MD5 | 15a5090796210a9fa1c9f697888a3cd3 |
|
BLAKE2b-256 | ffc20e4122d7489a47419687d38bc45db0a7e4b02bb0d763dfed17bcda781105 |
File details
Details for the file yellowbox-0.7.2-py3-none-any.whl
.
File metadata
- Download URL: yellowbox-0.7.2-py3-none-any.whl
- Upload date:
- Size: 57.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.8.12 Linux/5.13.0-1023-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad29827fd54c098493acfcaef683d5d7547ee09bef3bbeba0434f661baf075b2 |
|
MD5 | a4b641d7c22822dc5b0a61ee325bd006 |
|
BLAKE2b-256 | 10951309dc3e49ca37e6b47dfb8e3c3caaababde1fc495e265fc398143ab747e |