Skip to main content

DynamoDB fixtures for pytest

Project description

https://raw.githubusercontent.com/ClearcodeHQ/pytest-dynamodb/master/logo.png

pytest-dynamodb

Latest PyPI version Wheel Status Supported Python Versions License

Package status

Tests Coverage Status

What is this?

This is a pytest plugin, that enables you to test your code that relies on a running DynamoDB Database. It allows you to specify fixtures for DynamoDB process and client (resource in AWS boto terms).

How to use

Plugin contains two fixtures

  • dynamodb - it’s a client/resource fixture that has functional scope. After each test it drops tables in DynamoDB.

  • dynamodb_proc - session scoped fixture, that starts DynamoDB instance at it’s first use and stops at the end of the tests.

Simply include one of these fixtures into your tests fixture list.

You can also create additional dynamodb client and process fixtures if you’d need to:

from pytest_dynamodb import factories

dynamodb_my_proc = factories.dynamodb_proc(
    port=None, logsdir='/tmp', delay=True)
dynamodb_my = factories.dynamodb('dynamodb_my_proc')

Configuration

You can define your settings in three ways, it’s fixture factory argument, command line option and pytest.ini configuration option. You can pick which you prefer, but remember that these settings are handled in the following order:

  • Fixture factory argument

  • Command line option

  • Configuration option in your pytest.ini file

Configuration options

DynamoDB option

Fixture factory argument

Command line option

pytest.ini option

Default

Path to dynamodb jar file

dynamodb_dir

–dynamodb-dir

dynamodb_dir

/tmp/dynamodb

host

host

–dynamodb-host

dynamodb_host

127.0.0.1

port

port

–dynamodb-port

dynamodb_port

random

AWS Access Key

access_key

–dynamodb-aws_access_key

dynamodb_aws_access_key

access_key

AWS Secret Key

secret_key

–dynamodb-aws_secret_key

dynamodb_aws_secret_key

secret_key

AWS Region

region

–dynamodb-aws_region

dynamodb_aws_region

us-west-1

Introduce delays

delay

–dynamodb-delay

dynamodb_delay

false

Example usage:

  • pass it as an argument in your own fixture

    dynamodb_proc = factories.dynamodb_proc(
        port=8888)
  • use --dynamodb-port command line option when you run your tests

    py.test tests --dynamodb-port=8888
  • specify your port as dynamodb_port in your pytest.ini file.

    To do so, put a line like the following under the [pytest] section of your pytest.ini:

    [pytest]
    dynamodb_port = 8888

Package resources

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-dynamodb-2.2.2.tar.gz (15.2 kB view details)

Uploaded Source

Built Distribution

pytest_dynamodb-2.2.2-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file pytest-dynamodb-2.2.2.tar.gz.

File metadata

  • Download URL: pytest-dynamodb-2.2.2.tar.gz
  • Upload date:
  • Size: 15.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.2

File hashes

Hashes for pytest-dynamodb-2.2.2.tar.gz
Algorithm Hash digest
SHA256 10c3dad603395176867606e4ad43e8c9a120a1427e71d3b610515d49b7797e16
MD5 c9888a37ef8ad9a26557b18d85d4db86
BLAKE2b-256 8c85a58ea5e0b7ca94245162f2f94d5855c3a7ac006080cd2380cb7e3e17fd92

See more details on using hashes here.

File details

Details for the file pytest_dynamodb-2.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_dynamodb-2.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 45ad4cdc2d5785c444e38b7463b14365a264089d094b3fb1220e77b15480da4e
MD5 1710619d32f7526ef5442a45450e1b35
BLAKE2b-256 6617eb8e59180d2bdbd82999f3ea4fcd1d3dd2bb0dd411ef8bd721b77ea1cca2

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