21359
|
1 |
/*
|
|
2 |
* Copyright (c) 2013, 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 |
/* @test
|
|
25 |
* @bug 8023862
|
|
26 |
* @summary Verify that the default value of the java.rmi.server.disableHttp
|
|
27 |
* has been changed from false to true.
|
|
28 |
* @compile -XDignore.symbol.file DisableHttpDefaultValue.java
|
|
29 |
*
|
|
30 |
* @run main/othervm DisableHttpDefaultValue true
|
|
31 |
* @run main/othervm -Djava.rmi.server.disableHttp DisableHttpDefaultValue false
|
|
32 |
* @run main/othervm -Djava.rmi.server.disableHttp=false DisableHttpDefaultValue false
|
|
33 |
* @run main/othervm -Djava.rmi.server.disableHttp=xyzzy DisableHttpDefaultValue false
|
|
34 |
* @run main/othervm -Djava.rmi.server.disableHttp=true DisableHttpDefaultValue true
|
|
35 |
*/
|
|
36 |
|
|
37 |
import sun.rmi.transport.proxy.RMIMasterSocketFactory;
|
|
38 |
|
|
39 |
public class DisableHttpDefaultValue {
|
|
40 |
/**
|
|
41 |
* Subclass RMIMasterSocketFactory to get access to
|
|
42 |
* protected field altFactoryList. This list has a
|
|
43 |
* zero size if proxying is disabled.
|
|
44 |
*/
|
|
45 |
static class SocketFactory extends RMIMasterSocketFactory {
|
|
46 |
boolean proxyDisabled() {
|
|
47 |
return altFactoryList.size() == 0;
|
|
48 |
}
|
|
49 |
}
|
|
50 |
|
|
51 |
/**
|
|
52 |
* Takes a single arg, which is the expected boolean value of
|
|
53 |
* java.rmi.server.disableHttp.
|
|
54 |
*/
|
|
55 |
public static void main(String[] args) throws Exception {
|
|
56 |
// Force there to be a proxy host, so that we are able to
|
|
57 |
// tell whether proxying is enabled or disabled.
|
|
58 |
System.setProperty("http.proxyHost", "proxy.example.com");
|
|
59 |
|
|
60 |
String propval = System.getProperty("java.rmi.server.disableHttp");
|
|
61 |
String propdisp = (propval == null) ? "null" : ("\"" + propval + "\"");
|
|
62 |
boolean expected = Boolean.parseBoolean(args[0]);
|
|
63 |
boolean actual = new SocketFactory().proxyDisabled();
|
|
64 |
System.out.printf("### prop=%s exp=%s act=%s%n", propdisp, expected, actual);
|
|
65 |
if (expected != actual)
|
|
66 |
throw new AssertionError();
|
|
67 |
}
|
|
68 |
}
|