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

[jira] Updated: (HARMONY-1829) [classlib][beans] java.beans.BeanContextSupport.size() returns value different from RI

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

Svetlana Samoilenko updated HARMONY-1829:
-----------------------------------------

    Attachment: H-1829-BeanContextSupportTest.patch

test

> [classlib][beans] java.beans.BeanContextSupport.size() returns value different from RI
> --------------------------------------------------------------------------------------
>
>                 Key: HARMONY-1829
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1829
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Svetlana Samoilenko
>            Priority: Minor
>         Attachments: H-1829-BeanContextSupportTest.patch
>
>
> Description: 
> Lets add testBean object which implements BeanContextProxy to BeanContextSupport. 
> After that size() method returns value 1 while RI returns 2.
> RI adds 2 objects: testBean and java.beans.beancontext.BeanContextChildSupport while Harmony adds testBean only.
> Due to insufficient specification it is not clear that Harmony works incorrectly.
> test for reproducing: 
> import junit.framework.TestCase;
> import java.awt.Component;
> import java.beans.beancontext.*;
> public class test extends TestCase  {     
>     public void testSize() {
>         BeanContextSupport obj = new BeanContextSupport(); 
>         // add component
>         testBean cmp = new testBean();    
>         obj.add(cmp);
>         assertEquals(2, obj.size());                                               
>     }       
> }
> class testBean extends Component implements BeanContextProxy {
>     public BeanContextChildSupport childSupport = new BeanContextChildSupport();
>     public BeanContextChild getBeanContextProxy() {
>         return childSupport;
>     }
> }
> HARMONY output:
> =============
> Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> java version "1.5.0"
> pre-alpha : not complete or compatible
> svn = r453981, (Oct  9 2006), Windows/ia32/msvc 1310, release build
> http://incubator.apache.org/harmony
> .F
> Time: 0.218
> There was 1 failure:
> 1) testSize(test)junit.framework.AssertionFailedError: expected:<2> but was:<1>
>         at test.testSize(test.java:12)
>         at java.lang.reflect.VMReflection.invokeMethod(Native Method)
> FAILURES!!!
> Tests run: 1,  Failures: 1,  Errors: 0
> SUN output:
> ========
> java version "1.5.0_06"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05)
> Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode)
> .
> Time: 0.01
> OK (1 test)

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