gpt4 book ai didi

python - 如何模拟 AWS DynamoDB 服务?

转载 作者:太空狗 更新时间:2023-10-30 00:47:34 24 4
gpt4 key购买 nike

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

最佳答案

您可以使用 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")

关于python - 如何模拟 AWS DynamoDB 服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48711004/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com