/* * JBoss, Home of Professional Open Source. * Copyright 2010, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file 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.as.test.integration.jca.beanvalidation; import org.jboss.arquillian.container.test.api.Deployer; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.as.test.integration.jca.beanvalidation.ra.ValidConnectionFactory; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive; import org.junit.Test; import org.junit.runner.RunWith; /** * @author <a href="vrastsel@redhat.com">Vladimir Rastseluev</a> JBQA-5905 */ @RunWith(Arquillian.class) public class NegativeValidationTestCase { @ArquillianResource Deployer deployer; /** * Define the deployment * * @return The deployment archive */ public static ResourceAdapterArchive createDeployment(String ij) throws Exception { String deploymentName = (ij != null ? ij : "valid"); ResourceAdapterArchive raa = ShrinkWrap.create(ResourceAdapterArchive.class, deploymentName + ".rar"); JavaArchive ja = ShrinkWrap.create(JavaArchive.class, deploymentName + ".jar"); ja.addPackage(ValidConnectionFactory.class.getPackage()).addClasses(NegativeValidationTestCase.class); raa.addAsLibrary(ja); raa.addAsManifestResource(NegativeValidationTestCase.class.getPackage(), "ra.xml", "ra.xml") .addAsManifestResource( NegativeValidationTestCase.class.getPackage(), "ironjacamar" + (ij != null ? "-" + ij : "") + ".xml", "ironjacamar.xml"); return raa; } @Deployment(name = "wrong-ao", managed = false) public static ResourceAdapterArchive createAODeployment() throws Exception { return createDeployment("wrong-ao"); } @Test(expected = Exception.class) public void testWrongAO() { deployer.deploy("wrong-ao"); } @Deployment(name = "wrong-cf", managed = false) public static ResourceAdapterArchive createCfDeployment() throws Exception { return createDeployment("wrong-cf"); } @Test(expected = Exception.class) public void testWrongCf() { deployer.deploy("wrong-cf"); } @Deployment(name = "wrong-ra", managed = false) public static ResourceAdapterArchive createRaDeployment() throws Exception { return createDeployment("wrong-ra"); } @Test(expected = Exception.class) public void testWrongRA() { deployer.deploy("wrong-ra"); } }