Skip to main content

🧪 The support crew for your test bench

Project description

KloudKIT TestShed

KloudKIT TestShed is a pytest plugin that streamlines integration tests with Docker containers and Playwright—handling setup, execution, and teardown so you can focus on writing effective tests.

Features

  • Automated Docker management: Spin up and control containers from tests.
  • Playwright integration: Run browser tests in isolated Docker environments.
  • Configurable via markers & CLI: Tune environments per test or suite.
  • Automatic resource cleanup: Ensures a clean state after tests.

Installation

pip install testshed

Usage

Fixture Imports

Fixtures are located in kloudkit.testshed.fixtures and can be imported:

All fixtures at once:

from kloudkit.testshed.fixtures import *  # noqa: F403

Individual fixtures (opt-in):

from kloudkit.testshed.fixtures.docker import *  # noqa: F403
# ...

Docker container testing

TestShed provides fixtures to manage containers inside your tests.

High-level shed fixtures

Use the shed fixture for smart container management with configurable defaults:

import pytest

from kloudkit.testshed.docker import Container, HttpProbe

class MyAppContainer(Container):
  DEFAULT_USER = "app"

@pytest.fixture(scope="session")
def shed_container_defaults():
  """Override this fixture to set project-specific defaults."""

  return {
    "container_class": MyAppContainer,
    "envs": {"APP_PORT": 3000},
    "probe": HttpProbe(port=3000, endpoint="/health"),
  }

def test_my_app(shed):
  # Uses your configured defaults automatically
  assert shed.execute("whoami") == "app"

@shed_env(DEBUG="true")
def test_my_app_with_debug(shed):
  # New container with override, merged with defaults
  assert shed.execute("echo $DEBUG") == "true"
  assert shed.execute("echo $APP_PORT") == "3000"

You can also use the factory directly:

def test_custom_setup(shed_factory):
  container = shed_factory(envs={"CUSTOM_VAR": "value"})
  # ... test logic ...

Basic Docker container

For a lower-level API, use the docker_sidecar fixture to create containers:

import pytest

def test_my_docker_app(docker_sidecar):
  # Launch a simple Nginx container
  nginx = docker_sidecar("nginx:latest", publish=[(8080, 80)])

  # Execute a command inside the container
  assert "nginx version" in nginx.execute(["nginx", "-v"])

  # Access the container's IP
  print(f"Nginx container IP: {nginx.ip()}")

  # Interact with the file system
  assert "/usr/share/nginx/html" in nginx.fs.ls("/usr/share/nginx")

Configure containers with decorators

Configure containers using pytest markers/decorators:

  • @shed_config(**kwargs): Generic container args.
  • @shed_env(**envs): Environment variables.
  • @shed_volumes(*mounts): Volume mounts as (source, dest) or BaseVolume.
from kloudkit.testshed.docker import InlineVolume, RemoteVolume

@shed_env(MY_ENV_VAR="hello")
@shed_volumes(
  ("/path/to/host/data", "/app/data"),
  InlineVolume("/app/config.txt", "any content you want", mode=0o644),
  RemoteVolume("/app/remote-config.json", "https://api.example.com/config.json", mode=0o644),
)
def test_configured_docker_app(shed):
  # ... test logic ...

Playwright browser testing

Get a Playwright browser instance running in Docker via playwright_browser:

def test_example_website(playwright_browser):
  page = playwright_browser.new_page()
  page.goto("http://example.com")
  assert "Example Domain" in page.title()
  # ... more Playwright test logic ...

Command-line options

TestShed extends pytest with options to control the Docker environment:

  • --shed: Enable TestShed for the current test suite (default: disabled).
  • --shed-image IMAGE: Base image (e.g., ghcr.io/acme/app).
  • --shed-tag TAG|SHA: Image tag or digest (default: tests).
  • --shed-build-context DIR: Docker build context (default: pytest.ini directory).
  • --shed-image-policy POLICY: Image acquisition policy for building or pulling (default: pull).
  • --shed-skip-bootstrap: Skip Docker bootstrapping (useful for unit tests).

[!NOTE] When TestShed is installed globally, you must explicitly enable it per suite with --shed. This prevents it from configuring Docker in projects that don't use it.

Image Policies

The --shed-image-policy option controls how TestShed acquires Docker images:

  • pull (default): Pull image if not found locally, build as fallback.
  • build: Build only if image doesn't exist locally.
  • require: Require existing local image (fails if not found).
  • rebuild: Always rebuild the image.

Examples

# Enable TestShed for your suite
pytest --shed --shed-image my-test-image --shed-image-policy rebuild

# Run tests without TestShed (default)
pytest

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

testshed-0.0.2.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

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

testshed-0.0.2-py3-none-any.whl (25.7 kB view details)

Uploaded Python 3

File details

Details for the file testshed-0.0.2.tar.gz.

File metadata

  • Download URL: testshed-0.0.2.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for testshed-0.0.2.tar.gz
Algorithm Hash digest
SHA256 2128247c76ab494b0083161bd0d417fced68250b67cb44bd0f8a1076cdb4e932
MD5 0179c5ee3c83b4543b965aaf6dfb453f
BLAKE2b-256 fd82b8d85c8d296323f2a4bf50c26aea823baa814276d1d36ad253c33ce9b429

See more details on using hashes here.

Provenance

The following attestation bundles were made for testshed-0.0.2.tar.gz:

Publisher: publish.yaml on kloudkit/testshed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file testshed-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: testshed-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 25.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for testshed-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 fee2507df7bb1618d69e4ff6f799f8d6755dea375e93b42e231b0fc0a3fde346
MD5 d27c34b470e33aa9ff9a8fcdd4dd19d3
BLAKE2b-256 3d6773fc2a4aeaea6c489e264f4700fcef78803f7747c591c6f837dcae7bd54a

See more details on using hashes here.

Provenance

The following attestation bundles were made for testshed-0.0.2-py3-none-any.whl:

Publisher: publish.yaml on kloudkit/testshed

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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