Skip to content

Commit

Permalink
Merge pull request #10730 from kabir/WFLY-9634
Browse files Browse the repository at this point in the history
Add mixed domain tests
  • Loading branch information
kabir committed Jan 30, 2018
2 parents d6efcd9 + a127228 commit be00f93
Show file tree
Hide file tree
Showing 21 changed files with 729 additions and 39 deletions.
Expand Up @@ -49,6 +49,7 @@
import org.jboss.as.test.integration.domain.management.util.DomainTestUtils;
import org.jboss.as.test.integration.domain.mixed.eap640.DomainAdjuster640;
import org.jboss.as.test.integration.domain.mixed.eap700.DomainAdjuster700;
import org.jboss.as.test.integration.domain.mixed.eap710.DomainAdjuster710;
import org.jboss.dmr.ModelNode;
import org.jboss.dmr.Property;
import org.junit.Assert;
Expand Down Expand Up @@ -89,6 +90,9 @@ static void adjustForVersion(final DomainClient client, final Version.AsVersion
case EAP_7_0_0:
adjuster = new DomainAdjuster700();
break;
case EAP_7_1_0:
adjuster = new DomainAdjuster710();
break;
default:
adjuster = new DomainAdjuster();
}
Expand Down
Expand Up @@ -365,6 +365,10 @@ protected boolean isUndertowSupported() {
}

protected String getUnknowOperationErrorCode() {
return "WFLYCTL0031";
Version version = this.getClass().getAnnotation(Version.class);
if (version.value().compare(7, 1) < 0) {
return "WFLYCTL0031";
}
return "WFLYDC0032";
}
}
Expand Up @@ -68,6 +68,7 @@
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Assume;
import org.junit.Before;
import org.junit.Test;

