/* * JBoss, Home of Professional Open Source. * Copyright 2011, 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.smoke.mgmt.datasource; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OP_ADDR; import java.io.File; import java.util.List; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.test.integration.management.jca.DsMgmtTestBase; import org.jboss.dmr.ModelNode; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; /** * Datasource operation unit test. * @author <a href="mailto:stefano.maestri@redhat.com">Stefano Maestri</a> * @author <a href="mailto:jeff.zhang@jboss.org">Jeff Zhang</a> * @author <a href="mailto:vrastsel@redhat.com">Vladimir Rastseluev</a> */ @RunWith(Arquillian.class) @RunAsClient public class AddMySqlDataSourceOperationsUnitTestCase extends DsMgmtTestBase{ @Deployment(testable = false) public static Archive<?> getDeployment() { File jdbcJar = new File(System.getProperty("jbossas.ts.integ.dir", "."), "/smoke/src/test/resources/mysql-connector-java-5.1.15.jar"); if (!jdbcJar.exists()) { throw new IllegalStateException("Can't find " + jdbcJar + " using ${jbossas.ts.integ.dir} == " + System.getProperty("jbossas.ts.integ.dir")); } Archive<?> archive = ShrinkWrap.createFromZipFile(JavaArchive.class, jdbcJar); return archive; } @Test public void testAddDsAndTestConnection() throws Exception { final ModelNode address = new ModelNode(); address.add("subsystem", "datasources"); address.add("data-source", "MySqlDs_Pool"); address.protect(); final ModelNode operation = new ModelNode(); operation.get(OP).set("add"); operation.get(OP_ADDR).set(address); operation.get("jndi-name").set("java:jboss/datasources/MySqlDs"); operation.get("driver-name").set("mysql-connector-java-5.1.15.jar"); operation.get("connection-url").set("dont_care"); operation.get("user-name").set("sa"); operation.get("password").set("sa"); executeOperation(operation); final ModelNode operation0 = new ModelNode(); operation0.get(OP).set("take-snapshot"); executeOperation(operation0); List<ModelNode> newList = marshalAndReparseDsResources("data-source"); remove(address); Assert.assertNotNull("Reparsing failed:",newList); Assert.assertNotNull(findNodeWithProperty(newList,"jndi-name","java:jboss/datasources/MySqlDs")); } }