File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
integration-tests/src/test/java/oracle/weblogic/kubernetes Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 25
25
26
26
import static oracle .weblogic .kubernetes .TestConstants .MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG ;
27
27
import static oracle .weblogic .kubernetes .TestConstants .OPERATOR_RELEASE_NAME ;
28
+ import static oracle .weblogic .kubernetes .TestConstants .WEBLOGIC_SLIM ;
28
29
import static oracle .weblogic .kubernetes .TestConstants .WEBLOGIC_VERSION ;
29
30
import static oracle .weblogic .kubernetes .actions .ActionConstants .MODEL_DIR ;
30
31
import static oracle .weblogic .kubernetes .actions .ActionConstants .WORK_DIR ;
@@ -258,7 +259,9 @@ void testOperatorLogIntrospectorMsg() {
258
259
String operatorPodLog = assertDoesNotThrow (() -> getPodLog (operatorPodName , helper .opNamespace ));
259
260
logger .info ("operator pod log: {0}" , operatorPodLog );
260
261
assertTrue (operatorPodLog .contains ("Introspector Job Log" ));
261
- assertTrue (operatorPodLog .contains ("WebLogic version='" + WEBLOGIC_VERSION + "'" ));
262
+ if (!WEBLOGIC_SLIM ) {
263
+ assertTrue (operatorPodLog .contains ("WebLogic version='" + WEBLOGIC_VERSION + "'" ));
264
+ }
262
265
assertTrue (operatorPodLog .contains ("Job " + domainUid + "-introspector has failed" ));
263
266
assertTrue (operatorPodLog .contains (MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG ));
264
267
}
Original file line number Diff line number Diff line change 19
19
import io .kubernetes .client .openapi .models .V1ServiceBackendPort ;
20
20
import oracle .weblogic .kubernetes .actions .impl .NginxParams ;
21
21
import oracle .weblogic .kubernetes .actions .impl .primitive .HelmParams ;
22
+ import oracle .weblogic .kubernetes .annotations .DisabledOnSlimImage ;
22
23
import oracle .weblogic .kubernetes .annotations .IntegrationTest ;
23
24
import oracle .weblogic .kubernetes .annotations .Namespaces ;
24
25
import oracle .weblogic .kubernetes .logging .LoggingFacade ;
73
74
74
75
@ DisplayName ("Test WebLogic remote console connecting to mii domain" )
75
76
@ IntegrationTest
77
+ @ DisabledOnSlimImage
76
78
class ItRemoteConsole {
77
79
78
80
private static String domainNamespace = null ;
You can’t perform that action at this time.
0 commit comments