UNKNOWN
Project description
Description
Simple py.test fixtures for writing integration tests based on Docker containers. Specify all containers you need and pytest-docker will use Docker Compose to spin them up for the duration of your test suite.
Usage
Here is the basic recipe for writing a test that depends on a service that responds over HTTP:
import pytest
import requests
from requests.exceptions import (
ConnectionError,
)
def is_responsive(url):
"""Check if something responds to ``url``."""
try:
response = requests.get(url)
if response.status_code == 200:
return True
except ConnectionError:
return False
@pytest.fixture(scope='session')
def some_http_service(docker_ip, docker_services):
"""Ensure that "some service" is up and responsive."""
url = 'http://' % (
docker_ip,
docker_services.port_for('abc', 123),
)
docker_services.wait_until_responsive(
timeout=30.0, pause=0.1,
check=lambda: is_responsive(url)
)
return url
def test_something(some_service):
"""Sample test."""
response = requests.get(some_service)
response.raise_for_status()
By default this plugin will try to open docker-compose.yml in your tests directory. If you need to use a custom location, override the docker_compose_file fixture inside your conftest.py file:
import pytest
@pytest.fixture(scope='session')
def docker_compose_file(pytestconfig):
return os.path.join(
str(pytestconfig.rootdir),
'mycustomdir'
'docker-compose.yml'
)
You can allow this plugin to run your tests when Docker is not available. It will use the container port and localhost instead:
@pytest.fixture(scope='session')
def docker_allow_fallback():
return True
Contributing
This py.test plug-in and its source code are made available to your under and MIT license. It is safe to use in commercial and closed-source applications. Read the license for details!
Found a bug? Think a new feature would make this plug-in more practical? No one is paid to support this software, but we welcome pull requests!
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-docker-0.2.0.tar.gz.
File metadata
- Download URL: pytest-docker-0.2.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
482e6b4d16eab99f5ff329c6f00e55f74c7d49fa8c93c8ccf51b3a28c023036b
|
|
| MD5 |
4d585bd1860064dbf5a6a4ffd96762cd
|
|
| BLAKE2b-256 |
085c51b8d015163b8f7a77d8484aa9e4b9020223c11e4da6d34098c958002abe
|
File details
Details for the file pytest_docker-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pytest_docker-0.2.0-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6d3b5fd1da4dec338e7ee4f90af06709a96f028847f2009254081dbcc9e9ca2
|
|
| MD5 |
5177a6dc62ef5f72bcf182c110af05c2
|
|
| BLAKE2b-256 |
e8253cbd4f107960f64f669ca6468a16427b350f4d89845dc2d6fb8301e1b5da
|
File details
Details for the file pytest_docker-0.2.0-py2-none-any.whl.
File metadata
- Download URL: pytest_docker-0.2.0-py2-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87432575a34fc172a9c295f92ce26bf3cd523ca942c7b954b8e08050560660f1
|
|
| MD5 |
83e2a2b023c39347adbe83257c57a824
|
|
| BLAKE2b-256 |
95115469578ce107fff1a973f8262452c1c74df71157ef4f259c2a17bc044918
|