AWS guidance and examples for testing serverless and event driven applications.
We recommend reviewing the companion website for this repository: Serverlessland - Testing Serverless Applications.
If you'd like to jump right into code, you can begin with a starter project in your favorite language:
The repository is divided into several language directories. If you would like to browse by language, you can navigate to the main page of each language directory:
This repository contains sample code for testing a variety of different types of workloads, including API's, Event-Driven Architectures, Service Orchestration, Data Processing, and AWS Partner Patterns.
System Under Test | Language |
---|---|
API Gateway with Lambda and DynamoDB | Python |
API Gateway HTTP with CDK [External] | Python |
API Gateway HTTP with SAM [External] | Python |
API Gateway REST with SAM [External] | Python |
Api Gateway, Lambda, DynamoDB | TypeScript |
API Gateway, Lambda Authorizer, Lambda, DynamoDB [External] | Node.js |
API Gateway, Lambda, S3 | .NET |
API Gateway, Lambda, DynamoDB | .NET |
SQS, Lambda, DynamoDB | .NET |
API Gateway, Lambda, DynamoDB | Java |
AppSync, DynamoDB | Java |
Event-driven architectures (EDA) are an architecture style that uses events and asynchronous communication to loosely couple an application’s components. To learn more about several strategies for testing EDA's visit this guide at Serverlessland.com.
System Under Test | Language | Description |
---|---|---|
S3, Lambda | Python | This is a great starter project for learning how to test async EDA. |
Schemas and Contracts | TypeScript | Event driven architectures decouple producers and consumers at the infrastructure layer, but these resources may still be coupled at the application layer by the event contract. Learn how to test for breaking changes in the contract. |
S3, Lambda, DynamoDB | .NET | This example shows how to test async system by using DynamoDB during to store incoming asynchronous events during testing |
S3, Lambda, SQS | .NET | An example to how to test asynchronous workflow by long polling the queue that resulting messages are sent to. |
Pattern | Services used | Language | Description |
---|---|---|---|
Hexagonal architecture | API Gateway, Lambda, DynamoDB | .NET | Hexagonal architecture is an architectural pattern used for encapsulating domain logic and decoupling it from other implementation details, such as infrastructure or client requests. |
System Under Test | Language | Description |
---|---|---|
Step Functions [External] | Java | This project shows a technique for testing an AWS Step Functions workflow in a local desktop environment. |
System Under Test | Language | Description |
---|---|---|
Kinesis Data Stream, Lambda | TypeScript | This project shows a technique for testing a streaming data processing system. |
Kinesis Data Stream, Lambda, DynamoDB | .NET | This pattern creates an AWS Lambda function that consumes messages from an Amazon Kinesis Data Streams and dumps them to Amazon DynamoDB using SAM and .NET 6. |
Partner | System Under Test | Language | Description |
---|---|---|---|
Datadog | API Gateway, Lambda, SQS, SNS | TypeScript | This example is about creating Synthetic Tests and Monitors with Datadog. |
LaunchDarkly | Lambda, DynamoDB | TypeScript | Get started using LaunchDarkly feature flags to test new code and features with AWS Lambda. |
Testcontainers is an open source framework for providing throwaway, lightweight instances of databases, message brokers, web browsers, or just about anything that can run in a Docker container. These tests demonstrate how you can utilize this as part of your testing frameworks to startup, initialize and tear down emulated resources.
Emulation is not a replacement for testing against actual cloud resources, and integration tests will always run against deployed versions of your applications. However, the emulation of certain services like DynamoDB can provide fast feedback loops on your local machine.
System Under Test | Language | Description |
---|---|---|
API Gateway, Lambda, DynamoDB | .NET | This example demonstrates how you can simplify local testing and emulation using the TestContainers project. |
See our Contributing guide for more detail providing additions, enhancements, and edits.