Skip to content

Commit

Permalink
[WFLY-11688] Update mixed domain tests to use EAP 7.2.0 rather than WF14
Browse files Browse the repository at this point in the history
  • Loading branch information
kabir committed Feb 8, 2019
1 parent b933c7e commit b1dc661
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 18 deletions.
Expand Up @@ -99,7 +99,7 @@ static void adjustForVersion(final DomainClient client, final Version.AsVersion
case EAP_7_1_0:
adjuster = new DomainAdjuster710();
break;
case EAP_7_2_0_TEMP:
case EAP_7_2_0:
adjuster = new DomainAdjuster720();
break;
default:
Expand Down
Expand Up @@ -46,9 +46,7 @@ enum AsVersion {
EAP_6_4_0(EAP, 6, 4, 0),
EAP_7_0_0(EAP, 7, 0, 0),
EAP_7_1_0(EAP, 7, 1, 0),
// TODO https://issues.jboss.org/browse/WFLY-10971 Remove EAP_7_2_0_TEMP and enable EAP_7_2_0
EAP_7_2_0_TEMP(WILDFLY, 14, 0, 0),
//EAP_7_2_0(EAP, 7, 2, 0),
EAP_7_2_0(EAP, 7, 2, 0),
;


Expand Down
Expand Up @@ -36,7 +36,7 @@
*
* @author Brian Stansberry
*/
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class DomainHostExcludes720TestCase extends DomainHostExcludesTest {

@BeforeClass
Expand Down
Expand Up @@ -34,7 +34,7 @@
*/
@RunWith(Suite.class)
@Suite.SuiteClasses(value= {ElytronOnlyMasterSmoke720TestCase.class})
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
@Ignore("Ignore until WFCORE-2882 is integrated")
public class ElytronOnlyMaster720TestSuite extends ElytronOnlyMasterTestSuite {

Expand Down
Expand Up @@ -29,7 +29,7 @@
/**
* @author Martin Simka
*/
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class ElytronOnlyMasterSmoke720TestCase extends ElytronOnlyMasterSmokeTestCase {

@BeforeClass
Expand Down
Expand Up @@ -34,7 +34,7 @@
*/
@RunWith(Suite.class)
@Suite.SuiteClasses(value= {RBACConfig720TestCase.class, WildcardReads720TestCase.class})
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class KernelBehavior720TestSuite extends KernelBehaviorTestSuite {

@BeforeClass
Expand Down
Expand Up @@ -31,7 +31,7 @@
*
* @author Brian Stansberry
*/
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class LegacyConfig720TestCase extends LegacyConfigTest {

@BeforeClass
Expand Down
Expand Up @@ -35,11 +35,11 @@
*/
@RunWith(Suite.class)
@Suite.SuiteClasses(value= {LegacyConfig720TestCase.class, DomainHostExcludes720TestCase.class})
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class LegacyConfig720TestSuite extends MixedDomainTestSuite {

@BeforeClass
public static void initializeDomain() {
MixedDomainTestSuite.getSupportForLegacyConfig(LegacyConfig720TestSuite.class, Version.AsVersion.EAP_7_2_0_TEMP);
MixedDomainTestSuite.getSupportForLegacyConfig(LegacyConfig720TestSuite.class, Version.AsVersion.EAP_7_2_0);
}
}
Expand Up @@ -36,7 +36,7 @@
*/
@RunWith(Suite.class)
@SuiteClasses(value= {SimpleMixedDomain720TestCase.class, MixedDomainDeployment720TestCase.class})
@Version(AsVersion.EAP_7_2_0_TEMP)
@Version(AsVersion.EAP_7_2_0)
public class MixedDomain720TestSuite extends MixedDomainTestSuite {

@BeforeClass
Expand Down
Expand Up @@ -31,7 +31,7 @@
*
* @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
*/
@Version(AsVersion.EAP_7_2_0_TEMP)
@Version(AsVersion.EAP_7_2_0)
public class MixedDomainDeployment720TestCase extends MixedDomainDeploymentTest {
@BeforeClass
public static void beforeClass() {
Expand Down
Expand Up @@ -30,7 +30,7 @@
/**
* @author Emmanuel Hugonnet (c) 2017 Red Hat, inc.
*/
@Version(AsVersion.EAP_7_2_0_TEMP)
@Version(AsVersion.EAP_7_2_0)
public class MixedDomainDeploymentOverlay720TestCase extends MixedDeploymentOverlayTestCase {
@BeforeClass
public static void beforeClass() {
Expand Down
Expand Up @@ -35,7 +35,7 @@
*/
@RunWith(Suite.class)
@SuiteClasses(value= {MixedDomainDeploymentOverlay720TestCase.class})
@Version(AsVersion.EAP_7_2_0_TEMP)
@Version(AsVersion.EAP_7_2_0)
public class MixedDomainOverlay720TestSuite extends MixedDomainTestSuite {

@BeforeClass
Expand Down
Expand Up @@ -31,7 +31,7 @@
*
* @author Brian Stansberry
*/
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class RBACConfig720TestCase extends RBACConfigTestCase {

@BeforeClass
Expand Down
Expand Up @@ -31,7 +31,7 @@
*
* @author <a href="kabir.khan@jboss.com">Kabir Khan</a>
*/
@Version(AsVersion.EAP_7_2_0_TEMP)
@Version(AsVersion.EAP_7_2_0)
public class SimpleMixedDomain720TestCase extends SimpleMixedDomainTest {

@BeforeClass
Expand Down
Expand Up @@ -30,7 +30,7 @@
*
* @author Brian Stansberry
*/
@Version(Version.AsVersion.EAP_7_2_0_TEMP)
@Version(Version.AsVersion.EAP_7_2_0)
public class WildcardReads720TestCase extends WildcardReadsTestCase {

@BeforeClass
Expand Down

0 comments on commit b1dc661

Please sign in to comment.