@@ -84,10 +84,10 @@ public void testServerPodsRestartByChangingEnvProperty() throws Exception {
84
84
85
85
boolean testCompletedSuccessfully = false ;
86
86
logger .info (
87
- "About to testDomainServerRestart for Domain: "
87
+ "About to testDomainServerPodRestart for Domain: "
88
88
+ domain .getDomainUid ()
89
89
+ " env property: StdoutDebugEnabled=false to StdoutDebugEnabled=true" );
90
- domain .testDomainServerRestart (
90
+ domain .testDomainServerPodRestart (
91
91
"\" -Dweblogic.StdoutDebugEnabled=false\" " , "\" -Dweblogic.StdoutDebugEnabled=true\" " );
92
92
93
93
logger .info ("SUCCESS - " + testMethodName );
@@ -107,10 +107,10 @@ public void testServerPodsRestartByChangingLogHomeEnabled() throws Exception {
107
107
boolean testCompletedSuccessfully = false ;
108
108
109
109
logger .info (
110
- "About to testDomainServerRestart for Domain: "
110
+ "About to testDomainServerPodRestart for Domain: "
111
111
+ domain .getDomainUid ()
112
112
+ " logHomeEnabled: true --> logHomeEnabled: false" );
113
- domain .testDomainServerRestart ("logHomeEnabled: true" , "logHomeEnabled: false" );
113
+ domain .testDomainServerPodRestart ("logHomeEnabled: true" , "logHomeEnabled: false" );
114
114
115
115
logger .info ("SUCCESS - " + testMethodName );
116
116
}
@@ -129,10 +129,10 @@ public void testServerPodsRestartByChangingImagePullPolicy() throws Exception {
129
129
boolean testCompletedSuccessfully = false ;
130
130
131
131
logger .info (
132
- "About to testDomainServerRestart for Domain: "
132
+ "About to testDomainServerPodRestart for Domain: "
133
133
+ domain .getDomainUid ()
134
134
+ " imagePullPolicy: IfNotPresent --> imagePullPolicy: Never " );
135
- domain .testDomainServerRestart (
135
+ domain .testDomainServerPodRestart (
136
136
"imagePullPolicy: \" IfNotPresent\" " , "imagePullPolicy: \" Never\" " );
137
137
138
138
logger .info ("SUCCESS - " + testMethodName );
@@ -152,10 +152,10 @@ public void testServerPodsRestartByChangingIncludeServerOutInPodLog() throws Exc
152
152
boolean testCompletedSuccessfully = false ;
153
153
154
154
logger .info (
155
- "About to testDomainServerRestart for Domain: "
155
+ "About to testDomainServerPodRestart for Domain: "
156
156
+ domain .getDomainUid ()
157
157
+ " includeServerOutInPodLog: true --> includeServerOutInPodLog: false" );
158
- domain .testDomainServerRestart (
158
+ domain .testDomainServerPodRestart (
159
159
"includeServerOutInPodLog: true" , "includeServerOutInPodLog: false" );
160
160
161
161
logger .info ("SUCCESS - " + testMethodName );
@@ -176,11 +176,11 @@ public void testServerPodsRestartByChangingImage() throws Exception {
176
176
boolean testCompletedSuccessfully = false ;
177
177
try {
178
178
logger .info (
179
- "About to testDomainServerRestart for Domain: "
179
+ "About to testDomainServerPodRestart for Domain: "
180
180
+ domain .getDomainUid ()
181
181
+ " Image property: store/oracle/weblogic:12.2.1.3 to store/oracle/weblogic:duplicate" );
182
182
TestUtils .dockerTagImage ("store/oracle/weblogic:12.2.1.3" , "store/oracle/weblogic:duplicate" );
183
- domain .testDomainServerRestart (
183
+ domain .testDomainServerPodRestart (
184
184
"\" store/oracle/weblogic:12.2.1.3\" " , "\" store/oracle/weblogic:duplicate\" " );
185
185
} finally {
186
186
TestUtils .dockerRemoveImage ("store/oracle/weblogic:duplicate" );
0 commit comments