Skip to content

Commit b328bc1

Browse files
committedAug 18, 2020
8251715: Throw UncheckedIOException in place of InternalError when HttpClient fails due to unavailability of underlying resources required by SSLContext
This fix updates jdk.internal.net.http.HttpClientImpl to throw an UncheckedIOException instead of InternalError. Reviewed-by: chegar, dfuchs
1 parent 67b3cbf commit b328bc1

File tree

2 files changed

+64
-1
lines changed

2 files changed

+64
-1
lines changed
 

‎src/java.net.http/share/classes/jdk/internal/net/http/HttpClientImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ private HttpClientImpl(HttpClientBuilderImpl builder,
267267
try {
268268
sslContext = SSLContext.getDefault();
269269
} catch (NoSuchAlgorithmException ex) {
270-
throw new InternalError(ex);
270+
throw new UncheckedIOException(new IOException(ex));
271271
}
272272
} else {
273273
sslContext = builder.sslContext;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* Copyright (c) 2020, 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+
import java.io.UncheckedIOException;
25+
import java.net.http.HttpClient;
26+
import java.security.NoSuchAlgorithmException;
27+
import org.testng.annotations.Test;
28+
import static org.testng.Assert.expectThrows;
29+
import static org.testng.Assert.fail;
30+
31+
/*
32+
* @test
33+
* @bug 8251715
34+
* @summary This test verifies exception when resources for
35+
* SSLcontext used by HttpClient are not available
36+
* @build SSLExceptionTest
37+
* @run testng/othervm -Djdk.tls.client.protocols="InvalidTLSv1.4"
38+
* SSLExceptionTest
39+
*/
40+
41+
public class SSLExceptionTest {
42+
43+
Throwable excp,noSuchAlgo;
44+
45+
static final int ITERATIONS = 10;
46+
47+
@Test
48+
public void testHttpClientsslException() {
49+
for (int i = 0; i < ITERATIONS; i++) {
50+
excp = expectThrows(UncheckedIOException.class, HttpClient.newBuilder()::build);
51+
noSuchAlgo = excp.getCause().getCause();
52+
if ( !(noSuchAlgo instanceof NoSuchAlgorithmException) ) {
53+
fail("Test failed due to wrong exception cause : " + noSuchAlgo);
54+
}
55+
excp = expectThrows(UncheckedIOException.class, HttpClient::newHttpClient);
56+
noSuchAlgo = excp.getCause().getCause();
57+
if ( !(noSuchAlgo instanceof NoSuchAlgorithmException) ) {
58+
fail("Test failed due to wrong exception cause : " + noSuchAlgo);
59+
}
60+
}
61+
}
62+
}
63+

0 commit comments

Comments
 (0)
Please sign in to comment.