|
| 1 | +/* |
| 2 | + * Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +/* |
| 25 | + * @test |
| 26 | + * @summary Verifies the behavior of `limiting()` on unexpected exceptions |
| 27 | + * thrown at various places (`onSubscriber()`, `onNext()`, etc.) when |
| 28 | + * the request is performed _synchronously_ using `HttpClient::send`. |
| 29 | + * Even though throwing exceptions at such points is against the |
| 30 | + * Reactive Streams contract, we make sure that `HttpClient` gets its |
| 31 | + * resources released on such misbehaving user code. |
| 32 | + * @library /test/jdk/java/net/httpclient/lib |
| 33 | + * /test/lib |
| 34 | + * @build AbstractThrowingSubscribers |
| 35 | + * ReferenceTracker |
| 36 | + * jdk.httpclient.test.lib.common.HttpServerAdapters |
| 37 | + * jdk.test.lib.net.SimpleSSLContext |
| 38 | + * @run testng/othervm -Djdk.internal.httpclient.debug=true ThrowingSubscribersAsLimiting |
| 39 | + */ |
| 40 | + |
| 41 | +import org.testng.annotations.Test; |
| 42 | + |
| 43 | +import java.net.http.HttpResponse; |
| 44 | +import java.util.function.Supplier; |
| 45 | +import java.util.stream.Stream; |
| 46 | + |
| 47 | +public class ThrowingSubscribersAsLimiting extends AbstractThrowingSubscribers { |
| 48 | + |
| 49 | + @Test(dataProvider = "variants") |
| 50 | + public void test(String uri, boolean sameClient, Thrower thrower) throws Exception { |
| 51 | + test(uri, sameClient, thrower, false); |
| 52 | + } |
| 53 | + |
| 54 | + void test(String uri, boolean sameClient, Thrower thrower, boolean async) throws Exception { |
| 55 | + uri = uri + "-" + URICOUNT.incrementAndGet(); |
| 56 | + String name = String.format( |
| 57 | + "testThrowingAsLimiting%s(%s, %b, %s)", |
| 58 | + (async ? "Async" : ""), uri, sameClient, thrower); |
| 59 | + Supplier<HttpResponse.BodyHandler<Stream<String>>> handlerSupplier = |
| 60 | + () -> HttpResponse.BodyHandlers.limiting( |
| 61 | + HttpResponse.BodyHandlers.ofLines(), |
| 62 | + Long.MAX_VALUE); |
| 63 | + testThrowing( |
| 64 | + name, |
| 65 | + uri, |
| 66 | + sameClient, |
| 67 | + handlerSupplier, |
| 68 | + this::finish, |
| 69 | + thrower, |
| 70 | + async, |
| 71 | + excludes(SubscriberType.OFFLINE)); |
| 72 | + } |
| 73 | + |
| 74 | + private Void finish(Where where, HttpResponse<Stream<String>> response, Thrower thrower) { |
| 75 | + switch (where) { |
| 76 | + case BODY_HANDLER: |
| 77 | + case GET_BODY: |
| 78 | + case BODY_CF: |
| 79 | + return shouldHaveThrown(where, response, thrower); |
| 80 | + } |
| 81 | + try { |
| 82 | + // noinspection ResultOfMethodCallIgnored |
| 83 | + response.body().toList(); |
| 84 | + } catch (Error | Exception throwable) { |
| 85 | + Throwable cause = findCause(throwable, thrower); |
| 86 | + if (cause != null) { |
| 87 | + System.out.println(now() + "Got expected exception in " + where + ": " + cause); |
| 88 | + return null; |
| 89 | + } |
| 90 | + throw causeNotFound(where, throwable); |
| 91 | + } |
| 92 | + return shouldHaveThrown(where, response, thrower); |
| 93 | + } |
| 94 | + |
| 95 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Feb 12, 2025
Review
Issues