【发布时间】:2025-11-30 17:35:01
【问题描述】:
我确实针对 AWS Dynamo DB 运行了一些测试。我得到了一些集成测试,我需要加快它们的速度。 SetupTableAsync 需要大约 10 秒,并且代码在我的构造函数中,因此它在每个实例/测试上运行。 是否可以在每次测试中使用相同的 IAmazonDynamoDB 实例?
private string TableName { get; }
IAmazonDynamoDB DDBClient { get; }
public FunctionTest()
{
this.TableName = "Table-" + DateTime.Now.Ticks;
this.DDBClient = new AmazonDynamoDBClient(RegionEndpoint.EUWest1);
SetupTableAsync().Wait();
}
//... some tests
private async Task SetupTableAsync()
{
var request = new CreateTableRequest
{
TableName = this.TableName,
ProvisionedThroughput = new ProvisionedThroughput
{
ReadCapacityUnits = 2,
WriteCapacityUnits = 2
},
KeySchema = new List<KeySchemaElement>
{
new KeySchemaElement
{
KeyType = KeyType.HASH,
AttributeName = UserFunctions.ID_QUERY_STRING_NAME
}
},
AttributeDefinitions = new List<AttributeDefinition>
{
new AttributeDefinition
{
AttributeName = UserFunctions.ID_QUERY_STRING_NAME,
AttributeType = ScalarAttributeType.S
}
}
};
await this.DDBClient.CreateTableAsync(request);
var describeRequest = new DescribeTableRequest { TableName = this.TableName };
DescribeTableResponse response = null;
do
{
Thread.Sleep(1000);
response = await this.DDBClient.DescribeTableAsync(describeRequest);
} while (response.Table.TableStatus != TableStatus.ACTIVE);
}
此代码来自 Visual Studio 中的“带有测试的 AWS 无服务器应用程序”模板。
【问题讨论】:
-
您可能还想查看 int DynamoDB Local (docs.aws.amazon.com/amazondynamodb/latest/developerguide/…)。
-
如果您不模拟 DynamoDB,就不能称其为“单元测试”。
标签: amazon-web-services asp.net-core amazon-dynamodb xunit serverless-framework