Skip to content

Commit 598d73a

Browse files
committed
addressed the review comments from Vanaja
1 parent 149e0ae commit 598d73a

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

integration-tests/USECASES.MD

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Also the below use cases are covered for Quick test:
3535
| --- | --- |
3636
| Operator Configuration | operator2 deployed in weblogic-operator2 namespace and manages domains test2 namespace |
3737
| Domain Configuration | Domain on PV using WDT <p> Domain home in image using WLST <p> Domain home in image using WDT <p> Domain with serverStartPolicy ADMIN_ONLY <p> Domain with auto and custom situational configuration <p> Two domains managed by two operators <p> Domain with Recycle weblogicDomainStorageReclaimPolicy <p> Domain with default sample values |
38-
38+
| Domain on PV with two configured clusters |Domain with 2 configured clusters created using WLST |
39+
| Domain on PV with one configured cluster and one dynamic cluster | Domain with 2 clusters configured and dynamic created using WLST |
3940

4041
Basic Use Cases described above are verified in all the domain configurations. Also the below use cases are covered:
4142

integration-tests/src/test/java/oracle/kubernetes/operator/BaseTest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,17 @@ public static void initialize(String appPropsFile) throws Exception {
213213
logger.info("Env var BRANCH_NAME " + System.getenv("BRANCH_NAME"));
214214
}
215215

216+
/**
217+
* Call the basic usecases tests
218+
*
219+
* @param domain
220+
* @throws Exception
221+
*/
222+
protected void testBasicUseCases(Domain domain) throws Exception {
223+
testAdminT3Channel(domain);
224+
testAdminServerExternalService(domain);
225+
}
226+
216227
/**
217228
* Access Admin REST endpoint using admin node host and node port
218229
*

integration-tests/src/test/java/oracle/kubernetes/operator/ITMultipleClusters.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -154,17 +154,6 @@ public void testCreateDomainTwoMixedCluster() throws Exception {
154154
logger.info("SUCCESS - " + testMethodName);
155155
}
156156

157-
/**
158-
* Call the basic usecases tests
159-
*
160-
* @param Domain
161-
* @throws Exception
162-
*/
163-
private void testBasicUseCases(Domain domain) throws Exception {
164-
testAdminT3Channel(domain);
165-
testAdminServerExternalService(domain);
166-
}
167-
168157
/**
169158
* Append a second cluster to the domain template
170159
*

0 commit comments

Comments
 (0)