/* * 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.clustering.infinispan.subsystem; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.FAILED; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.FAILURE_DESCRIPTION; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.OUTCOME; import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUCCESS; import org.jboss.as.subsystem.test.KernelServices; import org.jboss.dmr.ModelNode; import org.junit.Assert; import org.junit.Test; /** * Test case for testing sequences of management operations. * * @author Richard Achmatowicz (c) 2011 Red Hat Inc. */ public class OperationSequencesTestCase extends OperationTestCaseBase { @Test public void testCacheContainerAddRemoveAddSequence() throws Exception { // Parse and install the XML into the controller String subsystemXml = getSubsystemXml() ; KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(subsystemXml).build(); ModelNode addContainerOp = getCacheContainerAddOperation("maximal2"); ModelNode removeContainerOp = getCacheContainerRemoveOperation("maximal2"); ModelNode addCacheOp = getCacheAddOperation("maximal2", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); // add a cache container ModelNode result = servicesA.executeOperation(addContainerOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // add a local cache result = servicesA.executeOperation(addCacheOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the cache container result = servicesA.executeOperation(removeContainerOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // add the same cache container result = servicesA.executeOperation(addContainerOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // add the same local cache result = servicesA.executeOperation(addCacheOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); } @Test public void testCacheContainerRemoveRemoveSequence() throws Exception { // Parse and install the XML into the controller String subsystemXml = getSubsystemXml() ; KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(subsystemXml).build(); ModelNode addContainerOp = getCacheContainerAddOperation("maximal2"); ModelNode removeContainerOp = getCacheContainerRemoveOperation("maximal2"); ModelNode addCacheOp = getCacheAddOperation("maximal2", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); // add a cache container ModelNode result = servicesA.executeOperation(addContainerOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // add a local cache result = servicesA.executeOperation(addCacheOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the cache container result = servicesA.executeOperation(removeContainerOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the cache container again result = servicesA.executeOperation(removeContainerOp); Assert.assertEquals(result.toString(), FAILED, result.get(OUTCOME).asString()); } @Test public void testLocalCacheAddRemoveAddSequence() throws Exception { // Parse and install the XML into the controller String subsystemXml = getSubsystemXml() ; KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(subsystemXml).build(); ModelNode addOp = getCacheAddOperation("maximal", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); ModelNode removeOp = getCacheRemoveOperation("maximal", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); // add a local cache ModelNode result = servicesA.executeOperation(addOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the local cache result = servicesA.executeOperation(removeOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // add the same local cache result = servicesA.executeOperation(addOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); } @Test public void testLocalCacheRemoveRemoveSequence() throws Exception { // Parse and install the XML into the controller String subsystemXml = getSubsystemXml() ; KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(subsystemXml).build(); ModelNode addOp = getCacheAddOperation("maximal", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); ModelNode removeOp = getCacheRemoveOperation("maximal", LocalCacheResourceDefinition.WILDCARD_PATH.getKey(), "fred"); // add a local cache ModelNode result = servicesA.executeOperation(addOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the local cache result = servicesA.executeOperation(removeOp); Assert.assertEquals(result.get(FAILURE_DESCRIPTION).asString(), SUCCESS, result.get(OUTCOME).asString()); // remove the same local cache result = servicesA.executeOperation(removeOp); Assert.assertEquals(result.toString(), FAILED, result.get(OUTCOME).asString()); } }