/* * JBoss, Home of Professional Open Source. * Copyright 2013, 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.wildfly.plugin.deployment; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.net.MalformedURLException; import java.net.URL; import java.nio.file.Paths; import javax.inject.Inject; import org.jboss.dmr.ModelNode; import org.junit.Test; import org.wildfly.plugin.common.ServerOperations; import org.wildfly.plugin.core.DeploymentManager; import org.wildfly.plugin.core.UndeployDescription; import org.wildfly.plugin.tests.AbstractWildFlyServerMojoTest; /** * deploy mojo testcase. * * @author <a href="mailto:heinz.wilming@akquinet.de">Heinz Wilming</a> */ public class DeployOnlyTest extends AbstractWildFlyServerMojoTest { @Inject private DeploymentManager deploymentManager; @Test public void testDeploy() throws Exception { // Make sure the archive is not deployed if (deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.undeploy(UndeployDescription.of(DEPLOYMENT_NAME)); } final AbstractDeployment deployMojo = lookupMojoAndVerify("deploy-only", "deploy-only-webarchive-pom.xml"); deployMojo.execute(); // Verify deployed assertTrue("Deployment " + DEPLOYMENT_NAME + " was not deployed", deploymentManager.hasDeployment(DEPLOYMENT_NAME)); // /deployment=test.war :read-attribute(name=status) final ModelNode address = ServerOperations.createAddress("deployment", DEPLOYMENT_NAME); final ModelNode op = ServerOperations.createReadAttributeOperation(address, "status"); final ModelNode result = executeOperation(op); assertEquals("OK", ServerOperations.readResultAsString(result)); } @Test public void testDeployWithCommands() throws Exception { // Make sure the archive is not deployed if (deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.undeploy(UndeployDescription.of(DEPLOYMENT_NAME)); } final AbstractDeployment deployMojo = lookupMojoAndVerify("deploy-only", "deploy-only-webarchive-with-commands-pom.xml"); deployMojo.execute(); // /deployment=test.war :read-attribute(name=status) ModelNode address = ServerOperations.createAddress("deployment", DEPLOYMENT_NAME); ModelNode op = ServerOperations.createReadAttributeOperation(address, "status"); ModelNode result = executeOperation(op); assertEquals("OK", ServerOperations.readResultAsString(result)); // Ensure that org.jboss.as.logging exists and foo does not address = ServerOperations.createAddress("subsystem", "logging", "logger", "foo"); op = ServerOperations.createReadResourceOperation(address); result = client.execute(op); assertFalse("Logger foo was not removed", ServerOperations.isSuccessfulOutcome(result)); address = ServerOperations.createAddress("subsystem", "logging", "logger", "org.jboss.as.logging"); op = ServerOperations.createReadResourceOperation(address); result = client.execute(op); assertTrue("Logger org.jboss.as.logging was not added", ServerOperations.isSuccessfulOutcome(result)); // Remove the logger to clean-up op = ServerOperations.createRemoveOperation(address); executeOperation(op); } @Test public void testDeployUrl() throws Exception { // Make sure the archive is not deployed if (deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.undeploy(UndeployDescription.of(DEPLOYMENT_NAME)); } final AbstractDeployment deployMojo = getUrlDeploymentMojo("deploy-only", "deploy-only-webarchive-pom.xml"); deployMojo.execute(); // Verify deployed assertTrue("Deployment " + DEPLOYMENT_NAME + " was not deployed", deploymentManager.hasDeployment(DEPLOYMENT_NAME)); // /deployment=test.war :read-attribute(name=status) final ModelNode address = ServerOperations.createAddress("deployment", DEPLOYMENT_NAME); final ModelNode op = ServerOperations.createReadAttributeOperation(address, "status"); final ModelNode result = executeOperation(op); assertEquals("OK", ServerOperations.readResultAsString(result)); } @Test public void testRedeploy() throws Exception { // Make sure the archive is deployed if (!deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.deploy(getDeployment()); } final AbstractDeployment deployMojo = lookupMojoAndVerify("redeploy-only", "redeploy-only-webarchive-pom.xml"); deployMojo.execute(); // Verify deployed assertTrue("Deployment " + DEPLOYMENT_NAME + " was not deployed", deploymentManager.hasDeployment(DEPLOYMENT_NAME)); // /deployment=test.war :read-attribute(name=status) final ModelNode address = ServerOperations.createAddress("deployment", DEPLOYMENT_NAME); final ModelNode op = ServerOperations.createReadAttributeOperation(address, "status"); final ModelNode result = executeOperation(op); assertEquals("OK", ServerOperations.readResultAsString(result)); } @Test public void testRedeployUrl() throws Exception { // Make sure the archive is deployed if (!deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.deploy(getDeployment()); } final AbstractDeployment redeployMojo = getUrlDeploymentMojo("redeploy-only", "redeploy-only-webarchive-pom.xml"); redeployMojo.execute(); // Verify deployed assertTrue("Deployment " + DEPLOYMENT_NAME + " was not deployed", deploymentManager.hasDeployment(DEPLOYMENT_NAME)); // /deployment=test.war :read-attribute(name=status) final ModelNode address = ServerOperations.createAddress("deployment", DEPLOYMENT_NAME); final ModelNode op = ServerOperations.createReadAttributeOperation(address, "status"); final ModelNode result = executeOperation(op); assertEquals("OK", ServerOperations.readResultAsString(result)); } @Test public void testUndeploy() throws Exception { // Make sure the archive is deployed if (!deploymentManager.hasDeployment(DEPLOYMENT_NAME)) { deploymentManager.deploy(getDeployment()); } final UndeployMojo deployMojo = lookupMojoAndVerify("undeploy", "undeploy-webarchive-pom.xml"); deployMojo.execute(); // Verify deployed assertFalse("Deployment " + DEPLOYMENT_NAME + " was not undeployed", deploymentManager.hasDeployment(DEPLOYMENT_NAME)); } private AbstractDeployment getUrlDeploymentMojo(final String goal, final String pomName) throws Exception { final AbstractDeployment mojo = lookupMojoAndVerify(goal, pomName); setValue(mojo, "contentUrl", getContentUrl()); // Clear the target and filename to ensure they're not getting picked up setValue(mojo, "filename", null); setValue(mojo, "targetDir", null); return mojo; } private URL getContentUrl() throws MalformedURLException { return Paths.get(BASE_CONFIG_DIR, "target", DEPLOYMENT_NAME).toUri().toURL(); } }