Skip to content

Commit 06697a2

Browse files
authored
Add MII domain tests to create multiple domains/clusters and perform lifecycle operations at large (#3501)
* Add MII domain tests to create multiple domains/clusters and perform lifecycle operations at large
1 parent 1a627e3 commit 06697a2

File tree

3 files changed

+581
-6
lines changed

3 files changed

+581
-6
lines changed

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItLargeCapacityDomainsClusters.java renamed to integration-tests/src/test/java/oracle/weblogic/kubernetes/ItLargeCapacityDomainsClustersDPV.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
@DisplayName("Verify the Operator can handle multiple domains and clusters at the same time.")
9090
@IntegrationTest
9191
@Tag("okdenv")
92-
class ItLargeCapacityDomainsClusters {
92+
class ItLargeCapacityDomainsClustersDPV {
9393

9494
private static String opNamespace = null;
9595

@@ -137,7 +137,7 @@ public static void initAll(@Namespaces(50) List<String> namespaces) {
137137

138138
// build the clusterview application
139139
Path targetDir = Paths.get(WORK_DIR,
140-
ItLargeCapacityDomainsClusters.class.getName() + "/clusterviewapp");
140+
ItLargeCapacityDomainsClustersDPV.class.getName() + "/clusterviewapp");
141141
Path distDir = BuildApplication.buildApplication(Paths.get(APP_DIR, "clusterview"), null, null,
142142
"dist", domainNamespace, targetDir);
143143
assertTrue(Paths.get(distDir.toString(),
@@ -478,7 +478,7 @@ private static void createDomain(String namespace, String domainUid,
478478
//create unique pv pvc for each domain
479479
final String pvName = getUniqueName(domainUid + "-pv-");
480480
final String pvcName = getUniqueName(domainUid + "-pvc-");
481-
createPV(pvName, domainUid, ItLargeCapacityDomainsClusters.class.getSimpleName());
481+
createPV(pvName, domainUid, ItLargeCapacityDomainsClustersDPV.class.getSimpleName());
482482
createPVC(pvName, pvcName, domainUid, namespace);
483483

484484
// create a temporary WebLogic domain property file
@@ -593,7 +593,7 @@ private static void createDomainOnPVUsingWlst(Path wlstScriptFile, Path domainPr
593593
logger.info("Creating a config map to hold domain creation scripts");
594594
String domainScriptConfigMapName = "create-domain-scripts-cm";
595595
assertDoesNotThrow(() -> createConfigMapForDomainCreation(domainScriptConfigMapName,
596-
domainScriptFiles, namespace, ItLargeCapacityDomainsClusters.class.getSimpleName()),
596+
domainScriptFiles, namespace, ItLargeCapacityDomainsClustersDPV.class.getSimpleName()),
597597
"Create configmap for domain creation failed");
598598

599599
// create a V1Container with specific scripts and properties for creating domain

0 commit comments

Comments
 (0)