[weld-issues] [JBoss JIRA] Created: (CDITCK-178) DecoratorDefinitionTest.testDecoratedTypes() asserts that a superinterface of the decorator bean class is not a decorated type.

Alexey Kazakov (JIRA) jira-events at lists.jboss.org
Wed Sep 1 10:57:12 EDT 2010


DecoratorDefinitionTest.testDecoratedTypes() asserts that a superinterface of the decorator bean class is not a decorated type.
-------------------------------------------------------------------------------------------------------------------------------

                 Key: CDITCK-178
                 URL: https://jira.jboss.org/browse/CDITCK-178
             Project: CDI TCK
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: 1.0.1.Final
            Reporter: Alexey Kazakov


See
   public void testDecoratedTypes() 
   { 
      List<Decorator<?>> decorators = getCurrentManager().resolveDecorators(FooBar.TYPES); 
      assert decorators.size() == 1; 
      assert decorators.get(0).getDecoratedTypes().size() == 3; 
      assert decorators.get(0).getDecoratedTypes().contains(Foo.class); 
      assert decorators.get(0).getDecoratedTypes().contains(Bar.class); 
      assert decorators.get(0).getDecoratedTypes().contains(Baz.class); 
      assert !decorators.get(0).getDecoratedTypes().contains(Serializable.class); 
      assert !decorators.get(0).getDecoratedTypes().contains(FooDecorator.class); 
      assert !decorators.get(0).getDecoratedTypes().contains(AbstractFooDecorator.class); 
      assert !decorators.get(0).getDecoratedTypes().contains(Boo.class); 
   } 

But Boo is a superinterface of FooDecorator (not a superclass). And according of JSR-299 8.1 it's a decorated type:

8.1. Decorator beans 
A decorator is a managed bean. The set of decorated types of a decorator includes all bean types of the managed bean which are Java interfaces, except for java.io.Serializable.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the weld-issues mailing list