From 74c349e90d03451bbf3254016953abc3372bcdd6 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Thu, 19 Oct 2023 23:33:05 -0500 Subject: [PATCH] [ITs] Uncomment test methods in S3SourceTests (meant only for debugging) --- .../stream/app/integration/test/source/s3/S3SourceTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/stream-applications-integration-tests/src/test/java/org/springframework/cloud/stream/app/integration/test/source/s3/S3SourceTests.java b/applications/stream-applications-integration-tests/src/test/java/org/springframework/cloud/stream/app/integration/test/source/s3/S3SourceTests.java index 0b668896..5a44a2d1 100644 --- a/applications/stream-applications-integration-tests/src/test/java/org/springframework/cloud/stream/app/integration/test/source/s3/S3SourceTests.java +++ b/applications/stream-applications-integration-tests/src/test/java/org/springframework/cloud/stream/app/integration/test/source/s3/S3SourceTests.java @@ -75,7 +75,7 @@ abstract class S3SourceTests implements LocalstackContainerTest { .until(outputMatcher.payloadMatches((String s) -> s.contains("Bart Simpson"))); } - //@Test + @Test void testTaskLaunchRequest() { startContainer(fluentMap() .withEntry("SPRING_CLOUD_FUNCTION_DEFINITION", "s3Supplier|taskLaunchRequestFunction") @@ -87,7 +87,7 @@ abstract class S3SourceTests implements LocalstackContainerTest { .until(outputMatcher.payloadMatches(s -> s.equals("{\"args\":[\"filename=/tmp/s3-supplier/test\"],\"deploymentProps\":{},\"name\":\"myTask\"}"))); } - //@Test + @Test void testListOnly() { startContainer(fluentMap() .withEntry("FILE_CONSUMER_MODE", "ref")