author | coleenp |
Wed, 17 Jun 2015 21:44:48 +0000 | |
changeset 31362 | 8957ccbb5821 |
parent 14995 | 5ad44f16842e |
permissions | -rw-r--r-- |
2 | 1 |
/* |
14342
8435a30053c1
7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents:
12183
diff
changeset
|
2 |
* Copyright (c) 2002, 2012, 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 4727547 |
|
27 |
* @summary SocksSocketImpl throws NullPointerException |
|
28 |
* @build SocksServer |
|
14995
5ad44f16842e
8005556: java/net/Socks/SocksV4Test.java is missing @run tag
chegar
parents:
14782
diff
changeset
|
29 |
* @run main SocksV4Test |
2 | 30 |
*/ |
31 |
||
32 |
import java.net.*; |
|
33 |
||
34 |
public class SocksV4Test { |
|
14782
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
35 |
|
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
36 |
// An unresolvable host |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
37 |
static final String HOSTNAME = "doesnot.exist.invalid"; |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
38 |
|
12183
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
39 |
public static void main(String[] args) throws Exception { |
14782
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
40 |
// sanity before running the test |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
41 |
assertUnresolvableHost(HOSTNAME); |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
42 |
|
12183
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
43 |
// Create a SOCKS V4 proxy |
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
44 |
SocksServer srvr = new SocksServer(0, true); |
2 | 45 |
srvr.start(); |
12183
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
46 |
Proxy sp = new Proxy(Proxy.Type.SOCKS, |
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
47 |
new InetSocketAddress("localhost", srvr.getPort())); |
2 | 48 |
// Let's create an unresolved address |
14782
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
49 |
InetSocketAddress ad = new InetSocketAddress(HOSTNAME, 1234); |
12183
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
50 |
try (Socket s = new Socket(sp)) { |
06672edfb593
7152796: TEST_BUG: java/net/Socks/SocksV4Test.java does not terminate
chegar
parents:
5506
diff
changeset
|
51 |
s.connect(ad, 10000); |
2 | 52 |
} catch (UnknownHostException ex) { |
53 |
// OK, that's what we expected |
|
54 |
} catch (NullPointerException npe) { |
|
55 |
// Not OK, this used to be the bug |
|
56 |
throw new RuntimeException("Got a NUllPointerException"); |
|
57 |
} finally { |
|
58 |
srvr.terminate(); |
|
59 |
} |
|
60 |
} |
|
14782
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
61 |
|
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
62 |
static void assertUnresolvableHost(String host) { |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
63 |
InetAddress addr = null; |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
64 |
try { |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
65 |
addr = InetAddress.getByName(host); |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
66 |
} catch (UnknownHostException x) { |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
67 |
// OK, expected |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
68 |
} |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
69 |
if (addr != null) |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
70 |
throw new RuntimeException("Test cannot run. resolvable address:" + addr); |
226059d7b730
8004925: java/net/Socks/SocksV4Test.java failing on all platforms
chegar
parents:
14342
diff
changeset
|
71 |
} |
2 | 72 |
} |