[jboss-cvs] JBossAS SVN: r75211 - in projects/microcontainer/trunk/kernel/src: tests/org/jboss/test/kernel/deployment/test and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jun 30 07:35:13 EDT 2008


Author: kabir.khan at jboss.com
Date: 2008-06-30 07:35:13 -0400 (Mon, 30 Jun 2008)
New Revision: 75211

Added:
   projects/microcontainer/trunk/kernel/src/resources/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.xml
   projects/microcontainer/trunk/kernel/src/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.java
Log:
Add failing tests using aliases and scoping

Added: projects/microcontainer/trunk/kernel/src/resources/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.xml
===================================================================
--- projects/microcontainer/trunk/kernel/src/resources/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.xml	                        (rev 0)
+++ projects/microcontainer/trunk/kernel/src/resources/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.xml	2008-06-30 11:35:13 UTC (rev 75211)
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+   <bean name="main" class="org.jboss.test.kernel.deployment.support.SimpleObjectWithBean">
+      <property name="simpleBean"><inject bean="simple"/></property>
+   </bean>
+
+   <bean name="deploy1" class="org.jboss.test.kernel.deployment.support.SimpleObjectWithBean">
+      <annotation>@org.jboss.metadata.plugins.scope.ApplicationScope("testApp")</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.DeploymentScope("deployment1")</annotation>
+      <property name="simpleBean"><inject bean="simple"/></property>
+   </bean>
+
+   <bean name="deploy2" class="org.jboss.test.kernel.deployment.support.SimpleObjectWithBean">
+      <annotation>@org.jboss.metadata.plugins.scope.ApplicationScope("testApp")</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.DeploymentScope("deployment2")</annotation>
+      <property name="simpleBean"><inject bean="simple"/></property>
+   </bean>
+
+   <bean name="deploy3" class="org.jboss.test.kernel.deployment.support.SimpleObjectWithBean">
+      <annotation>@org.jboss.metadata.plugins.scope.ApplicationScope("testApp")</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.DeploymentScope("deployment3")</annotation>
+      <property name="simpleBean"><inject bean="simple"/></property>
+   </bean>
+
+   <bean name="simple1" class="org.jboss.test.kernel.deployment.support.SimpleBeanImpl">
+      <annotation>@org.jboss.beans.metadata.api.annotations.Aliases(value={"simple"})</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.ApplicationScope("testApp")</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.DeploymentScope("deployment1")</annotation>
+      <constructor>
+         <parameter>deployment1</parameter>
+      </constructor>
+   </bean>
+
+   <bean name="simple2" class="org.jboss.test.kernel.deployment.support.SimpleBeanImpl">
+      <annotation>@org.jboss.beans.metadata.api.annotations.Aliases(value={"simple"})</annotation>
+      <constructor>
+         <parameter>main</parameter>
+      </constructor>
+   </bean>
+
+   <bean name="simple3" class="org.jboss.test.kernel.deployment.support.SimpleBeanImpl">
+      <annotation>@org.jboss.beans.metadata.api.annotations.Aliases(value={"simple"})</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.ApplicationScope("testApp")</annotation>
+      <annotation>@org.jboss.metadata.plugins.scope.DeploymentScope("deployment3")</annotation>
+      <constructor>
+         <parameter>deployment3</parameter>
+      </constructor>
+   </bean>
+
+
+</deployment>

Added: projects/microcontainer/trunk/kernel/src/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.java
===================================================================
--- projects/microcontainer/trunk/kernel/src/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.java	                        (rev 0)
+++ projects/microcontainer/trunk/kernel/src/tests/org/jboss/test/kernel/deployment/test/ScopingAliasTestCase.java	2008-06-30 11:35:13 UTC (rev 75211)
@@ -0,0 +1,76 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2006, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt in the distribution for a
+* full listing of individual contributors.
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/
+package org.jboss.test.kernel.deployment.test;
+
+import junit.framework.Test;
+
+import org.jboss.test.kernel.deployment.support.SimpleBean;
+import org.jboss.test.kernel.deployment.support.SimpleObjectWithBean;
+
+/**
+ *
+ * @author <a href="mailto:kabir.khan at jboss.com">Kabir Khan</a>
+ */
+public class ScopingAliasTestCase extends ScopingDeploymentTest
+{
+   public ScopingAliasTestCase(String name) throws Throwable
+   {
+      super(name);
+   }
+
+   public static Test suite()
+   {
+      return suite(ScopingAliasTestCase.class);
+   }
+
+
+   // ---- tests
+
+   public void testAliasInMainController() throws Throwable
+   {
+      checkBean("main", "main");
+   }
+
+   public void testAliasInOwnScope() throws Throwable
+   {
+      checkBean("deploy1", "deployment1");
+   }
+
+   public void testAliasInParentScope() throws Throwable
+   {
+      checkBean("deploy2", "main");
+   }
+
+   public void testAliasInOwnScope2() throws Throwable
+   {
+      checkBean("deploy3", "deployment3");
+   }
+   
+   private void checkBean(String bean, String ctor)
+   {
+      SimpleObjectWithBean deploy = (SimpleObjectWithBean) getBean(bean);
+      assertNotNull(deploy);
+      SimpleBean simple = deploy.getSimpleBean();
+      assertNotNull(simple);
+      assertEquals(ctor, simple.getConstructorString());
+   }
+}




More information about the jboss-cvs-commits mailing list