1 /*
   2  * Copyright (c) 2003, 2008, 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 /*
  25  * @test
  26  * @bug     4858522
  27  * @summary Basic unit test of HotspotClassLoadingMBean.getClassInitializationTime()
  28  * @author  Steve Bohne
  29  * @run main/othervm -XX:+UsePerfData GetClassInitializationTime
  30  */
  31 
  32 /*
  33  * This test is just a sanity check and does not check for the correct value.
  34  */
  35 
  36 import sun.management.*;
  37 
  38 public class GetClassInitializationTime {
  39 
  40     private static HotspotClassLoadingMBean mbean =
  41         (HotspotClassLoadingMBean)ManagementFactoryHelper.getHotspotClassLoadingMBean();
  42 
  43     // Careful with these values.
  44     private static final long MIN_TIME_FOR_PASS = 1;
  45     private static final long MAX_TIME_FOR_PASS = Long.MAX_VALUE;
  46 
  47     private static boolean trace = false;
  48 
  49     public static void main(String args[]) throws Exception {
  50         if (args.length > 0 && args[0].equals("trace")) {
  51             trace = true;
  52         }
  53 
  54         long time = mbean.getClassInitializationTime();
  55 
  56         if (trace) {
  57             System.out.println("Class initialization time (ms): " + time);
  58         }
  59 
  60         if (time < MIN_TIME_FOR_PASS || time > MAX_TIME_FOR_PASS) {
  61             throw new RuntimeException("Class initialization time " +
  62                                        "illegal value: " + time + " ms " +
  63                                        "(MIN = " + MIN_TIME_FOR_PASS + "; " +
  64                                        "MAX = " + MAX_TIME_FOR_PASS + ")");
  65         }
  66 
  67         // Load a class and make sure the time increases
  68         Class.forName("ClassToInitialize");
  69 
  70         long time2 = mbean.getClassInitializationTime();
  71 
  72         if (trace) {
  73             System.out.println("Class initialization time2 (ms): " + time2);
  74         }
  75 
  76         if (time2 <= time) {
  77             throw new RuntimeException("Class initialization time " +
  78                                        "did not increase when class loaded " +
  79                                        "(time = " + time + "; " +
  80                                        "time2 = " + time2 + ")");
  81         }
  82 
  83         System.out.println("Test passed.");
  84     }
  85 }
  86 
  87 // This class should just cause the initialization timer to run
  88 class ClassToInitialize {
  89     static {
  90         try {
  91             Thread.sleep(1000);
  92         } catch (InterruptedException ie) {
  93             // do nothing
  94         }
  95     }
  96 }