Package test.performance.dynamic

Source Code of test.performance.dynamic.ThroughputTEST$MyThread

/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/

package test.performance.dynamic;

import junit.framework.TestCase;
import test.performance.PerformanceSUITE;
import test.performance.dynamic.support.Dyn;

import javax.management.*;


public class ThroughputTEST extends TestCase
{

   public ThroughputTEST(String s)
   {
      super(s);
   }

   public void testInvocation()
   {
      try
      {
         MyThread myThread = new MyThread();
         Thread t = new Thread(myThread);

         MBeanServer server = MBeanServerFactory.createMBeanServer();
         ObjectName name    = new ObjectName("Domain:performanceTest=dynamic");
         Dyn mbean          = new Dyn();
        
         String method      = "mixedArguments";
         String[] signature = new String[] {
                                 Integer.class.getName(),
                                 int.class.getName(),
                                 Object[][][].class.getName(),
                                 Attribute.class.getName()
                              };
                             
         Object[] args      = new Object[] {
                                 new Integer(1234),
                                 new Integer(455617),
                                 new Object[][][] {
                                    {
                                       { "1x1x1", "1x1x2", "1x1x3" },
                                       { "1x2x1", "1x2x2", "1x2x3" },
                                       { "1x3x1", "1x3x2", "1x3x3" }
                                    },
                                   
                                    {
                                       { "2x1x1", "2x1x2", "2x1x3" },
                                       { "2x2x1", "2x2x2", "2x2x3" },
                                       { "2x3x1", "2x3x2", "2x3x3" }
                                    },
                                   
                                    {
                                       { "3x1x1", "3x1x2", "3x1x3" },
                                       { "3x2x1", "3x2x2", "3x2x3" },
                                       { "3x3x1", "3x3x2", "3x3x3" }
                                    }
                                 },
                                 new Attribute("attribute", "value")
                              };
                                   
         server.registerMBean(mbean, name);

         assertTrue(mbean.getCount() == 0);

         t.start();
         while(myThread.isKeepRunning())
         {
            Object o = server.invoke(name, method, args, signature);
         }

         System.out.println("\nDynamic MBean Throughput: " +
                             mbean.getCount() / (PerformanceSUITE.THROUGHPUT_TIME / PerformanceSUITE.SECOND) +
                            " invocations per second.");
         System.out.println("(Total: " + mbean.getCount() + ")\n");
//         System.out.println("\nDynamic MBean Throughput: " + mbean.getCount() / 3 + " invocations per second.");
//         System.out.println("(Total: " + mbean.getCount() + ")\n");
        
      }
      catch (Throwable t)
      {
         t.printStackTrace();
         fail("Unexpected error: " + t.toString());
      }
   }

  
   public void testInvocationWithDefaultDomain()
   {
      try
      {
         MyThread myThread = new MyThread();
         Thread t = new Thread(myThread);

         MBeanServer server = MBeanServerFactory.createMBeanServer();
         ObjectName name    = new ObjectName(":performanceTest=dynamic");
         Dyn mbean          = new Dyn();
        
         String method      = "mixedArguments";
         String[] signature = new String[] {
                                 Integer.class.getName(),
                                 int.class.getName(),
                                 Object[][][].class.getName(),
                                 Attribute.class.getName()
                              };
                             
         Object[] args      = new Object[] {
                                 new Integer(1234),
                                 new Integer(455617),
                                 new Object[][][] {
                                    {
                                       { "1x1x1", "1x1x2", "1x1x3" },
                                       { "1x2x1", "1x2x2", "1x2x3" },
                                       { "1x3x1", "1x3x2", "1x3x3" }
                                    },
                                   
                                    {
                                       { "2x1x1", "2x1x2", "2x1x3" },
                                       { "2x2x1", "2x2x2", "2x2x3" },
                                       { "2x3x1", "2x3x2", "2x3x3" }
                                    },
                                   
                                    {
                                       { "3x1x1", "3x1x2", "3x1x3" },
                                       { "3x2x1", "3x2x2", "3x2x3" },
                                       { "3x3x1", "3x3x2", "3x3x3" }
                                    }
                                 },
                                 new Attribute("attribute", "value")
                              };
                                   
         server.registerMBean(mbean, name);

         assertTrue(mbean.getCount() == 0);

         t.start();
         while(myThread.isKeepRunning())
         {
            Object o = server.invoke(name, method, args, signature);
         }

         System.out.println("\nDynamic MBean Throughput (DEFAULTDOMAIN): " +
                             mbean.getCount() / (PerformanceSUITE.THROUGHPUT_TIME / PerformanceSUITE.SECOND) +
                            " invocations per second.");
         System.out.println("(Total: " + mbean.getCount() + ")\n");
        
      }
      catch (Throwable t)
      {
         t.printStackTrace();
         fail("Unexpected error: " + t.toString());
      }
   }
  
   class MyThread implements Runnable
   {

      private boolean keepRunning = true;
     
      public void run()
      {
         try
         {
            Thread.sleep(PerformanceSUITE.THROUGHPUT_TIME);
         }
         catch (InterruptedException e)
         {
           
         }
        
         keepRunning = false;
      }
     
      public boolean isKeepRunning()
      {
         return keepRunning;
      }
   }
  
}
TOP

Related Classes of test.performance.dynamic.ThroughputTEST$MyThread

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.