#dynamo-db #testing #aws-sdk #cleanup

dynamodb-tools

A simple library to work with dynamodb local easy

6 releases

0.4.0 Dec 24, 2023
0.3.5 Feb 3, 2023
0.3.4 Jan 20, 2023
0.3.1 Dec 12, 2022

#774 in Development tools

38 downloads per month

MIT license

18KB
405 lines

DynamoDB tools

This crate is previously called dynamodb-tester, but I decided to rename it to dynamodb-tools, because it is not only for testing.

As AWS provided DynamoDB local, we could leverage it in the development & test environment. However, managing the dynamodb client and tables is tedious, we need to clean that up at the end of every test to not pollute other tests. This crate will help you to create tables with unique names and then tear them down after test ends (by using Drop trait if you ask).

Usage

First you need to download and run dynamodb local yourself. For example, I unzipped it in ~/bin/dynamodb_local_latest, so I can start it like this:

$ java -Djava.library.path=~/bin/dynamodb_local_latest/DynamoDBLocal_lib -jar ~/bin/dynamodb_local_latest/DynamoDBLocal.jar -inMemory -sharedDb

Feel free to make it a service so that it starts automatically when system starts.

In your test code, you could use it like this:

// first, create the LocalClient
use dynamodb_tools::DynamodbConnector;
let connector = DynamodbConnector::try_new("fixtures/config.yml").await?;
// then you could use the returned client & table_name
// to interact with dynamodb local.
let ret = connector.client
    .put_item()
    .table_name(connector.table_name().unwrap())
    .set_item(Some(item))
    .send()
    .await?;

If you want to integrate it with github action, you could use this action:

- name: Setup DynamoDB Local
  uses: rrainn/dynamodb-action@v2.0.1
  with:
  port: 8000
  cors: '*'

See build.yml for more details.

Dependencies

~19MB
~321K SLoC