author | prr |
Fri, 25 May 2018 12:12:24 -0700 | |
changeset 50347 | b2f046ae8eb6 |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
17954 | 1 |
/* |
30376
2ccf2cf7ea48
8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents:
19042
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. |
17954 | 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 7150256 |
|
27 |
* @summary Basic Test for the DiagnosticCommandMBean |
|
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
28 |
* @author Frederic Parain, Shanliang JIANG |
17954 | 29 |
* |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
30 |
* @run main/othervm DcmdMBeanDoubleInvocationTest |
17954 | 31 |
*/ |
32 |
||
33 |
||
34 |
import java.lang.management.ManagementFactory; |
|
35 |
import javax.management.MBeanServer; |
|
36 |
import javax.management.ObjectName; |
|
37 |
import javax.management.*; |
|
38 |
import javax.management.remote.*; |
|
39 |
||
40 |
public class DcmdMBeanDoubleInvocationTest { |
|
41 |
||
42 |
private static String HOTSPOT_DIAGNOSTIC_MXBEAN_NAME = |
|
43 |
"com.sun.management:type=DiagnosticCommand"; |
|
44 |
||
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
45 |
public static void main(String[] args) throws Exception { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
46 |
System.out.println("--->JRCMD MBean Test: invocation on \"help VM.version\" ..."); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
47 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
48 |
ObjectName name = new ObjectName(HOTSPOT_DIAGNOSTIC_MXBEAN_NAME); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
49 |
String[] helpArgs = {"-all", "\n", "VM.version"}; |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
50 |
Object[] dcmdArgs = {helpArgs}; |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
51 |
String[] signature = {String[].class.getName()}; |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
52 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
53 |
MBeanServer mbs = ManagementFactory.getPlatformMBeanServer(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
54 |
JMXServiceURL url = new JMXServiceURL("rmi", null, 0); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
55 |
JMXConnectorServer cs = null; |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
56 |
JMXConnector cc = null; |
17954 | 57 |
try { |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
58 |
cs = JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
59 |
cs.start(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
60 |
JMXServiceURL addr = cs.getAddress(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
61 |
cc = JMXConnectorFactory.connect(addr); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
62 |
MBeanServerConnection mbsc = cc.getMBeanServerConnection(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
63 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
64 |
String result = (String) mbsc.invoke(name, "help", dcmdArgs, signature); |
17954 | 65 |
System.out.println(result); |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
66 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
67 |
throw new Error("Test failed: Double commands have not been detected"); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
68 |
} catch (RuntimeMBeanException ex) { |
17954 | 69 |
if (ex.getCause() instanceof IllegalArgumentException) { |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
70 |
System.out.println("JTest passed: Double commands have been detected"); |
17954 | 71 |
} else { |
72 |
ex.printStackTrace(); |
|
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
73 |
throw new Error("TEST FAILED: got unknown exception "+ex); |
17954 | 74 |
} |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
75 |
} finally { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
76 |
try { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
77 |
cc.close(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
78 |
cs.stop(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
79 |
} catch (Exception e) { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
80 |
} |
17954 | 81 |
} |
82 |
} |
|
83 |
} |