Documentation ¶
Overview ¶
Package dynamodbiface provides an interface to enable mocking the Amazon DynamoDB service client for testing your code.
It is important to note that this interface will have breaking changes when the service model is updated and adds new API operations, paginators, and waiters.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DynamoDBAPI ¶
type DynamoDBAPI interface { BatchGetItemRequest(*dynamodb.BatchGetItemInput) dynamodb.BatchGetItemRequest BatchGetItemPages(*dynamodb.BatchGetItemInput, func(*dynamodb.BatchGetItemOutput, bool) bool) error BatchGetItemPagesWithContext(aws.Context, *dynamodb.BatchGetItemInput, func(*dynamodb.BatchGetItemOutput, bool) bool, ...aws.Option) error BatchWriteItemRequest(*dynamodb.BatchWriteItemInput) dynamodb.BatchWriteItemRequest CreateTableRequest(*dynamodb.CreateTableInput) dynamodb.CreateTableRequest DeleteItemRequest(*dynamodb.DeleteItemInput) dynamodb.DeleteItemRequest DeleteTableRequest(*dynamodb.DeleteTableInput) dynamodb.DeleteTableRequest DescribeLimitsRequest(*dynamodb.DescribeLimitsInput) dynamodb.DescribeLimitsRequest DescribeTableRequest(*dynamodb.DescribeTableInput) dynamodb.DescribeTableRequest DescribeTimeToLiveRequest(*dynamodb.DescribeTimeToLiveInput) dynamodb.DescribeTimeToLiveRequest GetItemRequest(*dynamodb.GetItemInput) dynamodb.GetItemRequest ListTablesRequest(*dynamodb.ListTablesInput) dynamodb.ListTablesRequest ListTablesPages(*dynamodb.ListTablesInput, func(*dynamodb.ListTablesOutput, bool) bool) error ListTablesPagesWithContext(aws.Context, *dynamodb.ListTablesInput, func(*dynamodb.ListTablesOutput, bool) bool, ...aws.Option) error ListTagsOfResourceRequest(*dynamodb.ListTagsOfResourceInput) dynamodb.ListTagsOfResourceRequest PutItemRequest(*dynamodb.PutItemInput) dynamodb.PutItemRequest QueryRequest(*dynamodb.QueryInput) dynamodb.QueryRequest QueryPages(*dynamodb.QueryInput, func(*dynamodb.QueryOutput, bool) bool) error QueryPagesWithContext(aws.Context, *dynamodb.QueryInput, func(*dynamodb.QueryOutput, bool) bool, ...aws.Option) error ScanRequest(*dynamodb.ScanInput) dynamodb.ScanRequest ScanPages(*dynamodb.ScanInput, func(*dynamodb.ScanOutput, bool) bool) error ScanPagesWithContext(aws.Context, *dynamodb.ScanInput, func(*dynamodb.ScanOutput, bool) bool, ...aws.Option) error TagResourceRequest(*dynamodb.TagResourceInput) dynamodb.TagResourceRequest UntagResourceRequest(*dynamodb.UntagResourceInput) dynamodb.UntagResourceRequest UpdateItemRequest(*dynamodb.UpdateItemInput) dynamodb.UpdateItemRequest UpdateTableRequest(*dynamodb.UpdateTableInput) dynamodb.UpdateTableRequest UpdateTimeToLiveRequest(*dynamodb.UpdateTimeToLiveInput) dynamodb.UpdateTimeToLiveRequest WaitUntilTableExists(*dynamodb.DescribeTableInput) error WaitUntilTableExistsWithContext(aws.Context, *dynamodb.DescribeTableInput, ...aws.WaiterOption) error WaitUntilTableNotExists(*dynamodb.DescribeTableInput) error WaitUntilTableNotExistsWithContext(aws.Context, *dynamodb.DescribeTableInput, ...aws.WaiterOption) error }
DynamoDBAPI provides an interface to enable mocking the dynamodb.DynamoDB service client's API operation, paginators, and waiters. This make unit testing your code that calls out to the SDK's service client's calls easier.
The best way to use this interface is so the SDK's service client's calls can be stubbed out for unit testing your code with the SDK without needing to inject custom request handlers into the SDK's request pipeline.
// myFunc uses an SDK service client to make a request to // Amazon DynamoDB. func myFunc(svc dynamodbiface.DynamoDBAPI) bool { // Make svc.BatchGetItem request } func main() { cfg, err := external.LoadDefaultAWSConfig() if err != nil { panic("failed to load config, " + err.Error()) } svc := dynamodb.New(cfg) myFunc(svc) }
In your _test.go file:
// Define a mock struct to be used in your unit tests of myFunc. type mockDynamoDBClient struct { dynamodbiface.DynamoDBAPI } func (m *mockDynamoDBClient) BatchGetItem(input *dynamodb.BatchGetItemInput) (*dynamodb.BatchGetItemOutput, error) { // mock response/functionality } func TestMyFunc(t *testing.T) { // Setup Test mockSvc := &mockDynamoDBClient{} myfunc(mockSvc) // Verify myFunc's functionality }
It is important to note that this interface will have breaking changes when the service model is updated and adds new API operations, paginators, and waiters. Its suggested to use the pattern above for testing, or using tooling to generate mocks to satisfy the interfaces.