You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Pavel Dolgov (JIRA)" <ji...@apache.org> on 2006/12/06 14:36:26 UTC

[jira] Created: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

[classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
-----------------------------------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-2495
                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Pavel Dolgov
            Priority: Minor


Test case:
--------------
import java.beans.EventHandler;

import junit.framework.TestCase;

public class TheTest extends TestCase {

    public static void main(String args[]) {
        junit.textui.TestRunner.run(TheTest.class);
    }

    public void testcase1() {
        try {
            EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
            obj.invoke(new Object(), null, new Object[] {});
            fail("NullPointerException expected");
        } catch (NullPointerException e) {
        }
    }
}

RI output:
-------------
.
Time: 0,02

OK (1 test)


Harmony output:
-------------
.F
Time: 0.02
There was 1 failure:
1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
	at TheTest.testcase1(TheTest.java:15)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:8)

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


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

        

[jira] Updated: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2495?page=all ]

Tony Wu updated HARMONY-2495:
-----------------------------

    Attachment: harmony-2495.diff

patch and test. 
would you please try it.

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>         Attachments: harmony-2495.diff
>
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Commented: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Pavel Dolgov (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2495?page=comments#action_12460230 ] 
            
Pavel Dolgov commented on HARMONY-2495:
---------------------------------------

Verified with trunk built on 12 Dec 2006

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Richard Liang
>            Priority: Minor
>         Attachments: harmony-2495.diff
>
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Resolved: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2495?page=all ]

Richard Liang resolved HARMONY-2495.
------------------------------------

    Resolution: Fixed

Hello Tony,

The patch has been applied at revision r488103, thanks a lot for this enhancement.

Pavel, would you please verify the patch is fully fixed as you expected.

Best regards,
Richard.

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Richard Liang
>            Priority: Minor
>         Attachments: harmony-2495.diff
>
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Commented: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2495?page=comments#action_12458421 ] 
            
Tony Wu commented on HARMONY-2495:
----------------------------------

Oops, I posted the comments for 2429 to this issue. 
That's a real bug, I'm looking into.

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Assigned: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2495?page=all ]

Richard Liang reassigned HARMONY-2495:
--------------------------------------

    Assignee: Richard Liang

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Richard Liang
>            Priority: Minor
>         Attachments: harmony-2495.diff
>
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Closed: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Richard Liang (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-2495?page=all ]

Richard Liang closed HARMONY-2495.
----------------------------------


Verified by  Pavel.

Pavel, I think you mean Verified with trunk built on *21* Dec 2006 ;-)

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Richard Liang
>            Priority: Minor
>         Attachments: harmony-2495.diff
>
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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

        

[jira] Commented: (HARMONY-2495) [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null

Posted by "Tony Wu (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2495?page=comments#action_12458419 ] 
            
Tony Wu commented on HARMONY-2495:
----------------------------------

The testcase aforementioned passed on my machine with classlib r484851.

> [classlib][beans] java.beans.EventHandler.invoke( Object,Method method,Object[] arguments) does not throw unspecified NPE if method==null
> -----------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2495
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2495
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.beans.EventHandler;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         try {
>             EventHandler obj = new EventHandler(new Object(), "a", "a", "a");
>             obj.invoke(new Object(), null, new Object[] {});
>             fail("NullPointerException expected");
>         } catch (NullPointerException e) {
>         }
>     }
> }
> RI output:
> -------------
> .
> Time: 0,02
> OK (1 test)
> Harmony output:
> -------------
> .F
> Time: 0.02
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: NullPointerException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

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