/serverless-test-samples

Primary LanguageC#MIT No AttributionMIT-0

test: unit test: integration .NET: 6 Java: 11 python: 3.9 typescript: 4.5.5

Serverless Test Samples

Serverless Test Samples

AWS guidance and examples for testing serverless and event driven applications.

Getting Started

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:

Language Directories

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:

Workload Types

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.

API's

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

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.

Architectural patterns

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.

Service Orchestration

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.

Data Processing

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.

AWS Partner Patterns

Partner System Under Test Language Description
Datadog API Gateway, Lambda, SQS, SNS TypeScript This example is about creating Synthetic Tests and Monitors with Datadog.

How do I contribute?

See our Contributing guide for more detail providing additions, enhancements, and edits.