Skip to main content

A package for writing component tests with docker compose

Project description

Audentes

A package for writing component tests with docker compose

Example:

docker-compose.yml

version: '2.1'
services:
  web:
    image: nginx
    ports:
     - "80"

test.py

import audentes
import requests

system = audentes.load_system() #Defaults to docker-comose.yml
system.start()
system.wait_for_service("web")  #Waits for web service to respond with status code 200 on /

host = system.endpoint("web").host() # Now we can do some testing
response = requests.get("http://{}/".format(host))

assert response.status_code == 200 # Assert that we get the response we expect

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

audentes-0.1.9.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

audentes-0.1.9-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page