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

[jira] Created: (HARMONY-1716) [classlib][x-management] javax.management.relation.Role.roleValueToString(List theRoleValue) does not throw IllegalArgumentException

[classlib][x-management] javax.management.relation.Role.roleValueToString(List theRoleValue) does not throw IllegalArgumentException
------------------------------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-1716
                 URL: http://issues.apache.org/jira/browse/HARMONY-1716
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Svetlana Samoilenko


Description: 
According to J2SE API specifications the method must throw IllegalArgumentException - if null parameter.
Harmony throws NullPointerException instead.

Test for reproducing: 
import junit.framework.TestCase;
import javax.management.relation.*;

public class test extends TestCase  {          
    public void testRoleValueToString_null() { 
        try{
            Role obj= new Role("str",new RoleList();
            obj.roleValueToString(null);
            fail("IllegalArgumentException should be thrown");
        } catch (IllegalArgumentException e) {
            //expected  
        }       		                        
    } 
}

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 
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 
There was 1 failure: 
1) testRoleValueToString_null(test)java.lang.NullPointerException
        at javax.management.relation.Role.roleValueToString(Role.java:87)
        at test.testRoleValueToString_null(test.java:8)
        at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:25)

FAILURES!!!
Tests run: 1,  Failures: 0,  Errors: 1

-- 
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