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.5.tar.gz
(45.4 kB
view details)
Built Distribution
yellowbox-0.7.5-py3-none-any.whl
(58.7 kB
view details)
File details
Details for the file yellowbox-0.7.5.tar.gz
.
File metadata
- Download URL: yellowbox-0.7.5.tar.gz
- Upload date:
- Size: 45.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.8.14 Linux/5.15.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ac9b0606afcf72be06493e16c4dd438f2f7980a6e1e05f83662b8d5498bcca7 |
|
MD5 | 6d291cd98c7b7da9d9c90d227c193943 |
|
BLAKE2b-256 | b0c8dcde4bf906b02780c8f2db7a97321e168e08123f7a656be494d406c73397 |
File details
Details for the file yellowbox-0.7.5-py3-none-any.whl
.
File metadata
- Download URL: yellowbox-0.7.5-py3-none-any.whl
- Upload date:
- Size: 58.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.15 CPython/3.8.14 Linux/5.15.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38f1d459cc188a103933d16de8166b97946841e6346207687969a568dc00faa5 |
|
MD5 | 4985ffe5d30eadff86c3154d9a470b61 |
|
BLAKE2b-256 | 8dca9784cef8d62e548fedb3fbdae241fabd40d59805c9a92039e7498d515038 |