-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54c3548
commit 3f53154
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
= Cloud Native Testing: AWS Technologies | ||
|
||
This repository contains example code for AWS-based technologies and how to efficiently test them, without necessarily | ||
having access to an actual AWS environment. | ||
|
||
All examples are based on _our_ experience in different actual small and large scale projects. | ||
|
||
== Examples | ||
|
||
** link:examples/s3/[S3] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
= AWS: S3 | ||
|
||
This module demonstrates the basics of using and testing the AWS Simple Storage Service. It contains a simple service | ||
that allows you to store and fetch book cover images. You can interact with it locally through IntelliJ's | ||
link:../s3/http/S3.http[http plugin]. | ||
|
||
The module includes examples for how to: | ||
|
||
- Write a reasonable abstraction layer for the S3 sdk | ||
- Locally run an S3 instance with your application thanks to with link:https://localstack.cloud/[LocalStack] | ||
- Write tests which use a locally running S3 instead of a simple mock |