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, DynamoDB | Java |
API Gateway, Lambda, DynamoDB | .NET |
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. |
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. |
Partner | System Under Test | Language | Description |
---|---|---|---|
Datadog | API Gateway, Lambda, SQS, SNS | TypeScript | This example is about creating Synthetic Tests and Monitors with Datadog. |
See our Contributing guide for more detail providing additions, enhancements, and edits.