Skip to content

Commit c8d4d0c

Browse files
committed
Turning off each test class to prevent build failures due to docker image - Defect 303550
1 parent 5273451 commit c8d4d0c

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/FATSuite.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2013, 2025 IBM Corporation and others.
2+
* Copyright (c) 2013, 2023 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -21,7 +21,6 @@
2121
import java.util.Map;
2222

2323
import org.junit.Assume;
24-
import org.junit.Ignore;
2524
import org.junit.runner.RunWith;
2625
import org.junit.runners.Suite;
2726
import org.junit.runners.Suite.SuiteClasses;
@@ -41,7 +40,6 @@
4140
MongoDefaultSSLTest.class,
4241
MongoConfigUpdateTest.class
4342
})
44-
@Ignore //Turning off the testcases to prevent build failures due to docker image - Defect 303550
4543
public class FATSuite {
4644
public static final String APP_NAME = "mongo";
4745
public static String HOST_NAME;

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/MongoBasicTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2023 IBM Corporation and others.
2+
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -14,6 +14,7 @@
1414

1515
import org.junit.AfterClass;
1616
import org.junit.BeforeClass;
17+
import org.junit.Ignore;
1718
import org.junit.runner.RunWith;
1819

1920
import componenttest.annotation.Server;
@@ -24,6 +25,7 @@
2425
import fat.mongo.web.MongoTestServlet;
2526

2627
@RunWith(FATRunner.class)
28+
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
2729
public class MongoBasicTest extends FATServletClient {
2830

2931
@Server("mongo.fat.server")

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/MongoConfigUpdateTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2023 IBM Corporation and others.
2+
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -24,6 +24,7 @@
2424
import org.junit.AfterClass;
2525
import org.junit.Before;
2626
import org.junit.BeforeClass;
27+
import org.junit.Ignore;
2728
import org.junit.Test;
2829
import org.junit.runner.RunWith;
2930

@@ -42,6 +43,7 @@
4243

4344
@RunWith(FATRunner.class)
4445
@Mode(TestMode.FULL)
46+
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
4547
public class MongoConfigUpdateTest extends FATServletClient {
4648
@Server("mongo.fat.server.config.update")
4749
public static LibertyServer server;

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/MongoDefaultSSLTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2023 IBM Corporation and others.
2+
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -16,6 +16,7 @@
1616

1717
import org.junit.AfterClass;
1818
import org.junit.BeforeClass;
19+
import org.junit.Ignore;
1920
import org.junit.runner.RunWith;
2021

2122
import componenttest.annotation.Server;
@@ -26,6 +27,7 @@
2627
import fat.mongo.web.MongoDbSSLDefaultConfigServlet;
2728

2829
@RunWith(FATRunner.class)
30+
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
2931
public class MongoDefaultSSLTest extends FATServletClient {
3032

3133
@Server("mongo.fat.server.ssl.default.config")

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/MongoSSLInvalidTrustTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2023 IBM Corporation and others.
2+
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -18,6 +18,7 @@
1818
import org.junit.AfterClass;
1919
import org.junit.Before;
2020
import org.junit.BeforeClass;
21+
import org.junit.Ignore;
2122
import org.junit.Test;
2223
import org.junit.runner.RunWith;
2324

@@ -31,6 +32,7 @@
3132

3233
@RunWith(FATRunner.class)
3334
@Mode(TestMode.FULL)
35+
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
3436
public class MongoSSLInvalidTrustTest extends FATServletClient {
3537
@Server("mongo.fat.server.ssl")
3638
public static LibertyServer server;

dev/com.ibm.ws.mongo_fat/fat/src/com/ibm/ws/mongo/fat/MongoSSLTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2023 IBM Corporation and others.
2+
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License 2.0
55
* which accompanies this distribution, and is available at
@@ -18,6 +18,7 @@
1818
import org.junit.AfterClass;
1919
import org.junit.Before;
2020
import org.junit.BeforeClass;
21+
import org.junit.Ignore;
2122
import org.junit.Test;
2223
import org.junit.runner.RunWith;
2324

@@ -32,6 +33,7 @@
3233
import fat.mongo.web.MongoTestServlet;
3334

3435
@RunWith(FATRunner.class)
36+
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
3537
public class MongoSSLTest extends FATServletClient {
3638
@Server("mongo.fat.server.ssl")
3739
@TestServlets({

0 commit comments

Comments
 (0)