/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/jdk/java/net/httpclient/http3/H3InsertionsLimitTest.java
172 строки
8 KB
Daisuke Yamazaki
8372325: Refactor tests under jdk/java/net/httpclient to use ${test.main.class}
09 апр 2026, 13:51
09 апр 2026, 13:51
261011a
Код
Авторство
О чём код?
/* * Copyright (c) 2024, 2026, 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. */ import jdk.httpclient.test.lib.common.HttpServerAdapters; import jdk.httpclient.test.lib.http3.Http3TestServer; import jdk.httpclient.test.lib.quic.QuicServer; import jdk.internal.net.http.http3.ConnectionSettings; import jdk.internal.net.http.qpack.Encoder; import jdk.internal.net.http.qpack.TableEntry; import jdk.test.lib.net.SimpleSSLContext; import jdk.test.lib.net.URIBuilder; import javax.net.ssl.SSLContext; import java.io.IOException; import java.net.InetAddress; import java.net.InetSocketAddress; import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpClient.Version; import java.net.http.HttpRequest; import java.net.http.HttpResponse.BodyHandlers; import java.util.concurrent.CountDownLatch; import static java.net.http.HttpOption.Http3DiscoveryMode.HTTP_3_URI_ONLY; import static java.net.http.HttpOption.H3_DISCOVERY; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; /* * @test * @summary Verifies that the HTTP client respects the maxLiteralWithIndexing * system property value. * @library /test/lib /test/jdk/java/net/httpclient/lib * @library ../access * @build jdk.test.lib.net.SimpleSSLContext * jdk.httpclient.test.lib.common.HttpServerAdapters * @build java.net.http/jdk.internal.net.http.Http3ConnectionAccess * @run junit/othervm -Djdk.httpclient.qpack.encoderTableCapacityLimit=4096 * -Djdk.internal.httpclient.qpack.allowBlockingEncoding=true * -Djdk.httpclient.qpack.decoderMaxTableCapacity=4096 * -Djdk.httpclient.qpack.decoderBlockedStreams=1024 * -Dhttp3.test.server.encoderAllowedHeaders=* * -Dhttp3.test.server.decoderMaxTableCapacity=4096 * -Dhttp3.test.server.encoderTableCapacityLimit=4096 * -Djdk.httpclient.maxLiteralWithIndexing=32 * -Djdk.internal.httpclient.qpack.log.level=EXTRA * ${test.main.class} */ public class H3InsertionsLimitTest implements HttpServerAdapters { private static final long HEADER_SIZE_LIMIT_BYTES = 8192; private static final long MAX_SERVER_DT_CAPACITY = 4096; private static final SSLContext sslContext = SimpleSSLContext.findSSLContext(); private static HttpTestServer h3Server; private static String requestURIBase; public static final long MAX_LITERALS_WITH_INDEXING = 32L; private static final CountDownLatch WAIT_FOR_FAILURE = new CountDownLatch(1); private static void handle(HttpTestExchange exchange) throws IOException { String handlerMsg = "Server handler: " + exchange.getRequestURI(); long unusedStreamID = 1111; System.out.println(handlerMsg); System.err.println(handlerMsg); try { ConnectionSettings settings = exchange.clientHttp3Settings().get(); System.err.println("Received client connection settings: " + settings); } catch (Exception e) { throw new RuntimeException("Test issue: failure awaiting for HTTP/3" + " connection settings from the client", e); } // Set encoder table capacity explicitly // to avoid waiting client's settings frame // that triggers the same DT configuration Encoder encoder = exchange.qpackEncoder(); encoder.setTableCapacity(MAX_SERVER_DT_CAPACITY); // Mimic entry insertions on the server-side try (Encoder.EncodingContext context = encoder.newEncodingContext( unusedStreamID, 0, encoder.newHeaderFrameWriter())) { for (int i = 0; i <= MAX_LITERALS_WITH_INDEXING; i++) { var entry = new TableEntry("n" + i, "v" + i); var insertedEntry = context.tryInsertEntry(entry); if (insertedEntry.index() == -1L) { throw new RuntimeException("Test issue: cannot insert" + " entry to the encoder dynamic table"); } } } try { WAIT_FOR_FAILURE.await(); } catch (InterruptedException e) { throw new RuntimeException("Test Issue: handler interrupted", e); } // Send a response exchange.sendResponseHeaders(200, 0); } @BeforeAll public static void beforeClass() throws Exception { final QuicServer quicServer = Http3TestServer.quicServerBuilder() .bindAddress(new InetSocketAddress(InetAddress.getLoopbackAddress(), 0)) .sslContext(sslContext) .build(); var http3TestServer = new Http3TestServer(quicServer) .setConnectionSettings(new ConnectionSettings( HEADER_SIZE_LIMIT_BYTES, MAX_SERVER_DT_CAPACITY, 0)); h3Server = HttpTestServer.of(http3TestServer); h3Server.addHandler(H3InsertionsLimitTest::handle, "/insertions"); h3Server.start(); System.out.println("Server started at " + h3Server.getAddress()); requestURIBase = URIBuilder.newBuilder().scheme("https").loopback() .port(h3Server.getAddress().getPort()).build().toString(); } @AfterAll public static void afterClass() throws Exception { if (h3Server != null) { System.out.println("Stopping server " + h3Server.getAddress()); h3Server.stop(); } } @Test public void multipleTableInsertions() throws Exception { final HttpClient client = newClientBuilderForH3() .proxy(HttpClient.Builder.NO_PROXY) .version(Version.HTTP_3) .sslContext(sslContext).build(); final URI reqURI = new URI(requestURIBase + "/insertions"); final HttpRequest.Builder reqBuilder = HttpRequest.newBuilder(reqURI) .version(Version.HTTP_3) .setOption(H3_DISCOVERY, HTTP_3_URI_ONLY); final HttpRequest request = reqBuilder.POST(HttpRequest.BodyPublishers.ofString("Hello")).build(); System.out.println("Issuing request to " + reqURI); try { client.send(request, BodyHandlers.discarding()); Assertions.fail("IOException expected"); } catch (IOException ioe) { System.out.println("Got IOException: " + ioe); Assertions.assertTrue(ioe.getMessage() .contains("Too many literal with indexing")); } finally { WAIT_FOR_FAILURE.countDown(); } } }