blob: 42030a30e77d8a4ab24864be091fb1da1ca21d94 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.webbeans.newtests.interceptors.dependent;
import java.net.URL;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Set;
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.Bean;
import junit.framework.Assert;
import org.apache.webbeans.newtests.AbstractUnitTest;
import org.apache.webbeans.newtests.interceptors.beans.DependentScopedBean;
import org.apache.webbeans.newtests.interceptors.common.DependentInterceptor;
import org.junit.Test;
public class DependentInterceptorTest extends AbstractUnitTest
{
private static final String PACKAGE_NAME = DependentInterceptorTest.class.getPackage().getName();
public DependentInterceptorTest()
{
}
@Test
@SuppressWarnings("unchecked")
public void testLifecycle()
{
Collection<URL> beanXmls = new ArrayList<URL>();
beanXmls.add(getXMLUrl(PACKAGE_NAME, "DependentInterceptorTest"));
Collection<Class<?>> beanClasses = new ArrayList<Class<?>>();
beanClasses.add(DependentInterceptor.class);
beanClasses.add(DependentScopedBean.class);
startContainer(beanClasses, beanXmls);
Set<Bean<?>> beans = getBeanManager().getBeans("org.apache.webbeans.newtests.interceptors.beans.DependentScopedBean");
Assert.assertNotNull(beans);
Bean<DependentScopedBean> bean = (Bean<DependentScopedBean>)beans.iterator().next();
CreationalContext<DependentScopedBean> ctx = getBeanManager().createCreationalContext(bean);
DependentInterceptor.refCount = 0;
Object reference = getBeanManager().getReference(bean, DependentScopedBean.class, ctx);
Assert.assertNotNull(reference);
Assert.assertTrue(reference instanceof DependentScopedBean);
Assert.assertTrue(DependentScopedBean.POST_CONSTRUCT);
Assert.assertTrue(!DependentScopedBean.PRE_DESTROY);
DependentScopedBean dbean = (DependentScopedBean)reference;
dbean.sayHello();
Assert.assertTrue(DependentInterceptor.refCount == 1);
Assert.assertTrue(DependentScopedBean.SAY_HELLO);
try {
dbean.throwException();
}
catch (Exception e) {
Assert.assertNotNull(DependentInterceptor.exceptionTarget);
Assert.assertTrue(DependentInterceptor.exceptionTarget.equals(DependentScopedBean.class));
}
bean.destroy(dbean, ctx);
shutDownContainer();
Assert.assertTrue(DependentScopedBean.PRE_DESTROY);
}
}