localstack-java-utils icon indicating copy to clipboard operation
localstack-java-utils copied to clipboard

☕ Java utilities and JUnit integration for LocalStack

Results 17 localstack-java-utils issues
Sort by recently updated
recently updated
newest added
trafficstars

I am using `0.2.15` version of the utils. The docker starts up without any issue, but the s3 client can not resolve the url.. here is the config I have:...

To test our opensearch cluster functionality we have many Junit 5 tests using localstack-utils annotations as below. ``` @ExtendWith(LocalstackDockerExtension.class) @LocalstackDockerProperties(portEdge = "3000", portElasticSearch = "3100", services = { ServiceName.S3, ServiceName.ELASTICSEARCH_SERVICE...

Problem occurred while developing on Mac with M1 chip. Maven `pom.xml` dependency sample to reproduce the problem: ``` org.testcontainers testcontainers 1.17.6 test org.testcontainers junit-jupiter 1.17.6 test cloud.localstack localstack-utils 0.2.21 test...

…ing tests with more than one Localstack container on the same machine, to avoid port allocation issues.

PR to add tests showing the bug raised on localstack repo https://github.com/localstack/localstack/issues/3645

This comes from https://github.com/localstack/localstack/issues/3588, I have missed tests over there and I have added these to fix this up. Please merge after https://github.com/localstack/localstack/pull/3643 is merged, otherwise tests will fail.

The current JUnit annotation requires a Docker executable to be available for pulling & running the `localstack/localstack` image. This tends to work fine on a developer's local machine and possibly...