Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-aarch32-jdk8u
Path: blob/jdk8u272-b10-aarch32-20201026/jdk/test/java/net/Socks/BadProxySelector.java
48795 views
1
/*
2
* Copyright (c) 2015, Oracle and/or its affiliates. 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 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.
22
*/
23
24
/*
25
* @test
26
* @bug 7178362
27
* @run main/othervm BadProxySelector
28
*/
29
30
import java.net.InetSocketAddress;
31
import java.net.Proxy;
32
import java.net.ProxySelector;
33
import java.net.Socket;
34
import java.net.SocketAddress;
35
import java.net.ServerSocket;
36
import java.net.URI;
37
import java.util.ArrayList;
38
import java.util.List;
39
import java.io.*;
40
41
public class BadProxySelector {
42
public static void main(String[] args) throws Exception {
43
ProxySelector.setDefault(new HTTPProxySelector());
44
try (ServerSocket ss = new ServerSocket(0);
45
Socket s1 = new Socket(ss.getInetAddress(), ss.getLocalPort());
46
Socket s2 = ss.accept()) {
47
}
48
49
ProxySelector.setDefault(new NullHTTPProxySelector());
50
try (ServerSocket ss = new ServerSocket(0);
51
Socket s1 = new Socket(ss.getInetAddress(), ss.getLocalPort());
52
Socket s2 = ss.accept()) {
53
}
54
}
55
56
// always returns bogus HTTP proxies
57
private static class HTTPProxySelector extends ProxySelector {
58
@Override
59
public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {}
60
61
@Override
62
public List<Proxy> select(URI uri) {
63
List<Proxy> proxies = new ArrayList<>();
64
proxies.add(new Proxy(Proxy.Type.HTTP,
65
new InetSocketAddress("localhost", 0)));
66
proxies.add(new Proxy(Proxy.Type.HTTP,
67
new InetSocketAddress("localhost", 0)));
68
return proxies;
69
}
70
}
71
72
private static class NullHTTPProxySelector extends ProxySelector {
73
@Override
74
public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {}
75
76
@Override
77
public List<Proxy> select(URI uri) {
78
List<Proxy> proxies = new ArrayList<>();
79
proxies.add(null);
80
proxies.add(new Proxy(Proxy.Type.HTTP,
81
new InetSocketAddress("localhost", 0)));
82
return proxies;
83
}
84
}
85
}
86
87