You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Nikolay Bannikov (JIRA)" <ji...@apache.org> on 2006/10/06 05:05:20 UTC

[jira] Created: (HARMONY-1732) [classlib][x-management] javax.management.modelmbean.RequiredModelMBean.store() does not throw MBeanException

[classlib][x-management] javax.management.modelmbean.RequiredModelMBean.store() does not throw MBeanException
-------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-1732
                 URL: http://issues.apache.org/jira/browse/HARMONY-1732
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Nikolay Bannikov


Description: 
According to J2SE API specifications of javax.management.modelmbean.RequiredModelMBean, method store()  throws
MBeanException - Wraps another exception, or persistence is not supported. Harmony implementation does not throw MBeanException, while RI does.
 
Test for reproducing:   

import junit.framework.TestCase;
import javax.management.modelmbean.RequiredModelMBean;
import javax.management.MBeanException;
import javax.management.RuntimeOperationsException;
import javax.management.InstanceNotFoundException;

public class Test extends TestCase {       
    public void testRequiredModelMBean_Store() throws RuntimeOperationsException, MBeanException {
        RequiredModelMBean r = new RequiredModelMBean();
        try {
            r.store();
            fail("MBeanException should be thrown");
        } catch (MBeanException e) {
            //expected
        } catch (InstanceNotFoundException ie) {
            fail("MBeanException should be thrown");
        }
   }
}


 Output on Sun 1.5: 
================== 
java version "1.5.0_06" 
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) 
Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode) 
. 
Time: 0.016 
OK (1 test)   

Output on Harmony: 
================== 
 Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. 
java version "1.5.0" pre-alpha : not complete or compatible 
svn = r452710, (Oct 4 2006), Windows/ia32/msvc 1310, release build 
http://incubator.apache.org/harmony 

.F
Time: 0.344
There was 1 failure:
1) testRequiredModelMBean_Store(Test)junit.framework.AssertionFailedError: MBeanException should be thrown
        at Test.testRequiredModelMBean_Store(Test.java:26)
        at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:25) 


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira