/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat Middleware LLC, 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 java.util.Arrays; import java.util.Collection; import java.util.List; import java.util.Properties; import org.infinispan.server.commons.controller.Operations; import org.infinispan.server.commons.subsystem.ClusteringSubsystemTest; import org.infinispan.server.jgroups.subsystem.JGroupsSubsystemResourceDefinition; import org.jboss.as.controller.PathAddress; import org.jboss.as.subsystem.test.AdditionalInitialization; import org.jboss.as.subsystem.test.KernelServices; import org.jboss.as.subsystem.test.KernelServicesBuilder; import org.jboss.as.subsystem.test.ModelDescriptionValidator.ValidationConfiguration; import org.jboss.dmr.ModelNode; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** * Tests parsing / booting / marshalling of Infinispan configurations. * * The current XML configuration is tested, along with supported legacy configurations. * * @author <a href="kabir.khan@jboss.com">Kabir Khan</a> * @author Richard Achmatowicz (c) 2013 Red Hat Inc. */ @RunWith(value = Parameterized.class) public class SubsystemParsingTestCase extends ClusteringSubsystemTest { private final Namespace schema; private final int operations; private final String xsdPath; private final String[] templates; public SubsystemParsingTestCase(Namespace schema, int operations, String xsdPath, String[] templates) { super(InfinispanExtension.SUBSYSTEM_NAME, new InfinispanExtension(), schema.format("subsystem-infinispan_%d_%d.xml")); this.schema = schema; this.operations = operations; this.xsdPath = xsdPath; this.templates = templates; } @Parameters public static Collection<Object[]> data() { Object[][] data = new Object[][] { { Namespace.INFINISPAN_SERVER_6_0, 106, "schema/jboss-infinispan-core_6_0.xsd", null }, { Namespace.INFINISPAN_SERVER_7_0, 129, "schema/jboss-infinispan-core_7_0.xsd", null }, { Namespace.INFINISPAN_SERVER_7_1, 129, "schema/jboss-infinispan-core_7_1.xsd", null }, { Namespace.INFINISPAN_SERVER_7_2, 129, "schema/jboss-infinispan-core_7_2.xsd", null }, { Namespace.INFINISPAN_SERVER_8_0, 141, "schema/jboss-infinispan-core_8_0.xsd", null }, { Namespace.INFINISPAN_SERVER_8_1, 142, "schema/jboss-infinispan-core_8_1.xsd", null }, { Namespace.INFINISPAN_SERVER_8_2, 142, "schema/jboss-infinispan-core_8_2.xsd", null }, { Namespace.INFINISPAN_SERVER_9_0, 142, "schema/jboss-infinispan-core_9_0.xsd", new String[] { "/subsystem-templates/infinispan-core.xml" }}, }; return Arrays.asList(data); } @Override protected String getSubsystemXsdPath() throws Exception { return xsdPath; } @Override protected Properties getResolvedProperties() { Properties properties = new Properties(); properties.setProperty("java.io.tmpdir", System.getProperty("java.io.tmpdir")); return properties; } @Override public void testSchemaOfSubsystemTemplates() throws Exception { // TODO: implement once the schema validator supports supplements } @Override protected AdditionalInitialization createAdditionalInitialization() { return new org.infinispan.server.jgroups.subsystem.JGroupsSubsystemInitialization(); } @Override protected void compareXml(String configId, String original, String marshalled) throws Exception { super.compareXml(configId, original, marshalled); } @Override protected void compare(ModelNode model1, ModelNode model2) { purgeJGroupsModel(model1); purgeJGroupsModel(model2); super.compare(model1, model2); } private static void purgeJGroupsModel(ModelNode model) { model.get(JGroupsSubsystemResourceDefinition.PATH.getKey()).remove(JGroupsSubsystemResourceDefinition.PATH.getValue()); } @Override protected ValidationConfiguration getModelValidationConfiguration() { // use this configuration to report any exceptional cases for DescriptionProviders return new ValidationConfiguration(); } /** * Tests that the xml is parsed into the correct operations */ @Test public void testParseSubsystem() throws Exception { // Parse the subsystem xml into operations List<ModelNode> operations = this.parse(this.createAdditionalInitialization(), getSubsystemXml()); // Check that we have the expected number of operations // one for each resource instance Assert.assertEquals(operations.toString(), this.operations, operations.size()); } /** * Test that the model created from the xml looks as expected */ @Test public void testInstallIntoController() throws Exception { // Parse the subsystem xml and install into the controller KernelServices services = createKernelServicesBuilder().setSubsystemXml(getSubsystemXml()).build(); // Read the whole model and make sure it looks as expected ModelNode model = services.readWholeModel(); Assert.assertTrue(model.get(InfinispanSubsystemRootResource.PATH.getKey()).hasDefined(InfinispanSubsystemRootResource.PATH.getValue())); } private KernelServicesBuilder createKernelServicesBuilder() throws Exception { return this.createKernelServicesBuilder(this.createAdditionalInitialization()); } /** * Starts a controller with a given subsystem xml and then checks that a second controller * started with the xml marshalled from the first one results in the same model */ @Test public void testParseAndMarshalModel() throws Exception { // Parse the subsystem xml and install into the first controller KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(this.getSubsystemXml()).build(); // Get the model and the persisted xml from the first controller ModelNode modelA = servicesA.readWholeModel(); String marshalled = servicesA.getPersistedSubsystemXml(); // Install the persisted xml from the first controller into a second controller KernelServices servicesB = this.createKernelServicesBuilder().setSubsystemXml(marshalled).build(); ModelNode modelB = servicesB.readWholeModel(); // Make sure the models from the two controllers are identical this.compare(modelA, modelB); } /** * Starts a controller with the given subsystem xml and then checks that a second controller * started with the operations from its describe action results in the same model */ @Test public void testDescribeHandler() throws Exception { // Parse the subsystem xml and install into the first controller KernelServices servicesA = this.createKernelServicesBuilder().setSubsystemXml(this.getSubsystemXml()).build(); // Get the model and the describe operations from the first controller ModelNode modelA = servicesA.readWholeModel(); ModelNode operation = Operations.createDescribeOperation(PathAddress.pathAddress(InfinispanSubsystemRootResource.PATH)); List<ModelNode> operations = checkResultAndGetContents(servicesA.executeOperation(operation)).asList(); // Install the describe options from the first controller into a second controller KernelServices servicesB = this.createKernelServicesBuilder().setBootOperations(operations).build(); ModelNode modelB = servicesB.readWholeModel(); // Make sure the models from the two controllers are identical this.compare(modelA, modelB); } }