Skip to content

Commit 0472755

Browse files
add README.md
1 parent 7cb717d commit 0472755

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

integration-tests/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,14 @@ Basic Use Cases described above are verified in all the domain configurations. A
7777
| Two Operators using same External Https Port | create chart using same https rest port as already running first operator, verify that deployment fails with expected error |
7878
| Two Operators using same target domains namespace | create chart using target domains namespace as already running first operator, verify that deployment fails with expected error |
7979
| Operator Helm Chart using not preexisted target domains namespace | create chart using not preexisted target domains namespace as already running first operator, verify that deployment fails with expected error |
80+
81+
| Server Pods Restarted by modifying properties on the domain resource| Use Case |
82+
| --- | --- |
83+
| Server pods restarted by changing Env property | Verify admin and managed server pods being restarted by property change: "-Dweblogic.StdoutDebugEnabled=false" --> "-Dweblogic.StdoutDebugEnabled=true" |
84+
| Server pods restarted by changing image | Verify admin and managed server pods being restarted by property change: image: "store/oracle/weblogic:12.2.1.3" --> image:"store/oracle/weblogic:duplicate" |
85+
| Server pods restarted by changing imagePullPolicy | Verify admin and managed server pods being restarted by property change: imagePullPolicy: IfNotPresent --> imagePullPolicy: Never |
86+
| Server pods restarted by changingincludeServerOutInPodLog | Verify admin and managed server pods being restarted by property change: includeServerOutInPodLog: true --> includeServerOutInPodLog: false |
87+
| Server pods restarted by changing logHomeEnable | Verify admin and managed server pods being restarted by property change: logHomeEnabled: true --> logHomeEnabled: false |
8088

8189

8290

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static void staticUnPrepare() throws Exception {
7777
* @throws Exception
7878
*/
7979
@Test
80-
public void testServerRestartByChangingEnvProperty() throws Exception {
80+
public void testServerPodsRestartByChangingEnvProperty() throws Exception {
8181
Assume.assumeFalse(QUICKTEST);
8282
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
8383
logTestBegin(testMethodName);
@@ -99,7 +99,7 @@ public void testServerRestartByChangingEnvProperty() throws Exception {
9999
* @throws Exception
100100
*/
101101
@Test
102-
public void testServerRestartByChangingLogHomeEnabled() throws Exception {
102+
public void testServerPodsRestartByChangingLogHomeEnabled() throws Exception {
103103
Assume.assumeFalse(QUICKTEST);
104104
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
105105
logTestBegin(testMethodName);
@@ -121,7 +121,7 @@ public void testServerRestartByChangingLogHomeEnabled() throws Exception {
121121
* @throws Exception
122122
*/
123123
@Test
124-
public void testServerRestartByChangingImagePullPolicy() throws Exception {
124+
public void testServerPodsRestartByChangingImagePullPolicy() throws Exception {
125125
Assume.assumeFalse(QUICKTEST);
126126
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
127127
logTestBegin(testMethodName);
@@ -144,7 +144,7 @@ public void testServerRestartByChangingImagePullPolicy() throws Exception {
144144
* @throws Exception
145145
*/
146146
@Test
147-
public void testServerRestartByChangingIncludeServerOutInPodLog() throws Exception {
147+
public void testServerPodsRestartByChangingIncludeServerOutInPodLog() throws Exception {
148148
Assume.assumeFalse(QUICKTEST);
149149
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
150150
logTestBegin(testMethodName);
@@ -168,7 +168,7 @@ public void testServerRestartByChangingIncludeServerOutInPodLog() throws Excepti
168168
* @throws Exception
169169
*/
170170
@Test
171-
public void testServerRestartByChangingImage() throws Exception {
171+
public void testServerPodsRestartByChangingImage() throws Exception {
172172
Assume.assumeFalse(QUICKTEST);
173173
String testMethodName = new Object() {}.getClass().getEnclosingMethod().getName();
174174
logTestBegin(testMethodName);

0 commit comments

Comments
 (0)