author | michaelm |
Tue, 26 Aug 2014 10:10:58 +0100 | |
changeset 26206 | fb87c4051d65 |
parent 7668 | d4a77089c587 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
7668 | 2 |
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
* |
|
5506 | 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. |
|
2 | 22 |
*/ |
23 |
||
24 |
/** |
|
25 |
* @test |
|
26 |
* @bug 6270015 |
|
26206
fb87c4051d65
8055747: Move SimpleSSLContext to jdk/testlibrary
michaelm
parents:
7668
diff
changeset
|
27 |
* @library /lib/testlibrary/ |
fb87c4051d65
8055747: Move SimpleSSLContext to jdk/testlibrary
michaelm
parents:
7668
diff
changeset
|
28 |
* @build jdk.testlibrary.SimpleSSLContext |
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
29 |
* @run main/othervm Test8a |
2 | 30 |
* @summary Light weight HTTP server |
31 |
*/ |
|
32 |
||
33 |
import com.sun.net.httpserver.*; |
|
34 |
||
35 |
import java.util.concurrent.*; |
|
36 |
import java.io.*; |
|
37 |
import java.net.*; |
|
38 |
import javax.net.ssl.*; |
|
26206
fb87c4051d65
8055747: Move SimpleSSLContext to jdk/testlibrary
michaelm
parents:
7668
diff
changeset
|
39 |
import jdk.testlibrary.SimpleSSLContext; |
2 | 40 |
|
41 |
/** |
|
42 |
* Test POST large file via fixed len encoding |
|
43 |
*/ |
|
44 |
||
45 |
public class Test8a extends Test { |
|
46 |
||
47 |
public static void main (String[] args) throws Exception { |
|
48 |
//Logger log = Logger.getLogger ("com.sun.net.httpserver"); |
|
49 |
//ConsoleHandler h = new ConsoleHandler(); |
|
50 |
//h.setLevel (Level.INFO); |
|
51 |
//log.addHandler (h); |
|
52 |
//log.setLevel (Level.INFO); |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
53 |
HttpsServer server = null; |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
54 |
ExecutorService executor = null; |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
55 |
try { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
56 |
Handler handler = new Handler(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
57 |
InetSocketAddress addr = new InetSocketAddress (0); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
58 |
server = HttpsServer.create (addr, 0); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
59 |
HttpContext ctx = server.createContext ("/test", handler); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
60 |
executor = Executors.newCachedThreadPool(); |
26206
fb87c4051d65
8055747: Move SimpleSSLContext to jdk/testlibrary
michaelm
parents:
7668
diff
changeset
|
61 |
SSLContext ssl = new SimpleSSLContext().get(); |
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
62 |
server.setHttpsConfigurator(new HttpsConfigurator (ssl)); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
63 |
server.setExecutor (executor); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
64 |
server.start (); |
2 | 65 |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
66 |
URL url = new URL ("https://localhost:"+server.getAddress().getPort()+"/test/foo.html"); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
67 |
System.out.print ("Test8a: " ); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
68 |
HttpsURLConnection urlc = (HttpsURLConnection)url.openConnection (); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
69 |
urlc.setDoOutput (true); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
70 |
urlc.setRequestMethod ("POST"); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
71 |
urlc.setHostnameVerifier (new DummyVerifier()); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
72 |
urlc.setSSLSocketFactory (ssl.getSocketFactory()); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
73 |
OutputStream os = new BufferedOutputStream (urlc.getOutputStream(), 8000); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
74 |
for (int i=0; i<SIZE; i++) { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
75 |
os.write (i % 250); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
76 |
} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
77 |
os.close(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
78 |
int resp = urlc.getResponseCode(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
79 |
if (resp != 200) { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
80 |
throw new RuntimeException ("test failed response code"); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
81 |
} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
82 |
InputStream is = urlc.getInputStream (); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
83 |
for (int i=0; i<SIZE; i++) { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
84 |
int f = is.read(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
85 |
if (f != (i % 250)) { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
86 |
System.out.println ("Setting error(" +f +")("+i+")" ); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
87 |
error = true; |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
88 |
break; |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
89 |
} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
90 |
} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
91 |
is.close(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
92 |
} finally { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
93 |
delay(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
94 |
if (server != null) server.stop(2); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
95 |
if (executor != null) executor.shutdown(); |
2 | 96 |
} |
97 |
if (error) { |
|
98 |
throw new RuntimeException ("test failed error"); |
|
99 |
} |
|
100 |
System.out.println ("OK"); |
|
101 |
||
102 |
} |
|
103 |
||
104 |
public static boolean error = false; |
|
105 |
//final static int SIZE = 999999; |
|
106 |
final static int SIZE = 9999; |
|
107 |
||
108 |
static class Handler implements HttpHandler { |
|
109 |
int invocation = 1; |
|
110 |
public void handle (HttpExchange t) |
|
111 |
throws IOException |
|
112 |
{ |
|
113 |
System.out.println ("Handler.handle"); |
|
114 |
InputStream is = t.getRequestBody(); |
|
115 |
Headers map = t.getRequestHeaders(); |
|
116 |
Headers rmap = t.getResponseHeaders(); |
|
117 |
int c, count=0; |
|
118 |
while ((c=is.read ()) != -1) { |
|
119 |
if (c != (count % 250)) { |
|
120 |
System.out.println ("Setting error 1"); |
|
121 |
error = true; |
|
122 |
break; |
|
123 |
} |
|
124 |
count ++; |
|
125 |
} |
|
126 |
if (count != SIZE) { |
|
127 |
System.out.println ("Setting error 2"); |
|
128 |
error = true; |
|
129 |
} |
|
130 |
is.close(); |
|
131 |
t.sendResponseHeaders (200, SIZE); |
|
132 |
System.out.println ("Sending 200 OK"); |
|
133 |
OutputStream os = new BufferedOutputStream(t.getResponseBody(), 8000); |
|
134 |
for (int i=0; i<SIZE; i++) { |
|
135 |
os.write (i % 250); |
|
136 |
} |
|
137 |
os.close(); |
|
138 |
System.out.println ("Finished"); |
|
139 |
} |
|
140 |
} |
|
141 |
} |