test/jdk/sun/net/www/protocol/http/B6890349.java
changeset 47216 71c04702a3d5
parent 5506 202f599c92aa
child 54314 46cf212cdcca
equal deleted inserted replaced
47215:4ebc2e2fb97c 47216:71c04702a3d5
       
     1 /*
       
     2  * Copyright (c) 2009, 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  * @test
       
    25  * @bug 6890349
       
    26  * @run main/othervm B6890349
       
    27  * @summary  Light weight HTTP server
       
    28  */
       
    29 
       
    30 import java.net.*;
       
    31 import java.io.*;
       
    32 
       
    33 public class B6890349 extends Thread {
       
    34     public static final void main(String[] args) throws Exception {
       
    35 
       
    36         try {
       
    37             ServerSocket server = new ServerSocket (0);
       
    38             int port = server.getLocalPort();
       
    39             System.out.println ("listening on "  + port);
       
    40             B6890349 t = new B6890349 (server);
       
    41             t.start();
       
    42             URL u = new URL ("http://127.0.0.1:"+port+"/foo\nbar");
       
    43             HttpURLConnection urlc = (HttpURLConnection)u.openConnection ();
       
    44             InputStream is = urlc.getInputStream();
       
    45             throw new RuntimeException ("Test failed");
       
    46         } catch (IOException e) {
       
    47             System.out.println ("OK");
       
    48         }
       
    49     }
       
    50 
       
    51     ServerSocket server;
       
    52 
       
    53     B6890349 (ServerSocket server) {
       
    54         this.server = server;
       
    55     }
       
    56 
       
    57     String resp = "HTTP/1.1 200 Ok\r\nContent-length: 0\r\n\r\n";
       
    58 
       
    59     public void run () {
       
    60         try {
       
    61             Socket s = server.accept ();
       
    62             OutputStream os = s.getOutputStream();
       
    63             os.write (resp.getBytes());
       
    64         } catch (IOException e) {
       
    65             System.out.println (e);
       
    66         }
       
    67     }
       
    68 }