Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 93c2f79

Browse files
sankarpnrjeberhard
authored andcommitted
Jakarta changes to tests
1 parent 6cd2c41 commit 93c2f79

16 files changed

+211
-40
lines changed

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItConfigDistributionStrategy.java‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
import static oracle.weblogic.kubernetes.TestConstants.RESULTS_TEMPFILE;
6868
import static oracle.weblogic.kubernetes.TestConstants.TRAEFIK_INGRESS_HTTP_HOSTPORT;
6969
import static oracle.weblogic.kubernetes.TestConstants.WEBLOGIC_12213;
70+
import static oracle.weblogic.kubernetes.TestConstants.WEBLOGIC_IMAGE_TO_USE_IN_SPEC;
7071
import static oracle.weblogic.kubernetes.actions.ActionConstants.APP_DIR;
7172
import static oracle.weblogic.kubernetes.actions.ActionConstants.MODEL_DIR;
7273
import static oracle.weblogic.kubernetes.actions.ActionConstants.RESOURCE_DIR;
@@ -1024,7 +1025,8 @@ private void createDomain() {
10241025
uniqueDomainHome,
10251026
2,
10261027
t3ChannelPort,
1027-
configuration);
1028+
configuration,
1029+
WEBLOGIC_IMAGE_TO_USE_IN_SPEC);
10281030
domain.spec().serverPod().addEnvItem(new V1EnvVar()
10291031
.name("JAVA_OPTIONS")
10301032
.value("-Dweblogic.debug.DebugSituationalConfig=true "

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItCrossDomainTransactionSecurity.java‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ void testCrossDomainTxWithSSL() throws InterruptedException, IOException {
334334
.getAuxiliaryImages().getFirst()
335335
.image(miiAuxiliaryImage2).sourceModelHome("/auxiliary/models");
336336

337-
HashMap domain2Map = new HashMap<>();
337+
HashMap<String, String> domain2Map = new HashMap<>();
338338
domain2Map.put("weblogic.domainUID", domain2Uid);
339339
domainCR.metadata().name(domain2Uid)
340340
.namespace(domainNamespace).labels(domain2Map);

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItDBOperator.java‎

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
package oracle.weblogic.kubernetes;
55

6+
import java.io.IOException;
67
import java.nio.file.Files;
78
import java.nio.file.Path;
89
import java.nio.file.Paths;
@@ -23,6 +24,7 @@
2324
import oracle.weblogic.kubernetes.logging.LoggingFacade;
2425
import oracle.weblogic.kubernetes.utils.ExecResult;
2526
import oracle.weblogic.kubernetes.utils.FmwUtils;
27+
import oracle.weblogic.kubernetes.utils.JakartaRefactorUtil;
2628
import org.junit.jupiter.api.AfterAll;
2729
import org.junit.jupiter.api.BeforeAll;
2830
import org.junit.jupiter.api.DisplayName;
@@ -327,7 +329,7 @@ void testFmwModelInImageWithDbOperator() {
327329
* Create WebLogic domain using model in image and Oracle database used for JMS and JTA migration and service logs.
328330
*/
329331
@Test
330-
void testWlsModelInImageWithDbOperator() {
332+
void testWlsModelInImageWithDbOperator() throwsIOException{
331333

332334
// Create the repo secret to pull the image
333335
// this secret is used only for non-kind cluster
@@ -435,13 +437,17 @@ private void testReuseRCUschemaToRestartDomain() {
435437
/**
436438
* Verify JMS/JTA Service is migrated to an available active server.
437439
*/
438-
private void testMiiJmsJtaServiceMigration() {
440+
private void testMiiJmsJtaServiceMigration() throwsIOException{
439441

440442
// build the standalone JMS Client on Admin pod
441443
String destLocation = "/u01/JmsSendReceiveClient.java";
444+
Path srcFile = Paths.get(RESOURCE_DIR, "jms", "JmsSendReceiveClient.java");
445+
Path destFile = Paths.get(WORK_DIR, ItDBOperator.class.getName(), "jms", "JmsSendReceiveClient.java");
446+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
447+
442448
assertDoesNotThrow(() -> copyFileToPod(wlsDomainNamespace,
443449
wlsAdminServerPodName, "",
444-
Paths.get(RESOURCE_DIR, "jms", "JmsSendReceiveClient.java"),
450+
destFile,
445451
Paths.get(destLocation)));
446452
runJavacInsidePod(wlsAdminServerPodName, wlsDomainNamespace, destLocation);
447453

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItExternalLbTunneling.java‎

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
package oracle.weblogic.kubernetes;
55

6+
import java.io.IOException;
67
import java.net.InetAddress;
78
import java.net.UnknownHostException;
89
import java.nio.file.Path;
@@ -32,6 +33,7 @@
3233
import oracle.weblogic.kubernetes.annotations.Namespaces;
3334
import oracle.weblogic.kubernetes.logging.LoggingFacade;
3435
import oracle.weblogic.kubernetes.utils.ExecResult;
36+
import oracle.weblogic.kubernetes.utils.JakartaRefactorUtil;
3537
import org.junit.jupiter.api.AfterAll;
3638
import org.junit.jupiter.api.BeforeAll;
3739
import org.junit.jupiter.api.BeforeEach;
@@ -62,6 +64,7 @@
6264
import static oracle.weblogic.kubernetes.TestConstants.TEST_IMAGES_REPO_SECRET_NAME;
6365
import static oracle.weblogic.kubernetes.TestConstants.TRAEFIK_RELEASE_NAME;
6466
import static oracle.weblogic.kubernetes.actions.ActionConstants.RESOURCE_DIR;
67+
import static oracle.weblogic.kubernetes.actions.ActionConstants.WORK_DIR;
6568
import static oracle.weblogic.kubernetes.actions.TestActions.createDomainCustomResource;
6669
import static oracle.weblogic.kubernetes.actions.TestActions.getServicePort;
6770
import static oracle.weblogic.kubernetes.actions.TestActions.uninstallTraefik;
@@ -264,7 +267,7 @@ void beforeEach() {
264267
@DisabledIfEnvironmentVariable(named = "OKD", matches = "true")
265268
@Test
266269
@DisplayName("Verify RMI access to WLS through Traefik LoadBalancer")
267-
void testExternalRmiAccessThruTraefik() {
270+
void testExternalRmiAccessThruTraefik() throwsIOException{
268271
// Build the standalone JMS Client to send and receive messages
269272
buildClient();
270273
buildClientOnPod();
@@ -324,7 +327,7 @@ void testExternalRmiAccessThruTraefik() {
324327
@DisabledIfEnvironmentVariable(named = "OKD", matches = "true")
325328
@Test
326329
@DisplayName("Verify tls RMI access WLS through Traefik loadBalancer")
327-
void testExternalRmiAccessThruTraefikHttpsTunneling() {
330+
void testExternalRmiAccessThruTraefikHttpsTunneling() throwsIOException{
328331

329332
// Build the standalone JMS Client to send and receive messages
330333
buildClient();
@@ -375,7 +378,7 @@ void testExternalRmiAccessThruTraefikHttpsTunneling() {
375378
@EnabledIfEnvironmentVariable(named = "OKD", matches = "true")
376379
@Test
377380
@DisplayName("Verify RMI access WLS through Route in OKD ")
378-
void testExternalRmiAccessThruRouteHttpTunneling() {
381+
void testExternalRmiAccessThruRouteHttpTunneling() throwsIOException{
379382

380383
// Build the standalone JMS Client to send and receive messages
381384
buildClient();
@@ -404,7 +407,7 @@ void testExternalRmiAccessThruRouteHttpTunneling() {
404407
@EnabledIfEnvironmentVariable(named = "OKD", matches = "true")
405408
@Test
406409
@DisplayName("Verify tls RMI access WLS through Route in OKD ")
407-
void testExternalRmiAccessThruRouteHttpsTunneling() {
410+
void testExternalRmiAccessThruRouteHttpsTunneling() throwsIOException{
408411

409412
// Build the standalone JMS Client to send and receive messages
410413
buildClient();
@@ -500,7 +503,7 @@ private void runExtClient(String routeHost, int httpTunnelingPort, int serverCou
500503
// server on WebLogic cluster.
501504
// Copy the installed JDK from WebLogic server pod to local filesystem
502505
// to build and run the JMS client outside of K8s Cluster.
503-
private void buildClient() {
506+
private void buildClient() throwsIOException{
504507

505508
assertDoesNotThrow(() -> copyFileFromPod(domainNamespace,
506509
adminServerPodName, "weblogic-server",
@@ -517,12 +520,16 @@ private void buildClient() {
517520
() -> exec(new String(chmodCmd), true));
518521
logger.info("chmod command {0}", chmodCmd.toString());
519522
logger.info("chmod command returned {0}", cresult.toString());
523+
524+
Path srcFile = Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java");
525+
Path destFile = Paths.get(WORK_DIR, ItExternalLbTunneling.class.getName(), "jmsclient", "JmsTestClient.java");
526+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
520527

521528
StringBuffer javacCmd = new StringBuffer("");
522529
javacCmd.append(Paths.get(RESULTS_ROOT, "/jdk/bin/javac "));
523530
javacCmd.append(Paths.get(" -cp "));
524531
javacCmd.append(Paths.get(RESULTS_ROOT, "wlthint3client.jar "));
525-
javacCmd.append(Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java"));
532+
javacCmd.append(destFile);
526533
javacCmd.append(Paths.get(" -d "));
527534
javacCmd.append(Paths.get(RESULTS_ROOT));
528535
logger.info("javac command {0}", javacCmd.toString());
@@ -534,12 +541,15 @@ private void buildClient() {
534541
}
535542

536543
// Build JMS Client inside the Admin Server Pod
537-
private void buildClientOnPod() {
544+
private void buildClientOnPod() throws IOException {
545+
546+
Path srcFile = Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java");
547+
Path destFile = Paths.get(WORK_DIR, ItExternalLbTunneling.class.getName(), "jmsclient", "JmsTestClient.java");
548+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
549+
538550
String destLocation = "/u01/JmsTestClient.java";
539551
assertDoesNotThrow(() -> copyFileToPod(domainNamespace,
540-
adminServerPodName, "weblogic-server",
541-
Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java"),
542-
Paths.get(destLocation)));
552+
adminServerPodName, "weblogic-server", destFile, Paths.get(destLocation)));
543553

544554
String jarLocation = "/u01/oracle/wlserver/server/lib/wlthint3client.jar";
545555
StringBuffer javacCmd = new StringBuffer(KUBERNETES_CLI + " exec -n ");

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItExternalNodePortService.java‎

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
package oracle.weblogic.kubernetes;
55

6+
import java.io.IOException;
67
import java.nio.file.Path;
78
import java.nio.file.Paths;
89
import java.util.ArrayList;
@@ -28,6 +29,7 @@
2829
import oracle.weblogic.kubernetes.annotations.Namespaces;
2930
import oracle.weblogic.kubernetes.logging.LoggingFacade;
3031
import oracle.weblogic.kubernetes.utils.ExecResult;
32+
import oracle.weblogic.kubernetes.utils.JakartaRefactorUtil;
3133
import org.junit.jupiter.api.AfterAll;
3234
import org.junit.jupiter.api.BeforeAll;
3335
import org.junit.jupiter.api.BeforeEach;
@@ -53,6 +55,7 @@
5355
import static oracle.weblogic.kubernetes.TestConstants.SKIP_CLEANUP;
5456
import static oracle.weblogic.kubernetes.TestConstants.TEST_IMAGES_REPO_SECRET_NAME;
5557
import static oracle.weblogic.kubernetes.actions.ActionConstants.RESOURCE_DIR;
58+
import static oracle.weblogic.kubernetes.actions.ActionConstants.WORK_DIR;
5659
import static oracle.weblogic.kubernetes.actions.TestActions.createDomainCustomResource;
5760
import static oracle.weblogic.kubernetes.actions.TestActions.getServiceNodePort;
5861
import static oracle.weblogic.kubernetes.assertions.TestAssertions.domainExists;
@@ -218,7 +221,7 @@ void beforeEach() {
218221
*/
219222
@Test
220223
@DisplayName("Verify RMI access to WLS through NodePort Service")
221-
void testExternalRmiAccessThruNodePortService() {
224+
void testExternalRmiAccessThruNodePortService() throwsIOException{
222225
// Build the standalone JMS Client locally to send and receive messages
223226
buildClient();
224227
// Prepare the Nodeport service yaml file from the template file by
@@ -306,7 +309,7 @@ private void runExtClient(String hostAndPort, int serverCount, boolean checkConn
306309
// server on WebLogic cluster.
307310
// Copy the installed JDK from WebLogic server pod to local filesystem to
308311
// build and run the JMS client outside of K8s Cluster.
309-
private void buildClient() {
312+
private void buildClient() throwsIOException{
310313

311314
assertDoesNotThrow(() -> copyFileFromPod(domainNamespace,
312315
adminServerPodName, "weblogic-server",
@@ -322,12 +325,16 @@ private void buildClient() {
322325
() -> exec(new String(chmodCmd), true));
323326
logger.info("chmod command {0}", chmodCmd.toString());
324327
logger.info("chmod command returned {0}", cresult.toString());
328+
329+
Path srcFile = Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java");
330+
Path destFile = Paths.get(WORK_DIR, ItExternalNodePortService.class.getName(), "jmsclient", "JmsTestClient.java");
331+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
325332

326333
StringBuffer javacCmd = new StringBuffer("");
327334
javacCmd.append(Paths.get(RESULTS_ROOT, "/jdk/bin/javac "));
328335
javacCmd.append(Paths.get(" -cp "));
329336
javacCmd.append(Paths.get(RESULTS_ROOT, "wlthint3client.jar "));
330-
javacCmd.append(Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java"));
337+
javacCmd.append(destFile);
331338
javacCmd.append(Paths.get(" -d "));
332339
javacCmd.append(Paths.get(RESULTS_ROOT));
333340
logger.info("javac command {0}", javacCmd.toString());

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItFmwDomainInPvUserCreateRcu.java‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ static void initAll(@Namespaces(3) List<String> namespaces) {
183183
@Test
184184
@Order(1)
185185
@DisplayName("Create a FMW domain on PV when user per-creates RCU")
186-
@Tag("gate")
187186
void testFmwDomainOnPvUserCreatesRCU() {
188187

189188
final String pvName = getUniqueName(domainUid1 + "-pv-");

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiCreateAuxImageWithImageTool.java‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,6 @@ WEBLOGIC_IMAGE_TO_USE_IN_SPEC, adminSecretName, createSecretsForImageRepos(domai
220220
*/
221221
@Test
222222
@DisplayName("Test to create domain using auxiliary image with customized options")
223-
@Tag("gate")
224223
@DisabledIfEnvironmentVariable(named = "ARM", matches = "true")
225224
void testCreateDomainUsingAuxImageCustomizedOptions() {
226225
// admin/managed server name here should match with model yaml

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiCustomSslStore.java‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
package oracle.weblogic.kubernetes;
55

6+
import java.io.IOException;
7+
import java.nio.file.Path;
68
import java.nio.file.Paths;
79
import java.util.Arrays;
810
import java.util.List;
@@ -11,6 +13,7 @@
1113
import oracle.weblogic.kubernetes.annotations.IntegrationTest;
1214
import oracle.weblogic.kubernetes.annotations.Namespaces;
1315
import oracle.weblogic.kubernetes.logging.LoggingFacade;
16+
import oracle.weblogic.kubernetes.utils.JakartaRefactorUtil;
1417
import org.junit.jupiter.api.BeforeAll;
1518
import org.junit.jupiter.api.DisplayName;
1619
import org.junit.jupiter.api.MethodOrderer;
@@ -26,6 +29,7 @@
2629
import static oracle.weblogic.kubernetes.TestConstants.WEBLOGIC_IMAGE_TAG;
2730
import static oracle.weblogic.kubernetes.actions.ActionConstants.MODEL_DIR;
2831
import static oracle.weblogic.kubernetes.actions.ActionConstants.RESOURCE_DIR;
32+
import static oracle.weblogic.kubernetes.actions.ActionConstants.WORK_DIR;
2933
import static oracle.weblogic.kubernetes.actions.TestActions.scaleAllClustersInDomain;
3034
import static oracle.weblogic.kubernetes.utils.CommonMiiTestUtils.createDomainResourceWithLogHome;
3135
import static oracle.weblogic.kubernetes.utils.CommonMiiTestUtils.createDomainSecret;
@@ -191,13 +195,17 @@ static void initAll(@Namespaces(2) List<String> namespaces) {
191195
*/
192196
@Test
193197
@DisplayName("Verify JNDI Context can be accessed using t3s cluster URL")
194-
void testMiiGetCustomSSLContext() {
198+
void testMiiGetCustomSSLContext() throwsIOException{
195199

196200
// build the standalone Client on Admin pod after rolling restart
197201
String destLocation = "/u01/SslTestClient.java";
202+
Path srcFile = Paths.get(RESOURCE_DIR, "ssl", "SslTestClient.java");
203+
Path destFile = Paths.get(WORK_DIR, ItMiiCustomSslStore.class.getName(), "ssl", "SslTestClient.java");
204+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
205+
198206
assertDoesNotThrow(() -> copyFileToPod(domainNamespace,
199207
adminServerPodName, "",
200-
Paths.get(RESOURCE_DIR, "ssl", "SslTestClient.java"),
208+
destFile,
201209
Paths.get(destLocation)));
202210
runJavacInsidePod(adminServerPodName, domainNamespace, destLocation);
203211

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDynamicUpdatePart1.java‎

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
package oracle.weblogic.kubernetes;
55

6+
import java.io.IOException;
67
import java.nio.file.Files;
78
import java.nio.file.Path;
89
import java.nio.file.Paths;
@@ -14,6 +15,7 @@
1415
import oracle.weblogic.kubernetes.annotations.IntegrationTest;
1516
import oracle.weblogic.kubernetes.annotations.Namespaces;
1617
import oracle.weblogic.kubernetes.logging.LoggingFacade;
18+
import oracle.weblogic.kubernetes.utils.JakartaRefactorUtil;
1719
import oracle.weblogic.kubernetes.utils.MiiDynamicUpdateHelper;
1820
import org.junit.jupiter.api.BeforeAll;
1921
import org.junit.jupiter.api.BeforeEach;
@@ -347,7 +349,7 @@ void testMiiAddCluster() {
347349
@Test
348350
@Order(5)
349351
@DisplayName("Test modification to Dynamic cluster size parameters")
350-
void testMiiUpdateDynamicClusterSize() {
352+
void testMiiUpdateDynamicClusterSize() throwsIOException{
351353
String clusterName = "cluster-1";
352354
String clusterResName = domainUid + "-" + clusterName;
353355
// Scale the cluster by updating the replica count to 5
@@ -411,10 +413,14 @@ void testMiiUpdateDynamicClusterSize() {
411413

412414
// build the standalone JMS Client on Admin pod after rolling restart
413415
String destLocation = "/u01/JmsTestClient.java";
416+
Path srcFile = Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java");
417+
Path destFile = Paths.get(WORK_DIR, ItMiiDynamicUpdatePart1.class.getName(), "jmsclient", "JmsTestClient.java");
418+
JakartaRefactorUtil.copyAndRefactorDirectory(srcFile.getParent(), destFile.getParent());
414419
assertDoesNotThrow(() -> copyFileToPod(helper.domainNamespace,
415420
helper.adminServerPodName, "",
416-
Paths.get(RESOURCE_DIR, "tunneling", "JmsTestClient.java"),
417-
Paths.get(destLocation)));
421+
destFile,
422+
Paths.get(destLocation)));
423+
418424
runJavacInsidePod(helper.adminServerPodName, helper.domainNamespace, destLocation);
419425

420426
// Scale the cluster using replica count 5, patch cluster should fail as max size is 4

‎integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDynamicUpdatePart3.java‎

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import static oracle.weblogic.kubernetes.TestConstants.ADMIN_USERNAME_DEFAULT;
3131
import static oracle.weblogic.kubernetes.TestConstants.MII_DYNAMIC_UPDATE_EXPECTED_ERROR_MSG;
3232
import static oracle.weblogic.kubernetes.TestConstants.OCNE;
33+
import static oracle.weblogic.kubernetes.TestConstants.OKD;
3334
import static oracle.weblogic.kubernetes.TestConstants.OKE_CLUSTER;
3435
import static oracle.weblogic.kubernetes.TestConstants.OPERATOR_RELEASE_NAME;
3536
import static oracle.weblogic.kubernetes.TestConstants.TRAEFIK_INGRESS_HTTP_HOSTPORT;
@@ -331,7 +332,7 @@ void testMiiChangeDataSourceParameterWithCommitUpdateAndRoll() {
331332
verifyPodIntrospectVersionUpdated(pods.keySet(), introspectVersion, helper.domainNamespace);
332333

333334
// check datasource configuration using REST api
334-
if (OKE_CLUSTER || OCNE) {
335+
if (OKE_CLUSTER || OCNE || OKD) {
335336
assertTrue(checkSystemResourceConfigViaAdminPod(helper.adminServerPodName, helper.domainNamespace,
336337
"JDBCSystemResources/TestDataSource2/JDBCResource/JDBCDataSourceParams",
337338
"jdbc\\/TestDataSource2-2"), "JDBCSystemResource JNDIName not found");
@@ -407,7 +408,7 @@ void testMiiChangeDataSourceParameterWithCommitUpdateAndRoll() {
407408
verifyPodIntrospectVersionUpdated(pods.keySet(), introspectVersion, helper.domainNamespace);
408409

409410
// check datasource configuration is deleted using REST api
410-
if (OKE_CLUSTER) {
411+
if (OKE_CLUSTER || OKD) {
411412
assertFalse(checkSystemResourceConfigViaAdminPod(helper.adminServerPodName, helper.domainNamespace,
412413
"JDBCSystemResources",
413414
"TestDataSource2"), "Found JDBCSystemResource datasource, should be deleted");

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /