Skip to content

Commit 235652b

Browse files
committed
Disable unsupported integ test for s3 select
1 parent 62766c9 commit 235652b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

services/s3/src/it/java/software/amazon/awssdk/services/SelectObjectContentIntegrationTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import java.util.List;
2525
import java.util.concurrent.CompletableFuture;
2626
import java.util.stream.Stream;
27+
import org.junit.jupiter.api.Disabled;
2728
import org.junit.jupiter.api.AfterAll;
2829
import org.junit.jupiter.api.BeforeAll;
2930
import 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\nC");
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

Comments
 (0)