Skip to main content

BigQuery fixtures and fixture factories for Pytest.

Project description

Pytest BQ

This is a pytest plugin in similar vein to pytest-postgres and pytest-kafka. It runs a local version of bigquery that you can use throughout your test suite.

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

Installation

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

wget https://github.com/goccy/bigquery-emulator/releases/download/v0.6.1/bigquery-emulator-linux-amd64
mv bigquery-emulator-linux-amd64 /usr/local/bin/bigquery-emulator

To install this library:

pip install pytest-bq

Demo

# conftest.py
from pytest_bq.factories import client as bq_client
from pytest_bq.factories import proc as bq_process

# Create a process and a local client that targets that process.
bq_proc = bq_process.bq_proc(executable='/usr/local/bin/bigquery-emulator', project_id='test')
bqlocal = bq_client.bqlocal("bq_proc")

# tests/test_bq.py
from google.cloud import bigquery
from pytest_bq.executor.process import BQExecutor


def test_can_list_datasets(bq_proc: BQExecutor, bqlocal: bigquery.Client) -> None:
    """MVP to ensure everything works."""
    test_dataset = "test_base"
    bqlocal.create_dataset(test_dataset)
    datasets = [x.full_dataset_id for x in bqlocal.list_datasets()]

    assert test_dataset in datasets

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

  • Validate data_from_yaml files.
  • Tools for dummy data generation.

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_bq-0.0.4.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

pytest_bq-0.0.4-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest_bq-0.0.4.tar.gz.

File metadata

  • Download URL: pytest_bq-0.0.4.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for pytest_bq-0.0.4.tar.gz
Algorithm Hash digest
SHA256 c1bc378f75474dc3b35c6808b1151415a257848116c5a4c85f4a4c7305aab6f9
MD5 7692f366357e4e94405fa8bea75db74b
BLAKE2b-256 d59bc8062bcc61c35fb2b4bade04a127986929766436447c3b24cf2d44ec212b

See more details on using hashes here.

File details

Details for the file pytest_bq-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: pytest_bq-0.0.4-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.19

File hashes

Hashes for pytest_bq-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0182e9ad7719d971c22aaa1f6cefc418e2a84c6eb836bfc11ca480341f59320d
MD5 cff6b5adbf84fd761c803f6d2ac93698
BLAKE2b-256 c89abe6ce7015d69c8e7bd3d25f024d476eaa8c78ad8814414d4a571ee3ef9ec

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