/* * JBoss, Home of Professional Open Source * Copyright 2012, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.cdi.tck.tests.lookup.modules.specialization.alternative; import static org.jboss.cdi.tck.TestGroups.INTEGRATION; import static org.jboss.cdi.tck.cdi.Sections.DECLARING_ALTERNATIVE; import static org.jboss.cdi.tck.cdi.Sections.DECLARING_SELECTED_ALTERNATIVES_BEAN_ARCHIVE; import static org.jboss.cdi.tck.cdi.Sections.OBSERVES; import static org.jboss.cdi.tck.cdi.Sections.SPECIALIZATION; import static org.jboss.cdi.tck.cdi.Sections.SPECIALIZE_MANAGED_BEAN; import static org.testng.Assert.assertFalse; import static org.testng.Assert.assertTrue; import javax.enterprise.event.Event; import javax.enterprise.inject.Alternative; import javax.inject.Inject; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.cdi.tck.AbstractTest; import org.jboss.cdi.tck.shrinkwrap.WebArchiveBuilder; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.shrinkwrap.descriptor.api.Descriptors; import org.jboss.shrinkwrap.descriptor.api.beans11.BeansDescriptor; import org.jboss.test.audit.annotations.SpecAssertion; import org.jboss.test.audit.annotations.SpecAssertions; import org.jboss.test.audit.annotations.SpecVersion; import org.testng.annotations.Test; /** * Test for specializing {@link Alternative}. Verifies that a bean is only specialized in the BDA where the specializing alternative is enabled. * * @author Jozef Hartinger * @author Matej Briskar * */ @SpecVersion(spec = "cdi", version = "2.0-PFD") public class Specialization03Test extends AbstractTest { @Inject private InjectedBean1 bean1; @Inject private InjectedBean2 bean2; @Inject private Event<FactoryEvent> event; @Deployment public static WebArchive createTestArchive() { return new WebArchiveBuilder() .withTestClass(Specialization03Test.class) .withBeanLibrary(Factory.class, AlternativeSpecializedFactory.class, Product.class, InjectedBean2.class, FactoryEvent.class) .withBeanLibrary(Descriptors.create(BeansDescriptor.class).getOrCreateAlternatives().clazz(AlternativeSpecializedFactory.class.getName()).up(), InjectedBean1.class).build(); } @Test(groups = INTEGRATION) @SpecAssertions({ @SpecAssertion(section = DECLARING_ALTERNATIVE, id = "aa"), @SpecAssertion(section = SPECIALIZE_MANAGED_BEAN, id = "ac"), @SpecAssertion(section = DECLARING_SELECTED_ALTERNATIVES_BEAN_ARCHIVE, id = "i"), @SpecAssertion(section = SPECIALIZATION, id = "ca"), @SpecAssertion(section = SPECIALIZATION, id = "cb") }) public void testEnabledAlternativeSpecializes() { assertTrue(bean1.getFactory().get() instanceof AlternativeSpecializedFactory); assertTrue(bean1.getProduct().isUnsatisfied()); assertTrue(bean2.getFactory().isUnsatisfied()); assertTrue(bean2.getProduct().isUnsatisfied()); assertFalse(bean2.getProduct().isAmbiguous()); } @Test @SpecAssertions({ @SpecAssertion(section = OBSERVES, id = "a"), @SpecAssertion(section = SPECIALIZATION, id = "cc") }) public void testEvent() { Factory.reset(); event.fire(new FactoryEvent()); assertFalse(Factory.isEventDelivered()); } }