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.8.8.tar.gz
(49.8 kB
view details)
Built Distribution
yellowbox-0.8.8-py3-none-any.whl
(63.3 kB
view details)
File details
Details for the file yellowbox-0.8.8.tar.gz
.
File metadata
- Download URL: yellowbox-0.8.8.tar.gz
- Upload date:
- Size: 49.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.18 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d54ee0bf7bc86ffef4231d858a6379ba489e3bc41463012b3c049e15e5f695b |
|
MD5 | 53b23129fa5dde8ffbac36df25c42409 |
|
BLAKE2b-256 | 8252139452a462cb4782917103d40eb90fcf1ac61b42fcd94f00fc14de4d0e82 |
File details
Details for the file yellowbox-0.8.8-py3-none-any.whl
.
File metadata
- Download URL: yellowbox-0.8.8-py3-none-any.whl
- Upload date:
- Size: 63.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.8.18 Linux/6.5.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7e01daa0ae9cdc61d237888158a0ed32eb9267b7282d920e8017f2d4d7335fc |
|
MD5 | 50cf66d5da9a90f81f5376f54e95527c |
|
BLAKE2b-256 | a5754842862a5135efb693cb8016643dbb0522a9a109f8947d0564b3e44e4096 |