Skip to main content

GCS fixtures and fixture factories for Pytest.

Project description

Pytest GCS

This is a pytest plugin in similar vein to pytest-postgres and pytest-kafka.

This would have been much more painful without Mirakuru and fake-gcs-server; this is a simple wrapper around those tools.

Installation

This tool requires you to have a copy of the fake-gcs-server binary somewhere on your path. Depending upon your architecture you'll need a different version of the tool.

wget https://github.com/fsouza/fake-gcs-server/releases/download/v1.47.8/fake-gcs-server_1.47.8_Linux_amd64.tar.gz
tar -xvf fake-gcs-server_1.47.8_Linux_amd64.tar.gz
mv fake-gcs-server /usr/local/bin

To install this library:

pip install pytest-gcs

Demo

# conftest.py
from pytest_gcs.factories import client as gcs_client
from pytest_gcs.factories import proc as gcs_process

# Create a process and a local client that targets that process.
gcs_proc = gcs_process.gcs_proc()
gcslocal = gcs_client.gcslocal("gcs_proc")

# tests/test_gcs.py
from google.cloud import storage
from pytest_gcs.executor.process import GCSExecutor


def test_can_create_gcs_bucket(gcs_proc: GCSExecutor, gcslocal: storage.Client) -> None:
    """MVP to ensure everything works."""
    bucket = "test_base"
    gcslocal.create_bucket(bucket)
    buckets = [x.name for x in gcslocal.list_buckets()]

    assert bucket in buckets

Contributing

PRs are accepted.

# Install the dependencies with:
pip install .[test]
# Install pre-commit hooks.
pre-commit install
# Validate everything passes.
pre-commit run --all
# Run the tests.
pytest tests/

TODOs

  • Implement the events outputs, -event.bucket, -event.list, etc.

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-gcs-0.0.2.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

pytest_gcs-0.0.2-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest-gcs-0.0.2.tar.gz.

File metadata

  • Download URL: pytest-gcs-0.0.2.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for pytest-gcs-0.0.2.tar.gz
Algorithm Hash digest
SHA256 916ac60b7c726486133c10c9c4d73b5e7ea1f7819ac82eaaeb41896f7183724f
MD5 cf79fbbbaf4c524c5f0cebb0b9c453cc
BLAKE2b-256 f4964e9087696ac0e0d0aa1b54603cb549cd894c733f10a440b9856b970aefc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pytest_gcs-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 8.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for pytest_gcs-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 709f8609b8e48d124ea6abdc72c4977661bcd0fd3a72de4dd17d2441a13e64e9
MD5 1fa0fc0b2363911a2107b32e56584949
BLAKE2b-256 e8c298945bc9e8807260a68c7bdb94ae6e1968da1ab923988b6bf75f8bb0ddb1

See more details on using hashes here.

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