|
21 | 21 | import static software.amazon.awssdk.http.crt.CrtHttpClientTestUtils.createRequest;
|
22 | 22 |
|
23 | 23 | import java.io.IOException;
|
| 24 | +import java.net.ConnectException; |
24 | 25 | import java.net.URI;
|
| 26 | +import javax.net.ssl.SSLHandshakeException; |
25 | 27 | import java.util.concurrent.CompletableFuture;
|
| 28 | +import java.util.stream.Stream; |
| 29 | +import java.util.AbstractMap.SimpleEntry; |
| 30 | +import java.util.Map.Entry; |
26 | 31 | import org.junit.jupiter.api.AfterEach;
|
27 | 32 | import org.junit.jupiter.api.BeforeEach;
|
28 | 33 | import org.junit.jupiter.api.Test;
|
29 | 34 | import org.junit.jupiter.api.extension.ExtendWith;
|
| 35 | +import org.junit.jupiter.params.ParameterizedTest; |
| 36 | +import org.junit.jupiter.params.provider.MethodSource; |
30 | 37 | import org.mockito.ArgumentCaptor;
|
31 | 38 | import org.mockito.Mock;
|
32 | 39 | import org.mockito.Mockito;
|
@@ -56,6 +63,13 @@ public class CrtAsyncRequestExecutorTest {
|
56 | 63 | @Mock
|
57 | 64 | private HttpClientConnection httpClientConnection;
|
58 | 65 |
|
| 66 | + public static Stream<Entry<Integer, Class<? extends Throwable>>> mappedExceptions() { |
| 67 | + return Stream.of( |
| 68 | + new SimpleEntry<>(0x0405, SSLHandshakeException.class), // For AWS_IO_TLS_ERROR_NEGOTIATION_FAILURE (1029) |
| 69 | + new SimpleEntry<>(0x0418, ConnectException.class) // For AWS_IO_SOCKET_TIMEOUT (1048) |
| 70 | + ); |
| 71 | + } |
| 72 | + |
59 | 73 | @BeforeEach
|
60 | 74 | public void setup() {
|
61 | 75 | requestExecutor = new CrtAsyncRequestExecutor();
|
@@ -149,6 +163,23 @@ public void execute_AcquireConnectionFailure_shouldAlwaysWrapIOException() {
|
149 | 163 | assertThatThrownBy(executeFuture::join).hasCauseInstanceOf(IOException.class).hasRootCause(exception);
|
150 | 164 | }
|
151 | 165 |
|
| 166 | + @ParameterizedTest |
| 167 | + @MethodSource("mappedExceptions") |
| 168 | + public void execute_AcquireConnectionFailure_shouldAlwaysBeInstanceOfIOException(Entry<Integer, Class<? extends Throwable>> entry) { |
| 169 | + int errorCode = entry.getKey(); |
| 170 | + Class<? extends Throwable> ioExceptionSubclass = entry.getValue(); |
| 171 | + |
| 172 | + CrtAsyncRequestContext context = crtAsyncRequestContext(); |
| 173 | + HttpException exception = new HttpException(errorCode); |
| 174 | + CompletableFuture<HttpClientConnection> completableFuture = CompletableFutureUtils.failedFuture(exception); |
| 175 | + |
| 176 | + Mockito.when(connectionManager.acquireConnection()).thenReturn(completableFuture); |
| 177 | + |
| 178 | + CompletableFuture<Void> executeFuture = requestExecutor.execute(context); |
| 179 | + assertThatThrownBy(executeFuture::join).hasCauseInstanceOf(IOException.class).hasMessageContaining(exception.getMessage()); |
| 180 | + assertThatThrownBy(executeFuture::join).hasCauseInstanceOf(ioExceptionSubclass); |
| 181 | + } |
| 182 | + |
152 | 183 | @Test
|
153 | 184 | public void executeRequest_failedOfIllegalStateException_shouldWrapIOException() {
|
154 | 185 | IllegalStateException exception = new IllegalStateException("connection closed");
|
|
0 commit comments