author | jboes |
Fri, 08 Nov 2019 11:15:16 +0000 | |
changeset 59029 | 3786a0962570 |
parent 52121 | 934969c63223 |
permissions | -rw-r--r-- |
50681 | 1 |
/* |
2 |
* Copyright (c) 2018, 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 Tests what happens when response body handlers and subscribers |
|
27 |
* throw unexpected exceptions. |
|
52121
934969c63223
8211978: Move testlibrary/jdk/testlibrary/SimpleSSLContext.java and testkeys to network testlibrary
jjiang
parents:
50681
diff
changeset
|
28 |
* @library /test/lib http2/server |
934969c63223
8211978: Move testlibrary/jdk/testlibrary/SimpleSSLContext.java and testkeys to network testlibrary
jjiang
parents:
50681
diff
changeset
|
29 |
* @build jdk.test.lib.net.SimpleSSLContext HttpServerAdapters |
50681 | 30 |
* ReferenceTracker ThrowingSubscribersSanity AbstractThrowingSubscribers |
31 |
* @modules java.base/sun.net.www.http |
|
32 |
* java.net.http/jdk.internal.net.http.common |
|
33 |
* java.net.http/jdk.internal.net.http.frame |
|
34 |
* java.net.http/jdk.internal.net.http.hpack |
|
35 |
* @run testng/othervm -Djdk.internal.httpclient.debug=true ThrowingSubscribersSanity |
|
36 |
*/ |
|
37 |
||
38 |
import org.testng.annotations.Test; |
|
39 |
||
40 |
public class ThrowingSubscribersSanity extends AbstractThrowingSubscribers { |
|
41 |
||
42 |
@Test(dataProvider = "sanity") |
|
43 |
public void testSanity(String uri, boolean sameClient) |
|
44 |
throws Exception { |
|
45 |
super.testSanityImpl(uri, sameClient); |
|
46 |
} |
|
47 |
||
48 |
} |