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

Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.2.0 to 1.2.13. Commits 2648b9e prepare release 1.2.13 bb09515 fix CVE-2023-6378 4573294 start work on 1.2.13-SNAPSHOT a388193 Merge branch 'branch_1.2.x' of github.com:qos-ch/logback into branch_1.2.x de44dc4 prepare release...

dependencies

I try to make a simple e2e test (Java + Spring Framework) which check our API by stopping Localstack instance, sending message to broker instance and finally asserting HTTP error...

should-be-fixed

### Is there an existing issue for this? - [x] I have searched the existing issues ### Current Behavior Unfortunately, the issue exists in the current docker build ``` localstack.services.awslambda.lambda_executors.InvocationException:...

From my understanding, it was introduced in https://github.com/localstack/localstack-java-utils/commit/7e8c8228e85fada76554bc7473679e4da76ab472. Not sure what was the idea, but I guess maven compiler plugin `excludes` couldn't exclude awssdkv1 and awssdkv2 simultaneously :slightly_smiling_face:

Sorry in case this is a trivial question but I'm looking for a way to specify default configuration for `LocalstackDockerProperties` annotation, which I'm reusing in multiple test classes. Is there...

In my test, I only use S3 service, with this annotation: `@ExtendWith(LocalstackDockerExtension.class) @LocalstackDockerProperties( portEdge = "4577", services = {"s3"}, hostNameResolver = HostResolver.class)` I configured the edge port because I have...

The TestUtils class in the awssdkv2 package only has async clients; however, the TestUtils in the deprecated package has sync clients. Is there some historic context/reason why the sync ones...

enhancement
pr-requested

I recently tried to run a Java Lambda that consumes a DynamodbEvent on localstack. My lambda was never called because of 2021-03-25T17:46:47:INFO:localstack.services.awslambda.lambda_api: Error executing Lambda function arn:aws:lambda:us-east-1:000000000000:function:localstack-issue: Lambda process returned...

Hello, Awesome project!! We are currently using it for CI using S3. I was wondering if this repo also supports CloudWatch Events // EventBridge. I did not find events in...

enhancement
pr-requested

Under a `PER_CLASS` JUnit lifecycle, attempting to wire up Spring test beans (such as a DynamoDB client) returns this error: `java.lang.RuntimeException: Container not started`. I believe this is because the...