Expand Down Expand Up @@ -234,6 +235,9 @@ public void testExplodedEmptyDeployment() throws Exception {

@Test
public void testExplodedDeployment() throws Exception {
// TODO WFLY-9634
Assume.assumeFalse(supportManagedExplodedDeployment());

ModelNode composite = createEmptyOperation(COMPOSITE, PathAddress.EMPTY_ADDRESS);
ModelNode steps = composite.get(STEPS);
ModelNode op = createAddOperation(ROOT_DEPLOYMENT_ADDRESS);
Expand Down
Expand Up @@ -105,10 +105,13 @@ private static boolean shouldSkip(Path path) {
String entryName = path.toString();
if (entryName.endsWith("/docs/") || entryName.endsWith("/bundles/")) {
return true;
} else if (entryName.endsWith("/bin/") || entryName.endsWith("/welcome-content/")) {
} else if (entryName.endsWith("/bin/")) {
return true;
} else if (entryName.endsWith("/eap/dir/")) { //console files
return true;
} else if (entryName.contains("/welcome-content/") && !entryName.endsWith("/welcome-content/")) {
//Create the directory but don't include any files
return true;
}
return false;
}
Expand Down
Expand Up @@ -44,7 +44,8 @@ enum AsVersion {
EAP_6_2_0(EAP, 6, 2, 0),
EAP_6_3_0(EAP, 6, 3, 0),
EAP_6_4_0(EAP, 6, 4, 0),
EAP_7_0_0(EAP, 7, 0, 0);
EAP_7_0_0(EAP, 7, 0, 0),
EAP_7_1_0(EAP, 7, 1, 0);


final String basename;
Expand Down Expand Up @@ -92,5 +93,18 @@ public int getMinor() {
public int getMicro() {
return micro;
}

int compare(int major, int minor) {
if (this.major < major) {
return -1;
}
if (this.major > major) {
return 1;
}
if (this.minor == minor) {
return 0;
}
return this.minor < minor ? -1 : 1;
}
}
}
Expand Up @@ -22,10 +22,7 @@

package org.jboss.as.test.integration.domain.mixed.eap700;

import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.AUTO_START;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.EXTENSION;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.HOST;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SERVER_CONFIG;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM;
import static org.jboss.as.controller.operations.common.Util.createRemoveOperation;

Expand All @@ -35,42 +32,25 @@

import org.jboss.as.controller.PathAddress;
import org.jboss.as.controller.client.helpers.domain.DomainClient;
import org.jboss.as.controller.descriptions.ModelDescriptionConstants;
import org.jboss.as.controller.operations.common.Util;
import org.jboss.as.test.integration.domain.mixed.DomainAdjuster;
import org.jboss.as.test.integration.domain.mixed.eap710.DomainAdjuster710;
import org.jboss.dmr.ModelNode;

/**
* Does adjustments to the domain model for 7.0.0 legacy slaves.
*
* @author <a href="mailto:kabir.khan@jboss.com">Kabir Khan</a>
*/
public class DomainAdjuster700 extends DomainAdjuster {
public class DomainAdjuster700 extends DomainAdjuster710 {

@Override
protected List<ModelNode> adjustForVersion(final DomainClient client, PathAddress profileAddress, boolean withMasterServers) throws Exception {
final List<ModelNode> list = new ArrayList<>();
final List<ModelNode> list = super.adjustForVersion(client, profileAddress, withMasterServers);

list.addAll(removeCoreManagement(profileAddress.append(SUBSYSTEM, "core-management")));
adjustUndertow(profileAddress.append(SUBSYSTEM, "undertow"), list);
list.addAll(removeElytron(profileAddress.append(SUBSYSTEM, "elytron")));
if (withMasterServers) {
list.addAll(reconfigureServers());
}
return list;
}

private void adjustUndertow(PathAddress undertow, List<ModelNode> ops) {
// EAP 7.0 and earlier required explicit SSL configuration. Wildfly 10.1 added support
// for SSL by default, which automatically generates certs.
// This could be removed if all hosts were configured to contain a security domain with SSL
// enabled.
final PathAddress httpsListener = undertow
.append("server", "default-server")
.append("https-listener", "https");
ops.add(Util.getEmptyOperation(ModelDescriptionConstants.REMOVE, httpsListener.toModelNode()));
}

private Collection<? extends ModelNode> removeElytron(final PathAddress subsystem) {
final List<ModelNode> list = new ArrayList<>();
//elytron and extension don't exist
Expand All @@ -87,17 +67,4 @@ private Collection<? extends ModelNode> removeCoreManagement(final PathAddress s
list.add(createRemoveOperation(PathAddress.pathAddress(EXTENSION, "org.wildfly.extension.core-management")));
return list;
}

private Collection<? extends ModelNode> reconfigureServers() {
final List<ModelNode> list = new ArrayList<>();
//Reconfigure master servers
final PathAddress masterHostAddress = PathAddress.pathAddress(HOST, "master");
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), AUTO_START, true));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), ModelDescriptionConstants.GROUP, "main-server-group"));
list.add(Util.getUndefineAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), ModelDescriptionConstants.SOCKET_BINDING_PORT_OFFSET));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-two"), AUTO_START, true));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-two"), ModelDescriptionConstants.SOCKET_BINDING_PORT_OFFSET, 100));
return list;
}

}
@@ -0,0 +1,84 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017, 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.domain.mixed.eap710;

import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.AUTO_START;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.HOST;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SERVER_CONFIG;
import static org.jboss.as.controller.descriptions.ModelDescriptionConstants.SUBSYSTEM;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.jboss.as.controller.PathAddress;
import org.jboss.as.controller.client.helpers.domain.DomainClient;
import org.jboss.as.controller.descriptions.ModelDescriptionConstants;
import org.jboss.as.controller.operations.common.Util;
import org.jboss.as.test.integration.domain.mixed.DomainAdjuster;
import org.jboss.dmr.ModelNode;

