/* * 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.deployers.vfs.deployer.bean.test; import java.util.Collections; import junit.framework.Test; import junit.framework.TestSuite; import org.jboss.beans.metadata.plugins.AbstractBeanMetaData; import org.jboss.beans.metadata.spi.BeanMetaDataFactory; import org.jboss.deployers.client.spi.Deployment; import org.jboss.deployers.spi.attachments.MutableAttachments; import org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer; import org.jboss.deployers.vfs.deployer.kernel.KernelDeploymentDeployer; import org.jboss.kernel.Kernel; import org.jboss.kernel.plugins.deployment.AbstractKernelDeployment; import org.jboss.test.deployers.vfs.deployer.AbstractDeployerUnitTest; import org.jboss.test.deployers.vfs.deployer.bean.support.Simple; import org.jboss.test.deployers.vfs.deployer.bean.support.TestBeanDeployer; /** * BeanDeployerUnitTestCase. * * @author <a href="adrian@jboss.com">Adrian Brock</a> * @version $Revision: 1.1 $ */ public class KernelDeployerUnitTestCase extends AbstractDeployerUnitTest { public static Test suite() { return new TestSuite(KernelDeployerUnitTestCase.class); } public KernelDeployerUnitTestCase(String name) throws Throwable { super(name); } protected void addDeployers(Kernel kernel) { TestBeanDeployer testDeployer = new TestBeanDeployer(); KernelDeploymentDeployer kernelDeploymentDeployer = new KernelDeploymentDeployer(); BeanMetaDataDeployer beanMetaDataDeployer = new BeanMetaDataDeployer(kernel); addDeployer(main, testDeployer); addDeployer(main, kernelDeploymentDeployer); addDeployer(main, beanMetaDataDeployer); } public void testKernelDeployerPredetermined() throws Exception { Deployment context = createSimpleDeployment("KernelDeployerTest"); AbstractKernelDeployment deployment = new AbstractKernelDeployment(); deployment.setName("KernelDeployerTest"); BeanMetaDataFactory metaData = new AbstractBeanMetaData("Test", Simple.class.getName()); deployment.setBeanFactories(Collections.singletonList(metaData)); MutableAttachments attachments = (MutableAttachments) context.getPredeterminedManagedObjects(); attachments.addAttachment("KernelDeployerTest", deployment); assertDeploy(context); assertNotNull(controller.getInstalledContext("Test")); assertUndeploy(context); assertNull(controller.getContext("Test", null)); } public void testKernelDeployerTransient() throws Exception { Deployment context = createSimpleDeployment("KernelDeployerTransient"); assertDeploy(context); assertNotNull(controller.getInstalledContext("Test")); assertUndeploy(context); assertNull(controller.getContext("Test", null)); } }