2424import java .util .List ;
2525import java .util .concurrent .CompletableFuture ;
2626import java .util .stream .Stream ;
27+ import org .junit .jupiter .api .Disabled ;
2728import org .junit .jupiter .api .AfterAll ;
2829import org .junit .jupiter .api .BeforeAll ;
2930import org .junit .jupiter .params .ParameterizedTest ;
@@ -81,6 +82,7 @@ public static void teardown() {
8182 }
8283 }
8384
85+ @ Disabled ("S3 Select not supported for new accounts" )
8486 @ ParameterizedTest (autoCloseArguments = false )
8587 @ MethodSource ("s3AsyncClients" )
8688 public void selectObjectContent_onResponseInvokedWithResponse (S3AsyncClient client ) {
@@ -90,6 +92,7 @@ public void selectObjectContent_onResponseInvokedWithResponse(S3AsyncClient clie
9092 assertThat (handler .response ).isNotNull ();
9193 }
9294
95+ @ Disabled ("S3 Select not supported for new accounts" )
9396 @ ParameterizedTest (autoCloseArguments = false )
9497 @ MethodSource ("s3AsyncClients" )
9598 public void selectObjectContent_recordsEventUnmarshalledCorrectly (S3AsyncClient client ) {
@@ -104,6 +107,7 @@ public void selectObjectContent_recordsEventUnmarshalledCorrectly(S3AsyncClient
104107 assertThat (recordsEvent .payload ().asUtf8String ()).contains ("A\n C" );
105108 }
106109
110+ @ Disabled ("S3 Select not supported for new accounts" )
107111 @ ParameterizedTest (autoCloseArguments = false )
108112 @ MethodSource ("s3AsyncClients" )
109113 public void selectObjectContent_invalidQuery_unmarshallsErrorResponse (S3AsyncClient client ) {
0 commit comments