Skip to content

Commit e700460

Browse files
Volkan Yazicidfuch
Volkan Yazici
authored andcommittedFeb 12, 2025
8349813: Test behavior of limiting() on RS operators throwing exceptions
Reviewed-by: dfuchs
1 parent 08f4c1c commit e700460

File tree

3 files changed

+149
-4
lines changed

3 files changed

+149
-4
lines changed
 

‎test/jdk/java/net/httpclient/AbstractThrowingSubscribers.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -413,7 +413,7 @@ protected void testThrowingAsInputStreamAsyncImpl(String uri,
413413
excludes(SubscriberType.OFFLINE));
414414
}
415415

416-
private <T,U> void testThrowing(String name, String uri, boolean sameClient,
416+
<T,U> void testThrowing(String name, String uri, boolean sameClient,
417417
Supplier<BodyHandler<T>> handlers,
418418
Finisher finisher, Thrower thrower,
419419
boolean async, EnumSet<Where> excludes)
@@ -585,8 +585,7 @@ final List<String> checkAsInputStream(Where w, HttpResponse<InputStream> resp,
585585
return shouldHaveThrown(w, resp, thrower);
586586
}
587587

588-
private static Throwable findCause(Throwable x,
589-
Predicate<Throwable> filter) {
588+
static Throwable findCause(Throwable x, Predicate<Throwable> filter) {
590589
while (x != null && !filter.test(x)) x = x.getCause();
591590
return x;
592591
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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 _asynchronously_ using `HttpClient::sendAsync`.
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 ThrowingSubscribersAsLimitingAsync
39+
*/
40+
41+
import org.testng.annotations.Test;
42+
43+
public class ThrowingSubscribersAsLimitingAsync extends ThrowingSubscribersAsLimiting {
44+
45+
@Override
46+
@Test(dataProvider = "variants")
47+
public void test(String uri, boolean sameClient, Thrower thrower) throws Exception {
48+
test(uri, sameClient, thrower, true);
49+
}
50+
51+
}

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Feb 12, 2025

@openjdk-notifier[bot]
Please sign in to comment.