Skip to main content

Run, manage and stop Docker Compose project from Docker API

Project description

pytest-dockerc

pytest-dockerc is a plugin for pytest that provides support for running test from Docker Compose project. The docker-compose up -d command is executed at the beginning of the test session and the docker-compose down command at the end. The main fixture dockerc returns a compose.project.Project to deal with the python docker API in your tests. Another fixture dockerc_logs is provided to enable the logs on stdout during your tests execution.

This plugin provides a way to use as far as possible the same environment for development, test, integration and production phases. You test and deploy the same artifact in order to avoid side effects in production.

Install

pip install pytest-dockerc

Getting started

Below a basic example, you can also refer to a full example with an http server.

worktree

├── docker-compose.yml
└── tests
    ├── conftest.py
    └── test_example.py

docker-compose.yml

version: "3.6"

services:
  python:
    image: python:3-alpine

test_example.py

def test_example(dockerc):
    assert len(dockerc.containers()) == 1
    container = dockerc.containers()[0]
    assert container.is_running is True
    assert container.labels["com.docker.compose.service"] == "python"

Available options

Some options are available to update the default behavior of the plugin.

dockerc:
  --dockerc-norun       disable the run and stop commands of docker-compose
  --dockerc-attach-network
                        attach the pytest container to the docker-compose
                        network,only if pytest is started inside a container
  --dockerc-filepath=DOCKERC_FILEPATH
                        set the Compose file path
  --dockerc-projectdir=DOCKERC_PROJECTDIR
                        set the working directory of the Compose project
  --dockerc-projectname=DOCKERC_PROJECTNAME
                        set project name of the Compose project
  --dockerc-build       build images before starting containers
  --dockerc-services=DOCKERC_SERVICES
                        select services to run

Run tests without up and down command of docker-compose

Running the full docker-compose project can take time, if you loads several services. It is useful to run the test on a running instance. That method is recommended when you write a new test.

First start your docker compose like usual:

docker-compose up

Then run your tests with the --dockerc-norun, that will skip the up and down command:

pytest --dockerc-norun

Below the docker-compose output after 2 runs of the test tests/test_fixtures::test_basic_workflow, which performs a GET request.

Creating network "pytest-dockerc_default" with the default driver
Creating pytest-dockerc_http_1 ... done
Attaching to pytest-dockerc_http_1
http_1  | 192.168.32.1 - - [24/Dec/2018:08:48:21 +0000] "GET / HTTP/1.1" 200 612 "-" "python-requests/2.20.0" "-"
http_1  | 192.168.32.1 - - [24/Dec/2018:08:48:22 +0000] "GET / HTTP/1.1" 200 612 "-" "python-requests/2.20.0" "-"

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

pytest-dockerc-1.0.8.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_dockerc-1.0.8-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-dockerc-1.0.8.tar.gz.

File metadata

  • Download URL: pytest-dockerc-1.0.8.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for pytest-dockerc-1.0.8.tar.gz
Algorithm Hash digest
SHA256 c6273e244175a4394683a06ef060d0ba5e85e1c88b779776f11f767ed9f9f1b0
MD5 8312e5c7c7fae95e3f3729fb703a3190
BLAKE2b-256 57654745bf952b23d9a20bce36ab7d711c0457a637fa14a55cdfaac8c6f48dc2

See more details on using hashes here.

File details

Details for the file pytest_dockerc-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: pytest_dockerc-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.6

File hashes

Hashes for pytest_dockerc-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 f03405384db981e30ad6f391337f210903c9e37818cf14a68af0d4064c91bcf4
MD5 80cf658623a1d7c1b78dfb357880f928
BLAKE2b-256 c7fae54b00bf7ac8010114229e89eee1b4b93515d90996e4724ece5081310f45

See more details on using hashes here.

Supported by

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