author | ykantser |
Thu, 07 May 2015 09:11:49 +0200 | |
changeset 30376 | 2ccf2cf7ea48 |
parent 19042 | d6abf1c83aac |
child 44423 | 306c020eb154 |
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 |
* |
30376
2ccf2cf7ea48
8078896: Add @modules as needed to the jdk_svc tests
ykantser
parents:
19042
diff
changeset
|
30 |
* @modules jdk.management |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
31 |
* @run main/othervm DcmdMBeanTest |
17954 | 32 |
*/ |
33 |
||
34 |
||
35 |
import java.lang.management.ManagementFactory; |
|
36 |
import javax.management.Descriptor; |
|
37 |
import javax.management.MBeanInfo; |
|
38 |
import javax.management.MBeanOperationInfo; |
|
39 |
import javax.management.MBeanServer; |
|
40 |
import javax.management.ObjectName; |
|
41 |
import javax.management.*; |
|
42 |
import javax.management.remote.*; |
|
43 |
||
44 |
public class DcmdMBeanTest { |
|
45 |
||
46 |
private static String HOTSPOT_DIAGNOSTIC_MXBEAN_NAME = |
|
47 |
"com.sun.management:type=DiagnosticCommand"; |
|
48 |
||
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
49 |
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
|
50 |
System.out.println("--->JRCMD MBean Test: invocation on \"operation info\"..."); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
51 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
52 |
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
|
53 |
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
|
54 |
JMXConnectorServer cs = null; |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
55 |
JMXConnector cc = null; |
17954 | 56 |
try { |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
57 |
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
|
58 |
cs.start(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
59 |
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
|
60 |
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
|
61 |
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
|
62 |
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
|
63 |
MBeanInfo info = mbsc.getMBeanInfo(name); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
64 |
|
17954 | 65 |
// the test should check that the MBean doesn't have any |
66 |
// Attribute, notification or constructor. Current version only |
|
67 |
// check operations |
|
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
68 |
System.out.println("Class Name:" + info.getClassName()); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
69 |
System.out.println("Description:" + info.getDescription()); |
17954 | 70 |
MBeanOperationInfo[] opInfo = info.getOperations(); |
71 |
System.out.println("Operations:"); |
|
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
72 |
for (int i = 0; i < opInfo.length; i++) { |
17954 | 73 |
printOperation(opInfo[i]); |
74 |
System.out.println("\n@@@@@@\n"); |
|
75 |
} |
|
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
76 |
} finally { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
77 |
try { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
78 |
cc.close(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
79 |
cs.stop(); |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
80 |
} catch (Exception e) { |
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
81 |
} |
17954 | 82 |
} |
19042
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
83 |
|
d6abf1c83aac
8016221: A unit test should not use a fix port to run a jmx connector
sjiang
parents:
17954
diff
changeset
|
84 |
System.out.println("Test passed"); |
17954 | 85 |
} |
86 |
||
87 |
static void printOperation(MBeanOperationInfo info) { |
|
88 |
System.out.println("Name: "+info.getName()); |
|
89 |
System.out.println("Description: "+info.getDescription()); |
|
90 |
System.out.println("Return Type: "+info.getReturnType()); |
|
91 |
System.out.println("Impact: "+info.getImpact()); |
|
92 |
Descriptor desc = info.getDescriptor(); |
|
93 |
System.out.println("Descriptor"); |
|
94 |
for(int i=0; i<desc.getFieldNames().length; i++) { |
|
95 |
if(desc.getFieldNames()[i].compareTo("dcmd.arguments") == 0) { |
|
96 |
System.out.println("\t"+desc.getFieldNames()[i]+":"); |
|
97 |
Descriptor desc2 = |
|
98 |
(Descriptor)desc.getFieldValue(desc.getFieldNames()[i]); |
|
99 |
for(int j=0; j<desc2.getFieldNames().length; j++) { |
|
100 |
System.out.println("\t\t"+desc2.getFieldNames()[j]+"="); |
|
101 |
Descriptor desc3 = |
|
102 |
(Descriptor)desc2.getFieldValue(desc2.getFieldNames()[j]); |
|
103 |
for(int k=0; k<desc3.getFieldNames().length; k++) { |
|
104 |
System.out.println("\t\t\t"+desc3.getFieldNames()[k]+"=" |
|
105 |
+desc3.getFieldValue(desc3.getFieldNames()[k])); |
|
106 |
} |
|
107 |
} |
|
108 |
} else { |
|
109 |
System.out.println("\t"+desc.getFieldNames()[i]+"=" |
|
110 |
+desc.getFieldValue(desc.getFieldNames()[i])); |
|
111 |
} |
|
112 |
} |
|
113 |
} |
|
114 |
} |