Package test.compliance.notcompliant

Source Code of test.compliance.notcompliant.NCMBeanTEST

/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.compliance.notcompliant;

import junit.framework.TestCase;

import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;
import javax.management.MBeanInfo;
import javax.management.MBeanServerFactory;
import javax.management.MBeanServer;
import javax.management.NotCompliantMBeanException;
import javax.management.ObjectInstance;
import java.util.Hashtable;

import test.compliance.notcompliant.support.OverloadedAttribute1;
import test.compliance.notcompliant.support.OverloadedAttribute2;
import test.compliance.notcompliant.support.OverloadedAttribute3;
import test.compliance.notcompliant.support.OverloadedAttribute4;
import test.compliance.notcompliant.support.OverloadedAttribute5;
import test.compliance.notcompliant.support.InterfaceProblems;
import test.compliance.notcompliant.support.DynamicAndStandard;
import test.compliance.notcompliant.support.NullDynamic;

public class NCMBeanTEST extends TestCase
{
   public NCMBeanTEST(String s)
   {
      super(s);
   }

   public void testOverloadedAttribute1()
   {
      registerAndTest(new OverloadedAttribute1());
   }

   public void testOverloadedAttribute2()
   {
      registerAndTest(new OverloadedAttribute2());
   }

   public void testOverloadedAttribute3()
   {
      registerAndTest(new OverloadedAttribute3());
   }

   public void testOverloadedAttribute4()
   {
      registerAndTest(new OverloadedAttribute4());
   }

   public void testOverloadedAttribute5()
   {
      registerAndTest(new OverloadedAttribute5());
   }

   public void testMixedDynamicStandard()
   {
      MBeanServer server = MBeanServerFactory.createMBeanServer();
      try
      {
         server.registerMBean(new DynamicAndStandard(), new ObjectName("test:foo=bar"));
         MBeanInfo info = server.getMBeanInfo(new ObjectName("test:foo=bar"));
         assertTrue("A mixed dynamic and standard mbean should be dynamic",
                    info.getDescription().equals(DynamicAndStandard.DESCRIPTION));
      }
      catch (NotCompliantMBeanException e)
      {
         fail("A mixed dynamic and standardmbean is allowed from jmx 1.1");
      }
      catch (Exception e)
      {
         fail("unexpected exception when registering " + DynamicAndStandard.class.getName() + ": " + e.getMessage());
      }
      finally
      {
         MBeanServerFactory.releaseMBeanServer(server);
      }
   }

   public void testNoConstructor()
   {
      try
      {
         registerAndDontTest(NoConstructor.getInstance());
      }
      catch (NotCompliantMBeanException e)
      {
         fail("An MBean without a public constructor is allowed from jmx 1.1");
      }
   }

   public void testInterfaceProblems()
   {
      try
      {
         registerAndDontTest(new InterfaceProblems());
      }
      catch (NotCompliantMBeanException e)
      {
         fail("FAILS IN RI: Cannot cope with overriden get/is in interfaces");
      }
   }

   public void testNullDynamic()
      throws Exception
   {
      MBeanServer server = MBeanServerFactory.newMBeanServer();
      ObjectName name = new ObjectName("test:test=test");
      boolean caught = false;
      try
      {
         server.registerMBean(new NullDynamic(), name);
      }
      catch (NotCompliantMBeanException e)
      {
         caught = true;
      }
      assertTrue("Expected NCME for null MBeanInfo", caught);       
   }

   private void registerAndTest(Object mbean)
   {
      MBeanServer server = MBeanServerFactory.createMBeanServer();
      try
      {
         server.registerMBean(mbean, new ObjectName("test:foo=bar"));
         fail("expected a NotCompliantMBeanException for " + mbean.getClass().getName());
      }
      catch (NotCompliantMBeanException e)
      {
         // this is what we want
      }
      catch (Exception e)
      {
         fail("unexpected exception when registering " + mbean.getClass().getName() + ": " + e);
      }
      finally
      {
         MBeanServerFactory.releaseMBeanServer(server);
      }
   }

   private void registerAndDontTest(Object mbean)
      throws NotCompliantMBeanException
   {
      MBeanServer server = MBeanServerFactory.createMBeanServer();
      try
      {
         server.registerMBean(mbean, new ObjectName("test:foo=bar"));
      }
      catch (NotCompliantMBeanException e)
      {
         throw e;
      }
      catch (Exception e)
      {
         fail("unexpected exception when registering " + mbean.getClass().getName() + ": " + e.getMessage());
      }
      finally
      {
         MBeanServerFactory.releaseMBeanServer(server);
      }
   }
}
TOP

Related Classes of test.compliance.notcompliant.NCMBeanTEST

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.