You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Denis Kishenko (JIRA)" <ji...@apache.org> on 2006/12/07 09:53:21 UTC

[jira] Created: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

[classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
-------------------------------------------------------------------------------------------------------------

                 Key: HARMONY-2512
                 URL: http://issues.apache.org/jira/browse/HARMONY-2512
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Denis Kishenko


There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
Compatibility issue.

Test for reproducing:

import junit.framework.TestCase;
import javax.swing.*;
import javax.swing.plaf.basic.BasicPopupMenuUI;

public class Test extends TestCase {       
    public void testcase1() {
        BasicPopupMenuUI m = new BasicPopupMenuUI();
        try {
            m.isPopupTrigger(null);             
            fail("NPE should be thrown");
        } catch ( NullPointerException e) { 
        }
    }
}

Output on Sun 1.5:
==================
.
Time: 0.282

OK (1 test)

Output on Harmony:
==================
.F
Time: 0.015
There was 1 failure:
1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
        at Test.testcase1(Test.java:27)
        at java.lang.reflect.VMReflection.invokeMethod(Native Method)

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-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov closed HARMONY-2512.
------------------------------------


closed

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov resolved HARMONY-2512.
--------------------------------------

    Resolution: Fixed

Thanks Denis and Sergey. The patch was applied at the revision 506428. Please verify that it was applied as expected.

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12472273 ] 

Sergey Krivenko commented on HARMONY-2512:
------------------------------------------

Verified. 

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Krivenko updated HARMONY-2512:
-------------------------------------

    Attachment: Harmony-2512-BasicPopupMenuUI.patch

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov updated HARMONY-2512:
-------------------------------------

    Patch Info: [Patch Available]

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Krivenko updated HARMONY-2512:
-------------------------------------

    Attachment: Harmony-2512-BasicPopupMenuUITest.patch

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Assigned: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Alexei Zakharov (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexei Zakharov reassigned HARMONY-2512:
----------------------------------------

    Assignee: Alexei Zakharov

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Assigned To: Alexei Zakharov
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HARMONY-2512) [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE

Posted by "Sergey Krivenko (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HARMONY-2512?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12464875 ] 

Sergey Krivenko commented on HARMONY-2512:
------------------------------------------

The patch is available. Please mark it with an appropriate flag.

> [classlib][swing] javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) does not throw unspecified NPE
> -------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2512
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2512
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Denis Kishenko
>         Attachments: Harmony-2512-BasicPopupMenuUI.patch, Harmony-2512-BasicPopupMenuUITest.patch
>
>
> There is no mention of any exceptions in the specification. Harmony does not throw unspecified NPE for javax.swing.plaf.basic.BasicPopupMenuUI.isPopupTrigger(null) while RI does. 
> Compatibility issue.
> Test for reproducing:
> import junit.framework.TestCase;
> import javax.swing.*;
> import javax.swing.plaf.basic.BasicPopupMenuUI;
> public class Test extends TestCase {       
>     public void testcase1() {
>         BasicPopupMenuUI m = new BasicPopupMenuUI();
>         try {
>             m.isPopupTrigger(null);             
>             fail("NPE should be thrown");
>         } catch ( NullPointerException e) { 
>         }
>     }
> }
> Output on Sun 1.5:
> ==================
> .
> Time: 0.282
> OK (1 test)
> Output on Harmony:
> ==================
> .F
> Time: 0.015
> There was 1 failure:
> 1) testcase1(Test)junit.framework.AssertionFailedError: NPE should be thrown
>         at Test.testcase1(Test.java:27)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 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: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira