[webbeans-commits] Webbeans SVN: r1047 - ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Sat Jan 17 14:58:42 EST 2009


Author: dallen6
Date: 2009-01-17 14:58:42 -0500 (Sat, 17 Jan 2009)
New Revision: 1047

Removed:
   ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/InjectionPointTest.java
Log:
Ported the injection point metadata tests from RI to TCK.

Deleted: ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/InjectionPointTest.java
===================================================================
--- ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/InjectionPointTest.java	2009-01-17 19:58:13 UTC (rev 1046)
+++ ri/trunk/webbeans-ri/src/test/java/org/jboss/webbeans/test/InjectionPointTest.java	2009-01-17 19:58:42 UTC (rev 1047)
@@ -1,313 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source
- * Copyright 2008, Red Hat Middleware LLC, 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.webbeans.test;
-
-import java.lang.annotation.Annotation;
-import java.lang.reflect.Constructor;
-import java.lang.reflect.Field;
-import java.util.Arrays;
-import java.util.HashSet;
-import java.util.Set;
-
-import javax.webbeans.Current;
-import javax.webbeans.Dependent;
-import javax.webbeans.InjectionPoint;
-import javax.webbeans.Standard;
-import javax.webbeans.manager.Bean;
-
-import org.jboss.webbeans.binding.CurrentBinding;
-import org.jboss.webbeans.tck.impl.SpecAssertion;
-import org.jboss.webbeans.tck.impl.SpecVersion;
-import org.jboss.webbeans.test.annotations.AnimalStereotype;
-import org.jboss.webbeans.test.beans.BeanWithInjectionPointMetadata;
-import org.jboss.webbeans.test.beans.ConstructorInjectionPointBean;
-import org.jboss.webbeans.test.beans.FieldInjectionPointBean;
-import org.jboss.webbeans.test.bindings.AnimalStereotypeAnnotationLiteral;
-import org.jboss.webbeans.test.mock.MockWebBeanDiscovery;
-import org.testng.annotations.Test;
-
-/**
- * Injection point metadata tests
- * 
- * @author David Allen
- * 
- */
- at SpecVersion("20081222")
-public class InjectionPointTest extends AbstractTest
-{
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetBean()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-
-         Set<Bean<FieldInjectionPointBean>> resolvedBeans = manager.resolveByType(FieldInjectionPointBean.class);
-         assert resolvedBeans.size() == 1;
-         assert beanWithInjectionPoint.getInjectedMetadata().getBean().equals(resolvedBeans.iterator().next());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetType()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert beanWithInjectionPoint.getInjectedMetadata().getType().equals(BeanWithInjectionPointMetadata.class);
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetBindingTypes()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         Set<Annotation> bindingTypes = beanWithInjectionPoint.getInjectedMetadata().getBindings();
-         assert bindingTypes.size() == 1;
-         assert Current.class.isAssignableFrom(bindingTypes.iterator().next().annotationType());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetMemberField()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert Field.class.isAssignableFrom(beanWithInjectionPoint.getInjectedMetadata().getMember().getClass());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "stub", "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetMemberMethod()
-   {
-      assert false;
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetMemberConstructor()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(ConstructorInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         ConstructorInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(ConstructorInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert Constructor.class.isAssignableFrom(beanWithInjectionPoint.getInjectedMetadata().getMember().getClass());
-         
-         // Since the type and bindings must correspond to the parameter, check them
-         assert beanWithInjectionPoint.getInjectedMetadata().getType().equals(BeanWithInjectionPointMetadata.class);
-         assert beanWithInjectionPoint.getInjectedMetadata().getBindings().contains(new CurrentBinding());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetAnnotation()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert beanWithInjectionPoint.getInjectedMetadata().getAnnotation(AnimalStereotype.class) != null;
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testGetAnnotations()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         Set<Annotation> annotations = new HashSet<Annotation>(Arrays.asList(beanWithInjectionPoint.getInjectedMetadata().getAnnotations()));
-         assert annotations.size() > 0;
-         assert annotations.contains(new CurrentBinding());
-         assert annotations.contains(new AnimalStereotypeAnnotationLiteral());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testStandardDeployment()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert beanWithInjectionPoint.getInjectedMetadata().getClass().isAnnotationPresent(Standard.class);
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testDependentScope()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert beanWithInjectionPoint.getInjectedMetadata().getClass().isAnnotationPresent(Dependent.class);
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testApiTypeInjectionPoint()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert InjectionPoint.class.isAssignableFrom(beanWithInjectionPoint.getInjectedMetadata().getClass());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-
-   @Test(groups = { "injectionPoint" })
-   @SpecAssertion(section = "5.11")
-   public void testCurrentBinding()
-   {
-      webBeansBootstrap.setWebBeanDiscovery(new MockWebBeanDiscovery(FieldInjectionPointBean.class, BeanWithInjectionPointMetadata.class));
-      webBeansBootstrap.boot();
-
-      // Get an instance of the bean which has another bean injected into it
-      try
-      {
-         activateDependentContext();
-         FieldInjectionPointBean beanWithInjectedBean = manager.getInstanceByType(FieldInjectionPointBean.class, new CurrentBinding());
-         BeanWithInjectionPointMetadata beanWithInjectionPoint = beanWithInjectedBean.getInjectedBean();
-         assert beanWithInjectionPoint.getInjectedMetadata() != null;
-         assert beanWithInjectionPoint.getInjectedMetadata().getBindings().contains(new CurrentBinding());
-      }
-      finally
-      {
-         deactivateDependentContext();
-      }
-   }
-}




More information about the weld-commits mailing list