All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.cdi.tck.tests.lookup.dynamic.destroy.normal.DestroyingNormalScopedInstanceTest Maven / Gradle / Ivy

There is a newer version: 2.0.5.SP1
Show newest version
/*
 * 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.dynamic.destroy.normal;

import static org.jboss.cdi.tck.cdi.Sections.DYNAMIC_LOOKUP;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
import static org.testng.Assert.fail;

import javax.enterprise.context.spi.AlterableContext;
import javax.enterprise.inject.Instance;
import javax.enterprise.inject.spi.Bean;

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.test.audit.annotations.SpecAssertion;
import org.jboss.test.audit.annotations.SpecAssertions;
import org.jboss.test.audit.annotations.SpecVersion;
import org.testng.annotations.Test;

/**
 * Tests for https://issues.jboss.org/browse/CDI-139
 *
 * 

* This test was originally part of the Weld test suite. *

* * @author Jozef Hartinger * @author Martin Kouba */ @SpecVersion(spec = "cdi", version = "2.0-EDR1") public class DestroyingNormalScopedInstanceTest extends AbstractTest { private static final String[] VALUES = { "foo", "bar", "baz" }; @Deployment public static WebArchive createTestArchive() { return new WebArchiveBuilder() .withTestClassPackage(DestroyingNormalScopedInstanceTest.class) .withExtension(CustomScopeExtension.class).build(); } @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "o") }) public void testApplicationScopedComponent( Instance instance) { testComponent(instance); } @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "o") }) public void testRequestScopedComponent( Instance instance) { testComponent(instance); } @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "o") }) public void testCustomScopedComponent( Instance instance) { testComponent(instance); } /** * TODO add assertion - OPEN ISSUE atm * * @param application */ @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER) public void testNothingHappensIfNoInstanceToDestroy( ApplicationScopedComponent application) { Bean bean = getUniqueBean(ApplicationScopedComponent.class); AlterableContext context = (AlterableContext) getCurrentManager() .getContext(bean.getScope()); AbstractComponent.reset(); application.setValue("value"); context.destroy(bean); assertTrue(AbstractComponent.isDestroyed()); context.destroy(bean); // Make sure subsequent calls do not raise exception context.destroy(bean); } @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER, expectedExceptions = UnsupportedOperationException.class) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "p") }) public void testUnsupportedOperationExceptionThrownIfUnderlyingContextNotAlterable( Instance instance, CustomScopeExtension extension) { NonAlterableComponent component = instance.get(); instance.destroy(component); fail("expected exception not thrown"); } @Test(dataProvider = ARQUILLIAN_DATA_PROVIDER) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "o") }) public void testContextDestroyCalled( Instance instance) { AlterableComponent component = instance.get(); CustomAlterableContext.reset(); instance.destroy(component); assertTrue(CustomAlterableContext.isDestroyCalled()); } @Test(expectedExceptions = NullPointerException.class, dataProvider = ARQUILLIAN_DATA_PROVIDER) @SpecAssertions({ @SpecAssertion(section = DYNAMIC_LOOKUP, id = "o") }) public void testNullParameter(Instance instance) { instance.destroy(null); } private void testComponent( Instance instance) { for (String string : VALUES) { T reference = instance.get(); assertNull(reference.getValue()); reference.setValue(string); assertEquals(reference.getValue(), string); AbstractComponent.reset(); instance.destroy(reference); assertTrue(AbstractComponent.isDestroyed()); assertNull(reference.getValue(), reference.getValue()); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy