TestClassicOverAsync.java

/*
 * ====================================================================
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * <http://www.apache.org/>.
 *
 */
package org.apache.hc.client5.testing.async;

import java.io.IOException;
import java.util.Queue;
import java.util.Random;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;

import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
import org.apache.hc.client5.testing.Result;
import org.apache.hc.client5.testing.extension.async.ClientProtocolLevel;
import org.apache.hc.client5.testing.extension.async.ServerProtocolLevel;
import org.apache.hc.core5.http.ClassicHttpRequest;
import org.apache.hc.core5.http.ContentType;
import org.apache.hc.core5.http.HttpHost;
import org.apache.hc.core5.http.URIScheme;
import org.apache.hc.core5.http.io.entity.ByteArrayEntity;
import org.apache.hc.core5.http.io.entity.EntityUtils;
import org.apache.hc.core5.http.io.support.ClassicRequestBuilder;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;

public abstract class TestClassicOverAsync extends AbstractClassicOverAsyncIntegrationTestBase {

    public TestClassicOverAsync(final URIScheme scheme,
                                final ClientProtocolLevel clientProtocolLevel,
                                final ServerProtocolLevel serverProtocolLevel) {
        super(scheme, clientProtocolLevel, serverProtocolLevel);
    }

    @ValueSource(ints = {0, 2048, 10240})
    @ParameterizedTest(name = "{displayName}; content length: {0}")
    void testSequentialGetRequests(final int contentSize) throws Exception {
        configureServer(bootstrap ->
                bootstrap.register("/random/*", AsyncRandomHandler::new));
        final HttpHost target = startServer();

        final CloseableHttpClient client = startClient();

        final int n = 10;
        for (int i = 0; i < n; i++) {
            client.execute(
                    ClassicRequestBuilder.get()
                            .setHttpHost(target)
                            .setPath("/random/" + contentSize)
                            .build(),
                    response -> {
                        Assertions.assertEquals(200, response.getCode());
                        final byte[] bytes = EntityUtils.toByteArray(response.getEntity());
                        Assertions.assertNotNull(bytes);
                        Assertions.assertEquals(contentSize, bytes.length);
                        return null;
                    });
        }
    }

    @ValueSource(ints = {0, 2048, 10240})
    @ParameterizedTest(name = "{displayName}; content length: {0}")
    void testConcurrentGetRequests(final int contentSize) throws Exception {
        configureServer(bootstrap ->
                bootstrap.register("/random/*", AsyncRandomHandler::new));
        final HttpHost target = startServer();

        final CloseableHttpClient client = startClient();

        final int n = 10;

        final ExecutorService executorService = Executors.newFixedThreadPool(n);
        final CountDownLatch countDownLatch = new CountDownLatch(n);
        final Queue<Future<Result<byte[]>>> resultQueue = new ConcurrentLinkedQueue<>();
        for (int i = 0; i < n; i++) {
            resultQueue.add(executorService.submit(() -> {
                final ClassicHttpRequest request = ClassicRequestBuilder.get()
                        .setHttpHost(target)
                        .setPath("/random/" + contentSize)
                        .build();
                try {
                    return client.execute(
                            request,
                            response -> {
                                final byte[] bytes = EntityUtils.toByteArray(response.getEntity());
                                countDownLatch.countDown();
                                return new Result<>(request, response, bytes);
                            });
                } catch (final RuntimeException | IOException ex) {
                    countDownLatch.countDown();
                    return new Result<>(request, ex);
                }
            }));
        }
        Assertions.assertTrue(countDownLatch.await(TIMEOUT.getDuration(), TIMEOUT.getTimeUnit()));
        Assertions.assertEquals(n, resultQueue.size());
        for (final Future<Result<byte[]>> future : resultQueue) {
            final Result<byte[]> result = future.get();
            Assertions.assertNotNull(result.response);
            Assertions.assertEquals(200, result.response.getCode());
            Assertions.assertNotNull(result.content);
            Assertions.assertEquals(contentSize, result.content.length);
        }

        executorService.shutdownNow();
    }

    @ValueSource(ints = {0, 2048, 10240})
    @ParameterizedTest(name = "{displayName}; content length: {0}")
    void testSequentialPostRequests(final int contentSize) throws Exception {
        configureServer(bootstrap ->
                bootstrap.register("/echo/*", AsyncEchoHandler::new));
        final HttpHost target = startServer();

        final CloseableHttpClient client = startClient();

        final int n = 10;
        for (int i = 0; i < n; i++) {
            final byte[] temp = new byte[contentSize];
            new Random(System.currentTimeMillis()).nextBytes(temp);
            client.execute(
                    ClassicRequestBuilder.post()
                            .setHttpHost(target)
                            .setPath("/echo/")
                            .setEntity(new ByteArrayEntity(temp, ContentType.DEFAULT_BINARY))
                            .build(),
                    response -> {
                        Assertions.assertEquals(200, response.getCode());
                        final byte[] bytes = EntityUtils.toByteArray(response.getEntity());
                        Assertions.assertNotNull(bytes);
                        Assertions.assertArrayEquals(temp, bytes);
                        return null;
                    });
        }
    }

    @ValueSource(ints = {0, 2048, 10240})
    @ParameterizedTest(name = "{displayName}; content length: {0}")
    void testConcurrentPostRequests(final int contentSize) throws Exception {
        configureServer(bootstrap ->
                bootstrap.register("/echo/*", AsyncEchoHandler::new));
        final HttpHost target = startServer();

        final CloseableHttpClient client = startClient();

        final int n = 10;

        final ExecutorService executorService = Executors.newFixedThreadPool(n);
        final CountDownLatch countDownLatch = new CountDownLatch(n);
        final Queue<Future<Result<byte[]>>> resultQueue = new ConcurrentLinkedQueue<>();
        for (int i = 0; i < n; i++) {
            final byte[] temp = new byte[contentSize];
            new Random(System.currentTimeMillis()).nextBytes(temp);
            resultQueue.add(executorService.submit(() -> {
                final ClassicHttpRequest request = ClassicRequestBuilder.post()
                        .setHttpHost(target)
                        .setPath("/echo/")
                        .setEntity(new ByteArrayEntity(temp, ContentType.DEFAULT_BINARY))
                        .build();
                try {
                    return client.execute(
                            request,
                            response -> {
                                final byte[] bytes = EntityUtils.toByteArray(response.getEntity());
                                countDownLatch.countDown();
                                return new Result<>(request, response, bytes);
                            });
                } catch (final RuntimeException | IOException ex) {
                    countDownLatch.countDown();
                    return new Result<>(request, ex);
                }
            }));
        }
        Assertions.assertTrue(countDownLatch.await(TIMEOUT.getDuration(), TIMEOUT.getTimeUnit()));
        Assertions.assertEquals(n, resultQueue.size());
        for (final Future<Result<byte[]>> future : resultQueue) {
            final Result<byte[]> result = future.get();
            if (result.exception != null) {
                Assertions.fail(result.exception);
            }
            Assertions.assertNotNull(result.response);
            Assertions.assertEquals(200, result.response.getCode());
            Assertions.assertNotNull(result.content);
            Assertions.assertEquals(contentSize, result.content.length);
        }

        executorService.shutdownNow();
    }

}