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/05 13:10:22 UTC

[jira] Updated: (HARMONY-2441) [classlib][awt] java.awt.dnd.DragSource.getListeners() does not throw ClassCastException or IAE

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

Pavel Dolgov updated HARMONY-2441:
----------------------------------

    Description: 
Test case:
--------------
import java.awt.dnd.DragSource;

import junit.framework.TestCase;

public class TheTest extends TestCase {

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

    public void testcase1() {
        DragSource ds = new DragSource();
        try {
            ds.getListeners(Class.class);
            fail("ClassCastException expected");
        } catch (ClassCastException e) {
        }
    }         
    
    public void testcase2() {                                           
        DragSource ds = new DragSource();
        try {
            ds.getListeners(Void.TYPE);
            fail("IllegalArgumentException expected");
        } catch (IllegalArgumentException e) {
        }
    }         
}

RI output:
----------------
..
Time: 1,811

OK (2 tests)

Harmony output:
-----------------
.F.F
Time: 0.59
There were 2 failures:
1) testcase1(TheTest)junit.framework.AssertionFailedError: ClassCastException expected
	at TheTest.testcase1(TheTest.java:15)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:8)
2) testcase2(TheTest)junit.framework.AssertionFailedError: IllegalArgumentException expected
	at TheTest.testcase2(TheTest.java:24)
	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
	at TheTest.main(TheTest.java:8)

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


  was:
The code snippet:
------------------
import java.awt.dnd.DragSource;

public class Test {
	public static void main(String[] args) {
		DragSource ds = new DragSource();
		try {
			ds.getListeners(Class.class);
			System.out.println("FAIL1");
		} catch (ClassCastException e) {
			System.out.println("OK1");
		} catch (Exception ex) {
			System.out.println(ex.getClass());
		}
		try {
			ds.getListeners(Void.TYPE);
			System.out.println("FAIL2");
		} catch (IllegalArgumentException e) {
			System.out.println("OK2");
		} catch (Exception ex) {
			System.out.println(ex.getClass());
		}
	}
}
-----------------------
   Output on RI:
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
OK1
OK2
-----------------------
   Output on Harmony:
java version "1.5.0" 
pre-alpha : not complete or compatible
svn = r482150, (Dec  4 2006), Windows/ia32/msvc 1310, debug build
http://incubator.apache.org/harmony

Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
FAIL1
FAIL2



> [classlib][awt] java.awt.dnd.DragSource.getListeners() does not throw ClassCastException or IAE
> -----------------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2441
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2441
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Pavel Dolgov
>            Priority: Minor
>
> Test case:
> --------------
> import java.awt.dnd.DragSource;
> import junit.framework.TestCase;
> public class TheTest extends TestCase {
>     public static void main(String args[]) {
>         junit.textui.TestRunner.run(TheTest.class);
>     }
>     public void testcase1() {
>         DragSource ds = new DragSource();
>         try {
>             ds.getListeners(Class.class);
>             fail("ClassCastException expected");
>         } catch (ClassCastException e) {
>         }
>     }         
>     
>     public void testcase2() {                                           
>         DragSource ds = new DragSource();
>         try {
>             ds.getListeners(Void.TYPE);
>             fail("IllegalArgumentException expected");
>         } catch (IllegalArgumentException e) {
>         }
>     }         
> }
> RI output:
> ----------------
> ..
> Time: 1,811
> OK (2 tests)
> Harmony output:
> -----------------
> .F.F
> Time: 0.59
> There were 2 failures:
> 1) testcase1(TheTest)junit.framework.AssertionFailedError: ClassCastException expected
> 	at TheTest.testcase1(TheTest.java:15)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> 2) testcase2(TheTest)junit.framework.AssertionFailedError: IllegalArgumentException expected
> 	at TheTest.testcase2(TheTest.java:24)
> 	at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> 	at TheTest.main(TheTest.java:8)
> FAILURES!!!
> Tests run: 2,  Failures: 2,  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