https://github.com/dbfixtures/pytest-dynamodb
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).
https://github.com/dbfixtures/pytest-dynamodb
dynamodb pytest pytest-plugin python
Last synced: 11 months ago
JSON representation
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).
- Host: GitHub
- URL: https://github.com/dbfixtures/pytest-dynamodb
- Owner: dbfixtures
- License: lgpl-3.0
- Created: 2016-10-17T20:20:33.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-07-07T11:39:54.000Z (12 months ago)
- Last Synced: 2025-07-07T12:41:02.636Z (12 months ago)
- Topics: dynamodb, pytest, pytest-plugin, python
- Language: Python
- Homepage: https://pypi.python.org/pypi/pytest-dynamodb/
- Size: 2.02 MB
- Stars: 19
- Watchers: 8
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- Contributing: CONTRIBUTING.rst
- License: COPYING
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
.. image:: https://raw.githubusercontent.com/dbfixtures/pytest-dynamodb/master/logo.png
:width: 100px
:height: 100px
pytest-dynamodb
===============
.. image:: https://img.shields.io/pypi/v/pytest-dynamodb.svg
:target: https://pypi.python.org/pypi/pytest-dynamodb/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/wheel/pytest-dynamodb.svg
:target: https://pypi.python.org/pypi/pytest-dynamodb/
:alt: Wheel Status
.. image:: https://img.shields.io/pypi/pyversions/pytest-dynamodb.svg
:target: https://pypi.python.org/pypi/pytest-dynamodb/
:alt: Supported Python Versions
.. image:: https://img.shields.io/pypi/l/pytest-dynamodb.svg
:target: https://pypi.python.org/pypi/pytest-dynamodb/
:alt: License
Package status
--------------
.. image:: https://travis-ci.org/dbfixtures/pytest-dynamodb.svg?branch=v2.5.1
:target: https://travis-ci.org/dbfixtures/pytest-dynamodb
:alt: Tests
.. image:: https://coveralls.io/repos/dbfixtures/pytest-dynamodb/badge.png?branch=v2.5.1
:target: https://coveralls.io/r/dbfixtures/pytest-dynamodb?branch=v2.5.1
:alt: 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
==========
.. warning::
Please download the `DynamoDB database locally `_.
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.
* **dynamodb_noproc** - session scoped fixture, that's used to connect to dynamodb mained externally (like docker).
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:
.. code-block:: python
from pytest_dynamodb import factories
dynamodb_my_proc = factories.dynamodb_proc(
port=None, logsdir='/tmp', delay=True)
dynamodb_my = factories.dynamodb('dynamodb_my_proc')
.. note::
Each DynamoDB process fixture can be configured in a different way than the others through the fixture factory arguments.
.. code-block:: python
from pytest_dynamodb import factories
dynamodb_my_noproc = factories.dynamodb_noproc(
host="dynamodb", port=8088)
dynamodb_my = factories.dynamodb('dynamodb_my_noproc')
.. note::
Each DynamoDB process fixture can be configured in a different way than the others through the fixture factory arguments.
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``
.. list-table:: Configuration options
:header-rows: 1
* - 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
- fakeMyKeyId
* - AWS Secret Key
- secret_key
- --dynamodb-aws_secret_key
- dynamodb_aws_secret_key
- fakeSecretAccessKey
* - 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
.. code-block:: python
dynamodb_proc = factories.dynamodb_proc(
port=8888)
* use ``--dynamodb-port`` command line option when you run your tests
.. code-block::
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``:
.. code-block:: ini
[pytest]
dynamodb_port = 8888
Package resources
-----------------
* Bug tracker: https://github.com/dbfixtures/pytest-dynamodb/issues