test/jdk/java/net/httpclient/whitebox/java.net.http/java/net/http/internal/ConnectionPoolTest.java
branchhttp-client-branch
changeset 56092 fd85b2bf2b0d
parent 56091 aedd6133e7a0
child 56093 22d94c4a3641
--- a/test/jdk/java/net/httpclient/whitebox/java.net.http/java/net/http/internal/ConnectionPoolTest.java	Wed Feb 07 15:46:30 2018 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,252 +0,0 @@
-/*
- * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * This code is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 only, as
- * published by the Free Software Foundation.
- *
- * This code is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
- * version 2 for more details (a copy is included in the LICENSE file that
- * accompanied this code).
- *
- * You should have received a copy of the GNU General Public License version
- * 2 along with this work; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
- * or visit www.oracle.com if you need additional information or have any
- * questions.
- */
-
-package java.net.http.internal;
-
-import java.io.IOException;
-import java.lang.management.ManagementFactory;
-import java.net.Authenticator;
-import java.net.CookieHandler;
-import java.net.InetSocketAddress;
-import java.net.ProxySelector;
-import java.nio.ByteBuffer;
-import java.nio.channels.SocketChannel;
-import java.util.List;
-import java.util.Optional;
-import java.util.Random;
-import java.util.concurrent.CompletableFuture;
-import java.util.concurrent.Executor;
-import java.util.concurrent.Flow;
-import java.util.stream.IntStream;
-import java.time.Instant;
-import java.time.temporal.ChronoUnit;
-import javax.net.ssl.SSLContext;
-import javax.net.ssl.SSLParameters;
-import java.net.http.HttpClient;
-import java.net.http.HttpRequest;
-import java.net.http.HttpResponse;
-import java.net.http.internal.common.FlowTube;
-
-/**
- * @summary Verifies that the ConnectionPool correctly handle
- *          connection deadlines and purges the right connections
- *          from the cache.
- * @bug 8187044 8187111
- * @author danielfuchs
- */
-public class ConnectionPoolTest {
-
-    static long getActiveCleaners() throws ClassNotFoundException {
-        // ConnectionPool.ACTIVE_CLEANER_COUNTER.get()
-        // ConnectionPoolTest.class.getModule().addReads(
-        //      Class.forName("java.lang.management.ManagementFactory").getModule());
-        return java.util.stream.Stream.of(ManagementFactory.getThreadMXBean()
-                .dumpAllThreads(false, false))
-              .filter(t -> t.getThreadName().startsWith("HTTP-Cache-cleaner"))
-              .count();
-    }
-
-    public static void main(String[] args) throws Exception {
-        testCacheCleaners();
-    }
-
-    public static void testCacheCleaners() throws Exception {
-        ConnectionPool pool = new ConnectionPool(666);
-        HttpClient client = new HttpClientStub(pool);
-        InetSocketAddress proxy = InetSocketAddress.createUnresolved("bar", 80);
-        System.out.println("Adding 10 connections to pool");
-        Random random = new Random();
-
-        final int count = 20;
-        Instant now = Instant.now().truncatedTo(ChronoUnit.SECONDS);
-        int[] keepAlives = new int[count];
-        HttpConnectionStub[] connections = new HttpConnectionStub[count];
-        long purge = pool.purgeExpiredConnectionsAndReturnNextDeadline(now);
-        long expected = 0;
-        if (purge != expected) {
-            throw new RuntimeException("Bad purge delay: " + purge
-                                        + ", expected " + expected);
-        }
-        expected = Long.MAX_VALUE;
-        for (int i=0; i<count; i++) {
-            InetSocketAddress addr = InetSocketAddress.createUnresolved("foo"+i, 80);
-            keepAlives[i] = random.nextInt(10) * 10  + 10;
-            connections[i] = new HttpConnectionStub(client, addr, proxy, true);
-            System.out.println("Adding connection: " + now
-                                + " keepAlive: " + keepAlives[i]
-                                + " /" + connections[i]);
-            pool.returnToPool(connections[i], now, keepAlives[i]);
-            expected = Math.min(expected, keepAlives[i] * 1000);
-            purge = pool.purgeExpiredConnectionsAndReturnNextDeadline(now);
-            if (purge != expected) {
-                throw new RuntimeException("Bad purge delay: " + purge
-                                        + ", expected " + expected);
-            }
-        }
-        int min = IntStream.of(keepAlives).min().getAsInt();
-        int max = IntStream.of(keepAlives).max().getAsInt();
-        int mean = (min + max)/2;
-        System.out.println("min=" + min + ", max=" + max + ", mean=" + mean);
-        purge = pool.purgeExpiredConnectionsAndReturnNextDeadline(now);
-        System.out.println("first purge would be in " + purge + " ms");
-        if (Math.abs(purge/1000 - min) > 0) {
-            throw new RuntimeException("expected " + min + " got " + purge/1000);
-        }
-        long opened = java.util.stream.Stream.of(connections)
-                     .filter(HttpConnectionStub::connected).count();
-        if (opened != count) {
-            throw new RuntimeException("Opened: expected "
-                                       + count + " got " + opened);
-        }
-        purge = mean * 1000;
-        System.out.println("start purging at " + purge + " ms");
-        Instant next = now;
-        do {
-           System.out.println("next purge is in " + purge + " ms");
-           next = next.plus(purge, ChronoUnit.MILLIS);
-           purge = pool.purgeExpiredConnectionsAndReturnNextDeadline(next);
-           long k = now.until(next, ChronoUnit.SECONDS);
-           System.out.println("now is " + k + "s from start");
-           for (int i=0; i<count; i++) {
-               if (connections[i].connected() != (k < keepAlives[i])) {
-                   throw new RuntimeException("Bad connection state for "
-                             + i
-                             + "\n\t connected=" + connections[i].connected()
-                             + "\n\t keepAlive=" + keepAlives[i]
-                             + "\n\t elapsed=" + k);
-               }
-           }
-        } while (purge > 0);
-        opened = java.util.stream.Stream.of(connections)
-                     .filter(HttpConnectionStub::connected).count();
-        if (opened != 0) {
-           throw new RuntimeException("Closed: expected "
-                                       + count + " got "
-                                       + (count-opened));
-        }
-    }
-
-    static <T> T error() {
-        throw new InternalError("Should not reach here: wrong test assumptions!");
-    }
-
-    static class FlowTubeStub implements FlowTube {
-        final HttpConnectionStub conn;
-        FlowTubeStub(HttpConnectionStub conn) { this.conn = conn; }
-        @Override
-        public void onSubscribe(Flow.Subscription subscription) { }
-        @Override public void onError(Throwable error) { error(); }
-        @Override public void onComplete() { error(); }
-        @Override public void onNext(List<ByteBuffer> item) { error();}
-        @Override
-        public void subscribe(Flow.Subscriber<? super List<ByteBuffer>> subscriber) {
-        }
-        @Override public boolean isFinished() { return conn.closed; }
-    }
-
-    // Emulates an HttpConnection that has a strong reference to its HttpClient.
-    static class HttpConnectionStub extends HttpConnection {
-
-        public HttpConnectionStub(HttpClient client,
-                InetSocketAddress address,
-                InetSocketAddress proxy,
-                boolean secured) {
-            super(address, null);
-            this.key = ConnectionPool.cacheKey(address, proxy);
-            this.address = address;
-            this.proxy = proxy;
-            this.secured = secured;
-            this.client = client;
-            this.flow = new FlowTubeStub(this);
-        }
-
-        final InetSocketAddress proxy;
-        final InetSocketAddress address;
-        final boolean secured;
-        final ConnectionPool.CacheKey key;
-        final HttpClient client;
-        final FlowTubeStub flow;
-        volatile boolean closed;
-
-        // All these return something
-        @Override boolean connected() {return !closed;}
-        @Override boolean isSecure() {return secured;}
-        @Override boolean isProxied() {return proxy!=null;}
-        @Override ConnectionPool.CacheKey cacheKey() {return key;}
-        @Override void shutdownInput() throws IOException {}
-        @Override void shutdownOutput() throws IOException {}
-        @Override
-        public void close() {
-            closed=true;
-            System.out.println("closed: " + this);
-        }
-        @Override
-        public String toString() {
-            return "HttpConnectionStub: " + address + " proxy: " + proxy;
-        }
-
-        // All these throw errors
-        @Override public HttpPublisher publisher() {return error();}
-        @Override public CompletableFuture<Void> connectAsync() {return error();}
-        @Override SocketChannel channel() {return error();}
-        @Override
-        HttpConnection.DetachedConnectionChannel detachChannel() {
-            return error();
-        }
-        @Override
-        FlowTube getConnectionFlow() {return flow;}
-    }
-    // Emulates an HttpClient that has a strong reference to its connection pool.
-    static class HttpClientStub extends HttpClient {
-        public HttpClientStub(ConnectionPool pool) {
-            this.pool = pool;
-        }
-        final ConnectionPool pool;
-        @Override public Optional<CookieHandler> cookieHandler() {return error();}
-        @Override public HttpClient.Redirect followRedirects() {return error();}
-        @Override public Optional<ProxySelector> proxy() {return error();}
-        @Override public SSLContext sslContext() {return error();}
-        @Override public SSLParameters sslParameters() {return error();}
-        @Override public Optional<Authenticator> authenticator() {return error();}
-        @Override public HttpClient.Version version() {return HttpClient.Version.HTTP_1_1;}
-        @Override public Optional<Executor> executor() {return error();}
-        @Override
-        public <T> HttpResponse<T> send(HttpRequest req,
-                                        HttpResponse.BodyHandler<T> responseBodyHandler)
-                throws IOException, InterruptedException {
-            return error();
-        }
-        @Override
-        public <T> CompletableFuture<HttpResponse<T>> sendAsync(HttpRequest req,
-                HttpResponse.BodyHandler<T> responseBodyHandler) {
-            return error();
-        }
-        @Override
-        public <T> CompletableFuture<HttpResponse<T>> sendAsync(HttpRequest req,
-                HttpResponse.BodyHandler<T> bodyHandler,
-                HttpResponse.PushPromiseHandler<T> multiHandler) {
-            return error();
-        }
-    }
-
-}