pytest plugin to start docker container
Project description
pytest-docker-service
pytest-docker-service
is a pytest plugin for writing integration tests based on docker containers.
The plugin provides a fixtures factory: a configurable function to register fixtures.
The package has been developed and tested with Python 3.11, and pytest version 7.4.
Installation
Install pytest-docker-service
with pip
.
python -m pip install pytest-docker-service
Usage
You just have to create a fixture in your conftest.py
or in individual test modules, using the docker_container
helper.
Fixture is created with the scope provided through the scope
parameter.
Other parameters are wrappers around the docker-py
API (https://docker-py.readthedocs.io/en/stable/).
import requests
from pytest_docker_service import docker_container
container = docker_container(
scope="session",
image_name="kennethreitz/httpbin",
ports={"80/tcp": None},
)
def test_status_code(container):
port = container.port_map["80/tcp"]
status = 200
response = requests.get(f"http://127.0.0.1:{port}/status/{status}")
assert response.status_code == status
Of course, if you want to build your own docker image, it is possible.
Just set the build_path
parameter pointing to the directory containing the Dockerfile.
container = docker_container(
scope="session",
image_name="my-image",
build_path="path/to/dockerfile/directory",
ports={"80/tcp": None},
)
def test_status_code(container):
port = container.port_map.["5432/tcp"]
...
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
Built Distribution
File details
Details for the file pytest_docker_service-0.2.8.tar.gz
.
File metadata
- Download URL: pytest_docker_service-0.2.8.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46b5a8be72b88539b4b84b5e26e36f96da017d58d2af2375e887c5246155a025 |
|
MD5 | a5b6500126d2087ea5950ae3252f1fa1 |
|
BLAKE2b-256 | bb0ed44571ee50d4b3ac8b95504c294c315f76c7239e3353e0d5c19bf4166af1 |
File details
Details for the file pytest_docker_service-0.2.8-py3-none-any.whl
.
File metadata
- Download URL: pytest_docker_service-0.2.8-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffdd602c654d06c70be64c264930983724455b22013b90ecf2723ad90c7016e3 |
|
MD5 | b5ff1bd807a46e93f32c70bf62cdec6a |
|
BLAKE2b-256 | 89d470f6d4a2ec7483b9626018566a69543b3ca79f336072f1d90d09b133bb65 |