author | igerasim |
Wed, 16 Oct 2019 18:47:11 -0700 | |
changeset 58659 | 4113f16d5109 |
parent 58365 | 73950479184b |
permissions | -rw-r--r-- |
2 | 1 |
/* |
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2000, 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 |
/* @test |
|
25 |
* @bug 4258697 |
|
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
26 |
* @library /test/lib |
2 | 27 |
* @summary Make sure that http CONTINUE status followed by invalid |
28 |
* response doesn't cause HttpClient to recursively loop and |
|
29 |
* eventually StackOverflow. |
|
30 |
* |
|
31 |
*/ |
|
32 |
import java.io.BufferedReader; |
|
33 |
import java.io.InputStreamReader; |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
34 |
import java.io.IOException; |
2 | 35 |
import java.io.PrintStream; |
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
36 |
import java.net.InetAddress; |
2 | 37 |
import java.net.ServerSocket; |
38 |
import java.net.Socket; |
|
39 |
import java.net.URL; |
|
40 |
import java.net.HttpURLConnection; |
|
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
41 |
import jdk.test.lib.net.URIBuilder; |
58365
73950479184b
8231504: Update networking tests to avoid implicit dependency on the system proxies
chegar
parents:
54887
diff
changeset
|
42 |
import static java.net.Proxy.NO_PROXY; |
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
43 |
|
2 | 44 |
public class HttpContinueStackOverflow { |
45 |
||
46 |
static class Server implements Runnable { |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
47 |
ServerSocket serverSock ; |
2 | 48 |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
49 |
Server() throws IOException { |
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
50 |
serverSock = new ServerSocket(0, 0, InetAddress.getLoopbackAddress()); |
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
51 |
} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
52 |
|
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
53 |
int getLocalPort() { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
54 |
return serverSock.getLocalPort(); |
2 | 55 |
} |
56 |
||
57 |
public void run() { |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
58 |
Socket sock = null; |
2 | 59 |
try { |
60 |
serverSock.setSoTimeout(10000); |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
61 |
sock = serverSock.accept(); |
2 | 62 |
|
63 |
/* setup streams and read http request */ |
|
64 |
BufferedReader in = new BufferedReader( |
|
65 |
new InputStreamReader(sock.getInputStream())); |
|
66 |
PrintStream out = new PrintStream( sock.getOutputStream() ); |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
67 |
in.readLine(); |
2 | 68 |
|
69 |
/* send continue followed by invalid response */ |
|
70 |
out.println("HTTP/1.1 100 Continue\r"); |
|
71 |
out.println("\r"); |
|
72 |
out.println("junk junk junk"); |
|
73 |
out.flush(); |
|
74 |
} catch (Exception e) { |
|
75 |
e.printStackTrace(); |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
76 |
} finally { |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
77 |
try { serverSock.close(); } catch (IOException unused) {} |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
78 |
try { sock.close(); } catch (IOException unused) {} |
2 | 79 |
} |
80 |
} |
|
81 |
} |
|
82 |
||
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
83 |
HttpContinueStackOverflow() throws Exception { |
2 | 84 |
/* create the server */ |
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
85 |
Server s = new Server(); |
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
86 |
(new Thread(s)).start(); |
2 | 87 |
|
54887
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
88 |
/* connect to server and get response code */ |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
89 |
URL url = URIBuilder.newBuilder() |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
90 |
.scheme("http") |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
91 |
.loopback() |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
92 |
.port(s.getLocalPort()) |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
93 |
.path("/anything.html") |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
94 |
.toURL(); |
442e22c051f0
8223798: Replace wildcard address with loopback or local host in tests - part 7
aefimov
parents:
47216
diff
changeset
|
95 |
|
58365
73950479184b
8231504: Update networking tests to avoid implicit dependency on the system proxies
chegar
parents:
54887
diff
changeset
|
96 |
HttpURLConnection conn = (HttpURLConnection)url.openConnection(NO_PROXY); |
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
97 |
conn.getResponseCode(); |
2 | 98 |
System.out.println("TEST PASSED"); |
99 |
} |
|
100 |
||
101 |
public static void main(String args[]) throws Exception { |
|
102 |
System.out.println("Testing 100-Continue"); |
|
6115
7c523cf2bc8a
6969395: TEST_BUG: Tests in java/net sun/net problems
chegar
parents:
5506
diff
changeset
|
103 |
new HttpContinueStackOverflow(); |
2 | 104 |
} |
105 |
} |