1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/*
* Copyright (c) 2004, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 6192124
* @summary Tests that you can turn off the server connection timeout thread
* @author Eamonn McManus
*
* @run clean NoServerTimeoutTest
* @run build NoServerTimeoutTest
* @run main NoServerTimeoutTest
*/
import java.lang.management.*;
import java.net.MalformedURLException;
import java.util.*;
import javax.management.*;
import javax.management.remote.*;
public class NoServerTimeoutTest {
public static void main(String[] args) throws Exception {
boolean ok = true;
for (String proto : new String[] {"rmi", "iiop", "jmxmp"}) {
JMXServiceURL url = new JMXServiceURL(proto, null, 0);
try {
MBeanServer mbs = MBeanServerFactory.newMBeanServer();
// Create server just to see if the protocol is supported
JMXConnectorServerFactory.newJMXConnectorServer(url,
null,
mbs);
} catch (MalformedURLException e) {
System.out.println();
System.out.println("Ignoring protocol: " + proto);
continue;
}
try {
ok &= test(url);
} catch (Exception e) {
System.out.println("TEST FAILED WITH EXCEPTION:");
e.printStackTrace();
ok = false;
}
}
System.out.println();
if (ok)
System.out.println("Test passed");
else
throw new Exception("Test failed");
}
private static enum Test {
NO_ENV("No Map for connector server"),
EMPTY_ENV("Empty Map for connector server"),
PLAIN_TIMEOUT("Map with two-minute timeout as int"),
PLAIN_STRING_TIMEOUT("Map with two-minute timeout as string"),
INFINITE_TIMEOUT("Map with Long.MAX_VALUE timeout as long"),
INFINITE_STRING_TIMEOUT("Map with Long.MAX_VALUE timeout as string");
Test(String description) {
this.description = description;
}
public String toString() {
return description;
}
private final String description;
}
// define which tests should see a timeout thread
private static final Set<Test> expectThread =
EnumSet.copyOf(Arrays.asList(Test.NO_ENV,
Test.EMPTY_ENV,
Test.PLAIN_TIMEOUT,
Test.PLAIN_STRING_TIMEOUT));
private static boolean test(JMXServiceURL url) throws Exception {
System.out.println();
System.out.println("Test: " + url);
boolean ok = true;
for (Test test : Test.values())
ok &= test(url, test);
return ok;
}
private static final String TIMEOUT =
"jmx.remote.x.server.connection.timeout";
private static boolean test(JMXServiceURL url, Test test)
throws Exception {
System.out.println("* " + test);
MBeanServer mbs = MBeanServerFactory.newMBeanServer();
Map<String, Object> env = new HashMap<String, Object>();
switch (test) {
case NO_ENV: env = null; break;
case EMPTY_ENV: break;
case PLAIN_TIMEOUT: env.put(TIMEOUT, 120 * 1000L); break;
case PLAIN_STRING_TIMEOUT: env.put(TIMEOUT, (120 * 1000L) + ""); break;
case INFINITE_TIMEOUT: env.put(TIMEOUT, Long.MAX_VALUE); break;
case INFINITE_STRING_TIMEOUT: env.put(TIMEOUT, "" + Long.MAX_VALUE);
break;
default: throw new AssertionError();
}
// In case there's a timeout thread left over from a previous run
for (int i = 0; i < 10 && countTimeoutThreads() > 0; i++)
Thread.sleep(500);
if (countTimeoutThreads() > 0) {
System.out.println("TIMEOUT THREAD(S) WOULD NOT GO AWAY");
return false;
}
JMXConnectorServer cs =
JMXConnectorServerFactory.newJMXConnectorServer(url, env, mbs);
cs.start();
JMXServiceURL addr = cs.getAddress();
JMXConnector cc = JMXConnectorFactory.connect(addr);
MBeanServerConnection mbsc = cc.getMBeanServerConnection();
mbsc.getDefaultDomain();
int expectTimeoutThreads = expectThread.contains(test) ? 1 : 0;
int timeoutThreads = countTimeoutThreads();
boolean ok = (expectTimeoutThreads == timeoutThreads);
if (!ok) {
System.out.println("TEST FAILS: Expected timeout threads: " +
expectTimeoutThreads +
"; actual timeout threads: " + timeoutThreads);
ok = false;
}
cc.close();
cs.stop();
return ok;
}
private static int countTimeoutThreads() {
ThreadMXBean mb = ManagementFactory.getThreadMXBean();
int count = 0;
long[] ids = mb.getAllThreadIds();
for (ThreadInfo ti : mb.getThreadInfo(ids)) {
if (ti != null &&
ti.getThreadName().startsWith("JMX server connection timeout"))
count++;
}
return count;
}
}
|