|
28 | 28 | import oracle.weblogic.kubernetes.actions.impl.primitive.Command; |
29 | 29 | import oracle.weblogic.kubernetes.actions.impl.primitive.CommandParams; |
30 | 30 | import oracle.weblogic.kubernetes.actions.impl.primitive.HelmParams; |
| 31 | +import oracle.weblogic.kubernetes.annotations.DisabledOnSlimImage; |
31 | 32 | import oracle.weblogic.kubernetes.annotations.IntegrationTest; |
32 | 33 | import oracle.weblogic.kubernetes.annotations.Namespaces; |
33 | 34 | import oracle.weblogic.kubernetes.logging.LoggingFacade; |
|
54 | 55 | import static oracle.weblogic.kubernetes.TestConstants.RESULTS_ROOT; |
55 | 56 | import static oracle.weblogic.kubernetes.TestConstants.SKIP_CLEANUP; |
56 | 57 | import static oracle.weblogic.kubernetes.TestConstants.TRAEFIK_RELEASE_NAME; |
57 | | -import static oracle.weblogic.kubernetes.TestConstants.WEBLOGIC_SLIM; |
58 | 58 | import static oracle.weblogic.kubernetes.actions.ActionConstants.RESOURCE_DIR; |
59 | 59 | import static oracle.weblogic.kubernetes.actions.TestActions.createDomainCustomResource; |
60 | 60 | import static oracle.weblogic.kubernetes.actions.TestActions.getServiceNodePort; |
|
86 | 86 | import static org.junit.jupiter.api.Assertions.assertNotEquals; |
87 | 87 | import static org.junit.jupiter.api.Assertions.assertNotNull; |
88 | 88 | import static org.junit.jupiter.api.Assertions.assertTrue; |
89 | | -import static org.junit.jupiter.api.Assumptions.assumeFalse; |
90 | 89 |
|
91 | 90 | /** |
92 | 91 | * The use case described in this class verifies that an external RMI client |
|
108 | 107 |
|
109 | 108 | @DisplayName("Test external RMI access through loadbalncer tunneling") |
110 | 109 | @IntegrationTest |
| 110 | +@DisabledOnSlimImage |
111 | 111 | class ItExternalLbTunneling { |
112 | 112 |
|
113 | 113 | private static String opNamespace = null; |
@@ -252,7 +252,6 @@ public void beforeEach() { |
252 | 252 | @DisplayName("Verify RMI access to WLS through Traefik LoadBalancer") |
253 | 253 | void testExternalRmiAccessThruTraefik() { |
254 | 254 |
|
255 | | - assumeFalse(WEBLOGIC_SLIM, "Skipping RMI Tunnelling Test for slim image"); |
256 | 255 | // Build the standalone JMS Client to send and receive messages |
257 | 256 | buildClient(); |
258 | 257 | buildClientOnPod(); |
@@ -311,8 +310,6 @@ void testExternalRmiAccessThruTraefik() { |
311 | 310 | @DisplayName("Verify tls RMI access WLS through Traefik loadBalancer") |
312 | 311 | void testExternalRmiAccessThruTraefikHttpsTunneling() { |
313 | 312 |
|
314 | | - assumeFalse(WEBLOGIC_SLIM, "Skipping RMI Tunnelling Test for slim image"); |
315 | | - |
316 | 313 | // Build the standalone JMS Client to send and receive messages |
317 | 314 | buildClient(); |
318 | 315 |
|
@@ -361,9 +358,6 @@ void testExternalRmiAccessThruTraefikHttpsTunneling() { |
361 | 358 | @DisplayName("Verify RMI access WLS through Route in OKD ") |
362 | 359 | void testExternalRmiAccessThruRouteHttpTunneling() { |
363 | 360 |
|
364 | | - assumeFalse(WEBLOGIC_SLIM, "Skipping RMI Tunnelling Test for slim image"); |
365 | | - logger.info("Installing Nginx controller using helm"); |
366 | | - |
367 | 361 | // Build the standalone JMS Client to send and receive messages |
368 | 362 | buildClient(); |
369 | 363 | buildClientOnPod(); |
@@ -393,8 +387,6 @@ void testExternalRmiAccessThruRouteHttpTunneling() { |
393 | 387 | @DisplayName("Verify tls RMI access WLS through Route in OKD ") |
394 | 388 | void testExternalRmiAccessThruRouteHttpsTunneling() { |
395 | 389 |
|
396 | | - assumeFalse(WEBLOGIC_SLIM, "Skipping RMI Tunnelling Test for slim image"); |
397 | | - |
398 | 390 | // Build the standalone JMS Client to send and receive messages |
399 | 391 | buildClient(); |
400 | 392 |
|
|
0 commit comments