blob: 296fd2698886e1c349eed54c6f25fcabde48d3a3 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2004 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/**
25 * @test
26 * @bug 5049976
27 * @library ../../httptest/
28 * @build HttpCallback HttpServer ClosedChannelList HttpTransaction
29 * @run main SetChunkedStreamingMode
30 * @summary Unspecified NPE is thrown when streaming output mode is enabled
31 */
32
33import java.io.*;
34import java.net.*;
35
36public class SetChunkedStreamingMode implements HttpCallback {
37
38 void okReply (HttpTransaction req) throws IOException {
39 req.setResponseEntityBody ("Hello .");
40 req.sendResponse (200, "Ok");
41 System.out.println ("Server: sent response");
42 req.orderlyClose();
43 }
44
45 public void request (HttpTransaction req) {
46 try {
47 okReply (req);
48 } catch (IOException e) {
49 e.printStackTrace();
50 }
51 }
52
53 static void read (InputStream is) throws IOException {
54 int c;
55 System.out.println ("reading");
56 while ((c=is.read()) != -1) {
57 System.out.write (c);
58 }
59 System.out.println ("");
60 System.out.println ("finished reading");
61 }
62
63 static HttpServer server;
64
65 public static void main (String[] args) throws Exception {
66 try {
67 server = new HttpServer (new SetChunkedStreamingMode(), 1, 10, 0);
68 System.out.println ("Server: listening on port: " + server.getLocalPort());
69 URL url = new URL ("http://127.0.0.1:"+server.getLocalPort()+"/");
70 System.out.println ("Client: connecting to " + url);
71 HttpURLConnection urlc = (HttpURLConnection)url.openConnection();
72 urlc.setChunkedStreamingMode (0);
73 urlc.setRequestMethod("POST");
74 urlc.setDoOutput(true);
75 InputStream is = urlc.getInputStream();
76 } catch (Exception e) {
77 if (server != null) {
78 server.terminate();
79 }
80 throw e;
81 }
82 server.terminate();
83 }
84
85 public static void except (String s) {
86 server.terminate();
87 throw new RuntimeException (s);
88 }
89}