You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Stepan Mishura (JIRA)" <ji...@apache.org> on 2006/12/05 12:24:22 UTC

[jira] Resolved: (HARMONY-2408) [classlib][security] java.security.Signer.setKeyPair(null) throws InvalidParameterException while RI throws NPE

     [ http://issues.apache.org/jira/browse/HARMONY-2408?page=all ]

Stepan Mishura resolved HARMONY-2408.
-------------------------------------

    Resolution: Fixed

Thanks Artem  - the bug was fixed in SECURITY module at r482597.

Please check that the fix fully resolves your problem.

> [classlib][security] java.security.Signer.setKeyPair(null) throws InvalidParameterException while RI throws NPE
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2408
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2408
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Artem Aliev
>         Assigned To: Stepan Mishura
>            Priority: Minor
>
> There is no mention of NPE exception in the specification.
> Harmony throws InvalidParameterException for
> java.security.Signer.setKeyPair(null) while RI throws unspecified NPE.
> Compatibility issue.
> import junit.framework.TestCase;
> import java.security.*;
> public class test extends TestCase {      
>     public void test1 () { 
>        try { 
>            SignerImpl obj = new SignerImpl();             
>            obj.setKeyPair(null);
>            fail("NullPointerException should be thrown");                
>        } catch ( KeyException e) {
>            fail("unexpected exception "+e);
>        } catch ( NullPointerException e) {
>          //expected
>        }
>     }
> }
> class SignerImpl extends java.security.Signer {
>     public SignerImpl() {
>         super();
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0
> OK (1 test)
> Output on Harmony:
> ==================
> .E
> Time: 0.015
> There was 1 error:
> 1) test1(test)java.security.InvalidParameterException
>         at java.security.Signer.setKeyPair(Signer.java:82)
>         at test.test1(test.java:8)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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