jdk/test/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java
author mchung
Thu, 28 May 2015 10:54:48 -0700
changeset 30820 0d4717a011d3
parent 23052 241885315119
child 34522 fa15f1bdaec2
permissions -rw-r--r--
8081347: Add @modules to jdk_core tests Reviewed-by: alanb, joehw, lancea Contributed-by: alexander.kulyakhtin@oracle.com, alan.bateman@oracle.com, mandy.chung@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
     2
 * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1949
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1949
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1949
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 6216082
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    27
 * @summary  Redirect problem with HttpsURLConnection using a proxy
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    28
 *     SunJSSE does not support dynamic system properties, no way to re-use
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    29
 *     system properties in samevm/agentvm mode.
30820
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 23052
diff changeset
    30
 * @modules java.base/sun.net.www
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 23052
diff changeset
    31
 * @library ..
0d4717a011d3 8081347: Add @modules to jdk_core tests
mchung
parents: 23052
diff changeset
    32
 * @build HttpCallback TestHttpsServer ClosedChannelList HttpTransaction TunnelProxy
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    33
 * @run main/othervm B6216082
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    34
 */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.net.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
public class B6216082 {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    static SimpleHttpTransaction httpTrans;
13788
3f38e525f30a 6354758: rename old test HttpServer classes
chegar
parents: 13669
diff changeset
    43
    static TestHttpsServer server;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    static TunnelProxy proxy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    // it seems there's no proxy ever if a url points to 'localhost',
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    // even if proxy related properties are set. so we need to bind
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // our simple http proxy and http server to a non-loopback address
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    static InetAddress firstNonLoAddress = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    public static void main(String[] args) throws Exception {
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    52
        HostnameVerifier reservedHV =
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    53
            HttpsURLConnection.getDefaultHostnameVerifier();
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    54
        try {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    55
            // XXX workaround for CNFE
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    56
            Class.forName("java.nio.channels.ClosedByInterruptException");
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    57
            if (!setupEnv()) {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    58
                return;
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    59
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    61
            startHttpServer();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    63
            // https.proxyPort can only be set after the TunnelProxy has been
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    64
            // created as it will use an ephemeral port.
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    65
            System.setProperty("https.proxyPort",
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    66
                        (new Integer(proxy.getLocalPort())).toString() );
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    68
            makeHttpCall();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    70
            if (httpTrans.hasBadRequest) {
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    71
                throw new RuntimeException("Test failed : bad http request");
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    72
            }
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    73
        } finally {
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    74
            if (proxy != null) {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    75
                proxy.terminate();
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    76
            }
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    77
            if (server != null) {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    78
               server.terminate();
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    79
            }
10328
06c93c42bca0 7055363: jdk_security3 test target cleanup
weijun
parents: 5506
diff changeset
    80
            HttpsURLConnection.setDefaultHostnameVerifier(reservedHV);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Where do we find the keystores for ssl?
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     */
23052
241885315119 8032473: Restructure JSSE regression test hierarchy in jdk test
xuelei
parents: 13788
diff changeset
    87
    static String pathToStores = "../../../../../../javax/net/ssl/etc";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    static String keyStoreFile = "keystore";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    static String trustStoreFile = "truststore";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    static String passwd = "passphrase";
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    91
    public static boolean setupEnv() throws Exception {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    92
        firstNonLoAddress = getNonLoAddress();
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    93
        if (firstNonLoAddress == null) {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    94
            System.err.println("The test needs at least one non-loopback address to run. Quit now.");
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    95
            return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        }
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
    97
        System.out.println(firstNonLoAddress.getHostAddress());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        // will use proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        System.setProperty( "https.proxyHost", firstNonLoAddress.getHostAddress());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        // setup properties to do ssl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        String keyFilename = System.getProperty("test.src", "./") + "/" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                             pathToStores + "/" + keyStoreFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        String trustFilename = System.getProperty("test.src", "./") + "/" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                               pathToStores + "/" + trustStoreFile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        System.setProperty("javax.net.ssl.keyStore", keyFilename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        System.setProperty("javax.net.ssl.keyStorePassword", passwd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        System.setProperty("javax.net.ssl.trustStore", trustFilename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        System.setProperty("javax.net.ssl.trustStorePassword", passwd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        HttpsURLConnection.setDefaultHostnameVerifier(new NameVerifier());
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   112
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public static InetAddress getNonLoAddress() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        NetworkInterface loNIC = NetworkInterface.getByInetAddress(InetAddress.getByName("localhost"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        Enumeration<NetworkInterface> nics = NetworkInterface.getNetworkInterfaces();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        while (nics.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            NetworkInterface nic = nics.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            if (!nic.getName().equalsIgnoreCase(loNIC.getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                Enumeration<InetAddress> addrs = nic.getInetAddresses();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                while (addrs.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    InetAddress addr = addrs.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                    if (!addr.isLoopbackAddress())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                        return addr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   133
    public static void startHttpServer() throws IOException {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   134
        // Both the https server and the proxy let the
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   135
        // system pick up an ephemeral port.
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   136
        httpTrans = new SimpleHttpTransaction();
13788
3f38e525f30a 6354758: rename old test HttpServer classes
chegar
parents: 13669
diff changeset
   137
        server = new TestHttpsServer(httpTrans, 1, 10, 0);
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   138
        proxy = new TunnelProxy(1, 10, 0);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   141
    public static void makeHttpCall() throws Exception {
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   142
        System.out.println("https server listen on: " + server.getLocalPort());
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   143
        System.out.println("https proxy listen on: " + proxy.getLocalPort());
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   144
        URL url = new URL("https" , firstNonLoAddress.getHostAddress(),
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   145
                            server.getLocalPort(), "/");
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   146
        HttpURLConnection uc = (HttpURLConnection)url.openConnection();
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   147
        System.out.println(uc.getResponseCode());
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   148
        uc.disconnect();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    static class NameVerifier implements HostnameVerifier {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        public boolean verify(String hostname, SSLSession session) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
class SimpleHttpTransaction implements HttpCallback {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    public boolean hasBadRequest = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * Our http server which simply redirect first call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    public void request(HttpTransaction trans) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            String path = trans.getRequestURI().getPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            if (path.equals("/")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                // the first call, redirect it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                String location = "/redirect";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                trans.addResponseHeader("Location", location);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                trans.sendResponse(302, "Moved Temporarily");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                // if the bug exsits, it'll send 2 GET commands
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                // check 2nd GET here
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                String duplicatedGet = trans.getRequestHeader(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                if (duplicatedGet != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                    duplicatedGet.toUpperCase().indexOf("GET") >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                    trans.sendResponse(400, "Bad Request");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                    hasBadRequest = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                    trans.sendResponse(200, "OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        } catch (Exception e) {
13669
0f1340f8a157 7195733: TEST_BUG: sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java failing
xuelei
parents: 10328
diff changeset
   185
            throw new RuntimeException(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
}