如何模拟AWS DynamoDB服务?

时间:2018-02-09 17:19:24

标签: python boto3 moto

我的服务使用AWS DynamoDB作为依赖项。 我想编写单元测试,但我不知道如何模拟DynamoDB服务。有人可以帮我吗?

1 个答案:

答案 0 :(得分:6)

你可以使用moto python库来模拟aws dynamodb,

https://github.com/spulec/moto

moto使用基于python装饰器的简单系统,描述AWS服务。 这是一个例子:

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")