[weld-issues] [JBoss JIRA] Commented: (CDITCK-178) DecoratorDefinitionTest.testDecoratedTypes() asserts that a superinterface of the decorator bean class is not a decorated type.
Pete Muir (JIRA)
jira-events at lists.jboss.org
Fri Nov 19 12:43:07 EST 2010
[ https://jira.jboss.org/browse/CDITCK-178?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12564396#comment-12564396 ]
Pete Muir commented on CDITCK-178:
----------------------------------
Confirmed. David could you open a new issue, just for clarity. We can link it to this one using related I think.
> 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)
> Components: Tests
> Affects Versions: 1.0.1.Final
> Reporter: Alexey Kazakov
> Assignee: Marius Bogoevici
> Fix For: 1.0.2.CR3, 1.1.0.CR1
>
>
> 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.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list