13

My service uses AWS DynamoDB as dependency. I want to write unit tests, but I don't know how to mock the DynamoDB service. Could anybody help me with that?

Shay Ashkenazi
  • 467
  • 1
  • 4
  • 11
Tiantian
  • 171
  • 1
  • 1
  • 4

1 Answers1

25

You can use moto python library to mock aws dynamodb,

https://github.com/spulec/moto

moto uses a simple system based upon python decorators, describing the AWS services. Here is an example:

import unittest
import boto3
from moto import mock_dynamodb2

class TestDynamo(unittest.TestCase):

    def setUp(self):
        pass

    @mock_dynamodb2
    def test_recoverBsaleAssociation(self):
        table_name = 'test'
        dynamodb = boto3.resource('dynamodb', 'us-east-1')

        table = dynamodb.create_table(
            TableName=table_name,
            KeySchema=[
                {
                    'AttributeName': 'key',
                    'KeyType': 'HASH'
                },
            ],
            AttributeDefinitions=[
                {
                    'AttributeName': 'key',
                    'AttributeType': 'S'
                },

            ],
            ProvisionedThroughput={
                'ReadCapacityUnits': 5,
                'WriteCapacityUnits': 5
            }
        )

        item = {}
        item['key'] = 'value'

        table.put_item(Item=item)

        table = dynamodb.Table(table_name)
        response = table.get_item(
            Key={
                'key': 'value'
            }
        )
        if 'Item' in response:
            item = response['Item']

        self.assertTrue("key" in item)
        self.assertEquals(item["key"], "value")
PythonJin
  • 4,034
  • 4
  • 32
  • 40
  • 1
    Unfortunately, moto declares that it is compatible with botocore 1.12.86, so it gonna try to connect to the AWS in the newer versions. https://github.com/spulec/moto/issues/1815 – Anderson Contreira Feb 28 '21 at 03:30
  • I was about to give up on the test writing after reading this comment but thankfully the issue is fixed now. `moto==3.1.6` and `botocore==1.20.112` combination worked fine for me. – avp Apr 26 '22 at 05:19