blob: 508a956bf4e972a54ca5bca7cbe1d236c7fa59f8 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2005-2006 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 6270015
27 * @summary Light weight HTTP server
28 */
29
30import com.sun.net.httpserver.*;
31
32import java.util.*;
33import java.util.concurrent.*;
34import java.util.logging.*;
35import java.io.*;
36import java.net.*;
37import java.security.*;
38import javax.security.auth.callback.*;
39import javax.net.ssl.*;
40
41/**
42 * Test POST large file via chunked encoding (large chunks)
43 */
44
45public class Test7a extends Test {
46
47 public static void main (String[] args) throws Exception {
48 //Logger log = Logger.getLogger ("com.sun.net.httpserver");
49 //log.setLevel (Level.FINE);
50 //ConsoleHandler h = new ConsoleHandler();
51 //h.setLevel (Level.ALL);
52 //log.addHandler (h);
53 Handler handler = new Handler();
54 InetSocketAddress addr = new InetSocketAddress (0);
55 HttpsServer server = HttpsServer.create (addr, 0);
56 HttpContext ctx = server.createContext ("/test", handler);
57 ExecutorService executor = Executors.newCachedThreadPool();
58 SSLContext ssl = new SimpleSSLContext(System.getProperty("test.src")).get();
59 server.setHttpsConfigurator(new HttpsConfigurator (ssl));
60 server.setExecutor (executor);
61 server.start ();
62
63 URL url = new URL ("https://localhost:"+server.getAddress().getPort()+"/test/foo.html");
64 System.out.print ("Test7a: " );
65 HttpsURLConnection urlc = (HttpsURLConnection)url.openConnection ();
66 urlc.setDoOutput (true);
67 urlc.setRequestMethod ("POST");
68 urlc.setChunkedStreamingMode (16 * 1024); // big chunks
69 urlc.setHostnameVerifier (new DummyVerifier());
70 urlc.setSSLSocketFactory (ssl.getSocketFactory());
71 OutputStream os = new BufferedOutputStream (urlc.getOutputStream(), 8000);
72 for (int i=0; i<SIZE; i++) {
73 os.write (i % 100);
74 }
75 os.close();
76 int resp = urlc.getResponseCode();
77 if (resp != 200) {
78 throw new RuntimeException ("test failed response code");
79 }
80 if (error) {
81 throw new RuntimeException ("test failed error");
82 }
83 delay();
84 server.stop(2);
85 executor.shutdown();
86 System.out.println ("OK");
87
88 }
89
90 public static boolean error = false;
91 final static int SIZE = 999999;
92
93 static class Handler implements HttpHandler {
94 int invocation = 1;
95 public void handle (HttpExchange t)
96 throws IOException
97 {
98 InputStream is = t.getRequestBody();
99 Headers map = t.getRequestHeaders();
100 Headers rmap = t.getResponseHeaders();
101 int c, count=0;
102 while ((c=is.read ()) != -1) {
103 if (c != (count % 100)) {
104 error = true;
105 break;
106 }
107 count ++;
108 }
109 if (count != SIZE) {
110 error = true;
111 }
112 is.close();
113 t.sendResponseHeaders (200, -1);
114 t.close();
115 }
116 }
117}