test/jdk/java/net/httpclient/ThrowingPushPromisesSanity.java
branchhttp-client-branch
changeset 56780 6e0e57fe33c7
child 52121 934969c63223
equal deleted inserted replaced
56779:bbe903489568 56780:6e0e57fe33c7
       
     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 push promise handlers and their
       
    27  *          response body handlers and subscribers throw unexpected exceptions.
       
    28  * @library /lib/testlibrary http2/server
       
    29  * @build jdk.testlibrary.SimpleSSLContext HttpServerAdapters
       
    30   *       ReferenceTracker AbstractThrowingPushPromises ThrowingPushPromisesSanity
       
    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 ThrowingPushPromisesSanity
       
    36  */
       
    37 
       
    38 import org.testng.annotations.Test;
       
    39 
       
    40 public class ThrowingPushPromisesSanity extends AbstractThrowingPushPromises {
       
    41 
       
    42     @Test(dataProvider = "sanity")
       
    43     public void testSanity(String uri, boolean sameClient)
       
    44             throws Exception {
       
    45         super.testSanityImpl(uri, sameClient);
       
    46     }
       
    47 }