jdk/test/javax/management/mxbean/MBeanOperationInfoTest.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 1004 5ba8217eb504
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 6359948
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Check that MXBean operations have the expected ReturnType in MBeanOperationInfo
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * @author Luis-Miguel Alventosa
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * @run clean MBeanOperationInfoTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * @run build MBeanOperationInfoTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * @run main MBeanOperationInfoTest
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.lang.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.management.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.management.openmbean.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
public class MBeanOperationInfoTest {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    private static final String[][] returnTypes = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        { "dumpAllThreads(boolean,boolean)", "[Ljavax.management.openmbean.CompositeData;" },
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        { "findDeadlockedThreads()", "[J" },
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        { "findMonitorDeadlockedThreads()", "[J" },
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
        { "getThreadInfo(long)","javax.management.openmbean.CompositeData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        { "getThreadInfo(long,int)","javax.management.openmbean.CompositeData"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        { "getThreadInfo([J)","[Ljavax.management.openmbean.CompositeData;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        { "getThreadInfo([J,int)","[Ljavax.management.openmbean.CompositeData;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        { "getThreadInfo([J,boolean,boolean)","[Ljavax.management.openmbean.CompositeData;"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        { "getThreadCpuTime(long)","long"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        { "getThreadUserTime(long)","long"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        { "resetPeakThreadCount()","void"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        int error = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        int tested = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        ObjectName on = new ObjectName(ManagementFactory.THREAD_MXBEAN_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        MBeanInfo mbi = mbs.getMBeanInfo(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        MBeanOperationInfo[] ops = mbi.getOperations();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        for (MBeanOperationInfo op : ops) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            String name = op.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
            String rt = op.getReturnType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            StringBuilder sb = new StringBuilder();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            sb.append(name + "(");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            for (MBeanParameterInfo param : op.getSignature()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                sb.append(param.getType() + ",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            int comma = sb.lastIndexOf(",");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            if (comma == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                sb.append(")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                sb.replace(comma, comma + 1, ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            System.out.println("\nNAME = " + sb.toString() + "\nRETURN TYPE = " + rt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
            for (String[] rts : returnTypes) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                if (sb.toString().equals(rts[0])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                    if (rt.equals(rts[1])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                        System.out.println("OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                        tested++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                        System.out.println("KO: EXPECTED RETURN TYPE = " + rts[1]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                        error++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        if (error > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            System.out.println("\nTEST FAILED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            throw new Exception("TEST FAILED: " + error + " wrong return types");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        } else if (tested != returnTypes.length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            System.out.println("\nTEST FAILED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            throw new Exception("TEST FAILED: " + tested + " cases tested, " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            returnTypes.length + " expected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            System.out.println("\nTEST PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
}