|
| 1 | +package io.reactiverse.awssdk; |
| 2 | + |
| 3 | +import io.vertx.core.Vertx; |
| 4 | +import io.vertx.core.http.HttpClientOptions; |
| 5 | +import io.vertx.core.http.HttpServer; |
| 6 | +import io.vertx.core.net.ProxyOptions; |
| 7 | +import io.vertx.junit5.Timeout; |
| 8 | +import io.vertx.junit5.VertxExtension; |
| 9 | +import io.vertx.junit5.VertxTestContext; |
| 10 | +import org.junit.jupiter.api.AfterEach; |
| 11 | +import org.junit.jupiter.api.BeforeEach; |
| 12 | +import org.junit.jupiter.api.Test; |
| 13 | +import org.junit.jupiter.api.extension.ExtendWith; |
| 14 | +import software.amazon.awssdk.auth.credentials.AwsCredentials; |
| 15 | +import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; |
| 16 | +import software.amazon.awssdk.regions.Region; |
| 17 | +import software.amazon.awssdk.services.kinesis.KinesisAsyncClient; |
| 18 | +import software.amazon.awssdk.services.kinesis.KinesisAsyncClientBuilder; |
| 19 | +import software.amazon.awssdk.services.kinesis.model.ListStreamsResponse; |
| 20 | + |
| 21 | +import java.net.URI; |
| 22 | +import java.util.concurrent.CompletableFuture; |
| 23 | +import java.util.concurrent.TimeUnit; |
| 24 | +import java.util.concurrent.atomic.AtomicInteger; |
| 25 | + |
| 26 | +import static org.junit.jupiter.api.Assertions.assertEquals; |
| 27 | +import static org.junit.jupiter.api.Assertions.assertTrue; |
| 28 | + |
| 29 | +@ExtendWith(VertxExtension.class) |
| 30 | +public class ProxyTest { |
| 31 | + |
| 32 | + private Vertx vertx; |
| 33 | + private HttpServer proxyServer; |
| 34 | + |
| 35 | + private static final int PROXY_PORT = 8000; |
| 36 | + private static final String PROXY_HOST = "localhost"; |
| 37 | + |
| 38 | + private final AtomicInteger proxyAccess = new AtomicInteger(0); |
| 39 | + private static final AwsCredentialsProvider credentialsProvider = () -> new AwsCredentials() { |
| 40 | + @Override |
| 41 | + public String accessKeyId() { |
| 42 | + return "a"; |
| 43 | + } |
| 44 | + |
| 45 | + @Override |
| 46 | + public String secretAccessKey() { |
| 47 | + return "a"; |
| 48 | + } |
| 49 | + }; |
| 50 | + |
| 51 | + @BeforeEach |
| 52 | + public void setUp(VertxTestContext ctx) { |
| 53 | + vertx = Vertx.vertx(); |
| 54 | + proxyServer = vertx.createHttpServer(); |
| 55 | + proxyServer.requestHandler(req -> { |
| 56 | + proxyAccess.incrementAndGet(); |
| 57 | + req.response().end(); |
| 58 | + }); |
| 59 | + proxyServer.listen(PROXY_PORT, PROXY_HOST, res -> { |
| 60 | + assertTrue(res.succeeded()); |
| 61 | + ctx.completeNow(); |
| 62 | + }); |
| 63 | + } |
| 64 | + |
| 65 | + @AfterEach |
| 66 | + public void tearDown(VertxTestContext ctx) { |
| 67 | + if (proxyServer == null) { |
| 68 | + return; |
| 69 | + } |
| 70 | + proxyAccess.set(0); |
| 71 | + proxyServer.close(res -> { |
| 72 | + assertTrue(res.succeeded()); |
| 73 | + ctx.completeNow(); |
| 74 | + }); |
| 75 | + } |
| 76 | + |
| 77 | + @Test |
| 78 | + @Timeout(value = 15, timeUnit = TimeUnit.SECONDS) |
| 79 | + public void testGetThroughProxy(VertxTestContext ctx) throws Exception { |
| 80 | + final KinesisAsyncClientBuilder builder = KinesisAsyncClient.builder() |
| 81 | + .region(Region.EU_WEST_1) |
| 82 | + .endpointOverride(new URI("http://localhost:1111")) // something that just doesn't exist, the only thing that matters is that every request has traveled through proxy |
| 83 | + .credentialsProvider(credentialsProvider); |
| 84 | + HttpClientOptions throughProxyOptions = new HttpClientOptions().setProxyOptions(new ProxyOptions().setHost(PROXY_HOST).setPort(PROXY_PORT)); |
| 85 | + KinesisAsyncClient kinesis = VertxSdkClient.withVertx(builder, throughProxyOptions, vertx.getOrCreateContext()).build(); |
| 86 | + assertEquals(proxyAccess.get(), 0, "Proxy access count should have been reset"); |
| 87 | + kinesis |
| 88 | + .listStreams() |
| 89 | + .handle((res, err) -> { |
| 90 | + assertTrue(proxyAccess.get() > 0, "Requests should have been transferred through proxy"); |
| 91 | + ctx.completeNow(); |
| 92 | + return null; |
| 93 | + }); |
| 94 | + } |
| 95 | + |
| 96 | +} |
0 commit comments