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 15:30:25 UTC

[jira] Created: (HARMONY-2499) [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code

[classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code
---------------------------------------------------------------------------------------------------------------------------

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


Test case:
--------------
import java.awt.AWTKeyStroke;
import java.awt.Container;
import java.awt.event.KeyEvent;

import junit.framework.TestCase;

public class TheTest extends TestCase {

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

    public void testcase1() {
        KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
        AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
        assertNull(str);
    }

    public void testcase2() {
        assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
    }
}

RI output:
-------------

Harmony output:
-------------
.F.E
Time: 0.501
There was 1 error:
1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
	at java.lang.String.charAt(String.java:591)
	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
	at TheTest.testcase2(TheTest.java:20)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)
There was 1 failure:
1) testcase1(TheTest)junit.framework.AssertionFailedError
	at TheTest.testcase1(TheTest.java:15)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)

FAILURES!!!
Tests run: 2,  Failures: 1,  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

        

[jira] Commented: (HARMONY-2499) [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code

Posted by "Andrey Pavlenko (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-2499?page=comments#action_12459373 ] 
            
Andrey Pavlenko commented on HARMONY-2499:
------------------------------------------

This is a duplicate of http://issues.apache.org/jira/browse/HARMONY-2499

> [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code
> ---------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2499
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2499
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.awt.AWTKeyStroke;
> import java.awt.Container;
> import java.awt.event.KeyEvent;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
>         AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
>         assertNull(str);
>     }
>     public void testcase2() {
>         assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
>     }
> }
> RI output:
> -------------
> ..
> Time: 0,15
> OK (2 tests)
> Harmony output:
> -------------
> .F.E
> Time: 0.501
> There was 1 error:
> 1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
> 	at java.lang.String.charAt(String.java:591)
> 	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
> 	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
> 	at TheTest.testcase2(TheTest.java:20)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> FAILURES!!!
> Tests run: 2,  Failures: 1,  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

        

[jira] Closed: (HARMONY-2499) [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code

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

Mark Hindess closed HARMONY-2499.
---------------------------------

    Resolution: Fixed
      Assignee: Mark Hindess

Closing as duplicate.


> [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code
> ---------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2499
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2499
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>         Assigned To: Mark Hindess
>            Priority: Minor
>
> Test case:
> --------------
> import java.awt.AWTKeyStroke;
> import java.awt.Container;
> import java.awt.event.KeyEvent;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
>         AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
>         assertNull(str);
>     }
>     public void testcase2() {
>         assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
>     }
> }
> RI output:
> -------------
> ..
> Time: 0,15
> OK (2 tests)
> Harmony output:
> -------------
> .F.E
> Time: 0.501
> There was 1 error:
> 1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
> 	at java.lang.String.charAt(String.java:591)
> 	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
> 	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
> 	at TheTest.testcase2(TheTest.java:20)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> FAILURES!!!
> Tests run: 2,  Failures: 1,  Errors: 1

-- 
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-2499) [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code

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

Pavel Dolgov updated HARMONY-2499:
----------------------------------

    Description: 
Test case:
--------------
import java.awt.AWTKeyStroke;
import java.awt.Container;
import java.awt.event.KeyEvent;

import junit.framework.TestCase;

public class TheTest extends TestCase {

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

    public void testcase1() {
        KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
        AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
        assertNull(str);
    }

    public void testcase2() {
        assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
    }
}

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

OK (2 tests)


Harmony output:
-------------
.F.E
Time: 0.501
There was 1 error:
1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
	at java.lang.String.charAt(String.java:591)
	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
	at TheTest.testcase2(TheTest.java:20)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)
There was 1 failure:
1) testcase1(TheTest)junit.framework.AssertionFailedError
	at TheTest.testcase1(TheTest.java:15)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)

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


  was:
Test case:
--------------
import java.awt.AWTKeyStroke;
import java.awt.Container;
import java.awt.event.KeyEvent;

import junit.framework.TestCase;

public class TheTest extends TestCase {

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

    public void testcase1() {
        KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
        AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
        assertNull(str);
    }

    public void testcase2() {
        assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
    }
}

RI output:
-------------

Harmony output:
-------------
.F.E
Time: 0.501
There was 1 error:
1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
	at java.lang.String.charAt(String.java:591)
	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
	at TheTest.testcase2(TheTest.java:20)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)
There was 1 failure:
1) testcase1(TheTest)junit.framework.AssertionFailedError
	at TheTest.testcase1(TheTest.java:15)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:10)

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



> [classlib][awt] java.awt.event.KeyEvent.getKeyText() throws unexpected StringIndexOutOfBoundsException for unknown key code
> ---------------------------------------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2499
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2499
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.awt.AWTKeyStroke;
> import java.awt.Container;
> import java.awt.event.KeyEvent;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         KeyEvent evt = new KeyEvent(new Container(), 1, 2, 3, 4, 'a');
>         AWTKeyStroke str = AWTKeyStroke.getAWTKeyStrokeForEvent(evt);
>         assertNull(str);
>     }
>     public void testcase2() {
>         assertEquals("Unknown keyCode: 0x4", KeyEvent.getKeyText(4));
>     }
> }
> RI output:
> -------------
> ..
> Time: 0,15
> OK (2 tests)
> Harmony output:
> -------------
> .F.E
> Time: 0.501
> There was 1 error:
> 1) testcase2(TheTest)java.lang.StringIndexOutOfBoundsException
> 	at java.lang.String.charAt(String.java:591)
> 	at java.awt.event.KeyEvent.getDefaultName(KeyEvent.java:488)
> 	at java.awt.event.KeyEvent.getKeyText(KeyEvent.java:476)
> 	at TheTest.testcase2(TheTest.java:20)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> There was 1 failure:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:10)
> FAILURES!!!
> Tests run: 2,  Failures: 1,  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