/**
* Does adjustments to the domain model for 7.1.0 legacy slaves.
*
* @author <a href="mailto:kabir.khan@jboss.com">Kabir Khan</a>
*/
public class DomainAdjuster710 extends DomainAdjuster {

@Override
protected List<ModelNode> adjustForVersion(final DomainClient client, PathAddress profileAddress, boolean withMasterServers) throws Exception {
final List<ModelNode> list = new ArrayList<>();

adjustUndertow(profileAddress.append(SUBSYSTEM, "undertow"), list);

if (withMasterServers) {
list.addAll(reconfigureServers());
}

return list;
}

private void adjustUndertow(PathAddress undertow, List<ModelNode> ops) {
// EAP 7.0 and earlier required explicit SSL configuration. Wildfly 10.1 added support
// for SSL by default, which automatically generates certs.
// This could be removed if all hosts were configured to contain a security domain with SSL
// enabled.
final PathAddress httpsListener = undertow
.append("server", "default-server")
.append("https-listener", "https");
ops.add(Util.getEmptyOperation(ModelDescriptionConstants.REMOVE, httpsListener.toModelNode()));
}

private Collection<? extends ModelNode> reconfigureServers() {
final List<ModelNode> list = new ArrayList<>();
//Reconfigure master servers
final PathAddress masterHostAddress = PathAddress.pathAddress(HOST, "master");
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), AUTO_START, true));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), ModelDescriptionConstants.GROUP, "main-server-group"));
list.add(Util.getUndefineAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-one"), ModelDescriptionConstants.SOCKET_BINDING_PORT_OFFSET));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-two"), AUTO_START, true));
list.add(Util.getWriteAttributeOperation(masterHostAddress.append(SERVER_CONFIG, "server-two"), ModelDescriptionConstants.SOCKET_BINDING_PORT_OFFSET, 100));
return list;
}

}
@@ -0,0 +1,47 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017, 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.domain.mixed.eap710;

import java.io.IOException;
import java.util.concurrent.TimeoutException;

import org.jboss.as.controller.ModelVersion;
import org.jboss.as.test.integration.domain.mixed.DomainHostExcludesTest;
import org.jboss.as.test.integration.domain.mixed.Version;
import org.jboss.as.test.integration.management.util.MgmtOperationException;
import org.junit.BeforeClass;

/**
* Tests of the ability of a DC to exclude resources from visibility to an EAP 7.1.0 slave.
*
* @author Brian Stansberry
*/
@Version(Version.AsVersion.EAP_7_1_0)
public class DomainHostExcludes710TestCase extends DomainHostExcludesTest {

@BeforeClass
public static void beforeClass() throws InterruptedException, TimeoutException, MgmtOperationException, IOException {
LegacyConfig710TestSuite.initializeDomain();
setup(DomainHostExcludes710TestCase.class,"EAP7.1", ModelVersion.create(5, 0));
}
}
@@ -0,0 +1,45 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017, 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.domain.mixed.eap710;

import org.jboss.as.test.integration.domain.mixed.ElytronOnlyMasterTestSuite;
import org.jboss.as.test.integration.domain.mixed.Version;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;

/**
* @author Martin Simka
*/
@RunWith(Suite.class)
@Suite.SuiteClasses(value= {ElytronOnlyMasterSmoke710TestCase.class})
@Version(Version.AsVersion.EAP_7_1_0)
@Ignore("Ignore until WFCORE-2882 is integrated")
public class ElytronOnlyMaster710TestSuite extends ElytronOnlyMasterTestSuite {

@BeforeClass
public static void initializeDomain() {
ElytronOnlyMasterTestSuite.getSupport(ElytronOnlyMaster710TestSuite.class);
}
}
@@ -0,0 +1,39 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017, 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.domain.mixed.eap710;

import org.jboss.as.test.integration.domain.mixed.ElytronOnlyMasterSmokeTestCase;
import org.jboss.as.test.integration.domain.mixed.Version;
import org.junit.BeforeClass;

/**
* @author Martin Simka
*/
@Version(Version.AsVersion.EAP_7_1_0)
public class ElytronOnlyMasterSmoke710TestCase extends ElytronOnlyMasterSmokeTestCase {

@BeforeClass
public static void beforeClass() {
ElytronOnlyMaster710TestSuite.initializeDomain();
}
}

0 comments on commit be00f93

Please sign in to comment.