| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
Testcontainers module for the Atlassian's LocalStack, 'a fully functional local AWS cloud stack'.
Running LocalStack as a stand-in for AWS S3 during a test:
public class SomeTest {
@Rule
public LocalStackContainer localstack = new LocalStackContainer()
.withServices(S3);
@Test
public void someTestMethod() {
AmazonS3 s3 = AmazonS3ClientBuilder
.standard()
.withEndpointConfiguration(localstack.getEndpointConfiguration(S3))
.withCredentials(localstack.getDefaultCredentialsProvider())
.build();
s3.createBucket("foo");
s3.putObject("foo", "bar", "baz");Replace VERSION with the latest version available on Maven Central.
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>localstack</artifactId>
<version>VERSION</version>
</dependency>
compile group: 'org.testcontainers', name: 'localstack', version: 'VERSION'
| Back | FazBrowse Home | New Git URL |