jdk/test/java/net/ProxySelector/SystemProxies.java
author mikael
Fri, 04 Dec 2015 15:08:49 -0800
changeset 35090 1f5b6aa795d0
parent 21354 fc38b5f28a90
child 43501 243c346dc905
permissions -rw-r--r--
8144748: Move assembler/macroAssembler inline function definitions to corresponding inline.hpp files Reviewed-by: kvn, coleenp
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     1
/*
21354
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
     2
 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     4
 *
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     7
 * published by the Free Software Foundation.
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     8
 *
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    13
 * accompanied this code).
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    14
 *
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4922
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4922
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4922
diff changeset
    21
 * questions.
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    22
 */
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    23
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    24
/*
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    25
 * This is a manual test to determine the proxies set on the system for various
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    26
 * protocols. See bug 6912868.
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    27
 */
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    28
import java.net.Proxy;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    29
import java.net.ProxySelector;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    30
import java.net.URI;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    31
import java.net.URISyntaxException;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    32
import java.util.List;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    33
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    34
public class SystemProxies {
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    35
21354
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    36
    static final String[] uriAuthority = { "myMachine/", "local", "localhost",
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    37
                                           "127.0.0.1", "127.0.0.123",
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    38
                                           "127.0.2.2", "127.3.3.3",
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    39
                                           "128.0.0.1" };
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    40
    static final ProxySelector proxySel = ProxySelector.getDefault();
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    41
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    42
    public static void main(String[] args) {
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    43
        if (! "true".equals(System.getProperty("java.net.useSystemProxies"))) {
21354
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    44
            System.out.println("Usage: java -Djava.net.useSystemProxies=true SystemProxies");
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    45
            return;
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    46
        }
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    47
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    48
        printProxies("http://");
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    49
        printProxies("https://");
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    50
        printProxies("ftp://");
21354
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    51
        printProxies("none://");
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    52
        printProxies("gopher://");
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    53
        printProxies("rtsp://");
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    54
        printProxies("socket://");
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    55
    }
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    56
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    57
    static void printProxies(String proto) {
21354
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    58
        System.out.println("Protocol:" + proto);
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    59
        for (String uri : uriAuthority) {
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    60
            String uriStr =  proto + uri;
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    61
            try {
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    62
                List<Proxy> proxies = proxySel.select(new URI(uriStr));
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    63
                System.out.println("\tProxies returned for " + uriStr);
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    64
                for (Proxy proxy : proxies)
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    65
                    System.out.println("\t\t" + proxy);
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    66
            } catch (URISyntaxException e) {
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    67
                System.err.println(e);
fc38b5f28a90 7122887: JDK ignores Gnome3 proxy settings
dxu
parents: 5506
diff changeset
    68
            }
4922
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    69
        }
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    70
    }
16f23522269d 6912868: "java.net.useSystemProxies" behavior fails to check "use_same_proxy" in GNOME
chegar
parents:
diff changeset
    71
}