author | dholmes |
Wed, 06 Nov 2019 21:18:42 -0500 | |
changeset 58956 | 9a0a5e70eeb2 |
parent 55330 | 1fef7d9309a9 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2005, 2019, 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 |
|
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
27 |
* @library /test/lib |
2 | 28 |
* @summary Light weight HTTP server |
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
29 |
* @run main Test8 |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
30 |
* @run main/othervm -Djava.net.preferIPv6Addresses=true Test8 |
2 | 31 |
*/ |
32 |
||
33 |
import com.sun.net.httpserver.*; |
|
34 |
||
35 |
import java.util.*; |
|
36 |
import java.util.concurrent.*; |
|
37 |
import java.io.*; |
|
38 |
import java.net.*; |
|
39 |
import java.security.*; |
|
40 |
import javax.security.auth.callback.*; |
|
41 |
import javax.net.ssl.*; |
|
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
42 |
import jdk.test.lib.net.URIBuilder; |
2 | 43 |
|
44 |
/** |
|
45 |
* Test POST large file via fixed len encoding |
|
46 |
*/ |
|
47 |
||
48 |
public class Test8 extends Test { |
|
49 |
||
50 |
public static void main (String[] args) throws Exception { |
|
51 |
Handler handler = new Handler(); |
|
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
52 |
InetAddress loopback = InetAddress.getLoopbackAddress(); |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
53 |
InetSocketAddress addr = new InetSocketAddress(loopback, 0); |
2 | 54 |
HttpServer server = HttpServer.create (addr, 0); |
55 |
HttpContext ctx = server.createContext ("/test", handler); |
|
56 |
ExecutorService executor = Executors.newCachedThreadPool(); |
|
57 |
server.setExecutor (executor); |
|
58 |
server.start (); |
|
59 |
||
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
60 |
URL url = URIBuilder.newBuilder() |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
61 |
.scheme("http") |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
62 |
.loopback() |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
63 |
.port(server.getAddress().getPort()) |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
64 |
.path("/test/foo.html") |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
65 |
.toURL(); |
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
66 |
|
2 | 67 |
System.out.print ("Test8: " ); |
55330
1fef7d9309a9
8225512: Replace wildcard address with loopback or local host in tests - part 15
dfuchs
parents:
47216
diff
changeset
|
68 |
HttpURLConnection urlc = (HttpURLConnection)url.openConnection(Proxy.NO_PROXY); |
2 | 69 |
urlc.setDoOutput (true); |
70 |
urlc.setRequestMethod ("POST"); |
|
71 |
OutputStream os = new BufferedOutputStream (urlc.getOutputStream()); |
|
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 |
if (!t.getRequestMethod().equals ("POST")) { |
|
113 |
error = true; |
|
114 |
} |
|
115 |
is.close(); |
|
116 |
t.sendResponseHeaders (200, -1); |
|
117 |
t.close(); |
|
118 |
} |
|
119 |
} |
|
120 |
} |