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 2525
2626import static oracle .weblogic .kubernetes .TestConstants .MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG ;
2727import static oracle .weblogic .kubernetes .TestConstants .OPERATOR_RELEASE_NAME ;
28+ import static oracle .weblogic .kubernetes .TestConstants .WEBLOGIC_SLIM ;
2829import static oracle .weblogic .kubernetes .TestConstants .WEBLOGIC_VERSION ;
2930import static oracle .weblogic .kubernetes .actions .ActionConstants .MODEL_DIR ;
3031import static oracle .weblogic .kubernetes .actions .ActionConstants .WORK_DIR ;
@@ -258,7 +259,9 @@ void testOperatorLogIntrospectorMsg() {
258259 String operatorPodLog = assertDoesNotThrow (() -> getPodLog (operatorPodName , helper .opNamespace ));
259260 logger .info ("operator pod log: {0}" , operatorPodLog );
260261 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+ }
262265 assertTrue (operatorPodLog .contains ("Job " + domainUid + "-introspector has failed" ));
263266 assertTrue (operatorPodLog .contains (MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG ));
264267 }
Original file line number Diff line number Diff line change 1919import io .kubernetes .client .openapi .models .V1ServiceBackendPort ;
2020import oracle .weblogic .kubernetes .actions .impl .NginxParams ;
2121import oracle .weblogic .kubernetes .actions .impl .primitive .HelmParams ;
22+ import oracle .weblogic .kubernetes .annotations .DisabledOnSlimImage ;
2223import oracle .weblogic .kubernetes .annotations .IntegrationTest ;
2324import oracle .weblogic .kubernetes .annotations .Namespaces ;
2425import oracle .weblogic .kubernetes .logging .LoggingFacade ;
7374
7475@ DisplayName ("Test WebLogic remote console connecting to mii domain" )
7576@ IntegrationTest
77+ @ DisabledOnSlimImage
7678class ItRemoteConsole {
7779
7880 private static String domainNamespace = null ;
You can’t perform that action at this time.
0 commit comments