Skip to content

Turning off the testcases to prevent build failures due to docker image - Defect 303550 #31187

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-2.0/
*
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2023 IBM Corporation and others.
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -14,6 +14,7 @@

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.runner.RunWith;

import componenttest.annotation.Server;
Expand All @@ -24,6 +25,7 @@
import fat.mongo.web.MongoTestServlet;

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

@Server("mongo.fat.server")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2023 IBM Corporation and others.
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -24,6 +24,7 @@
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -42,6 +43,7 @@

@RunWith(FATRunner.class)
@Mode(TestMode.FULL)
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
public class MongoConfigUpdateTest extends FATServletClient {
@Server("mongo.fat.server.config.update")
public static LibertyServer server;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2023 IBM Corporation and others.
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -16,6 +16,7 @@

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.runner.RunWith;

import componenttest.annotation.Server;
Expand All @@ -26,6 +27,7 @@
import fat.mongo.web.MongoDbSSLDefaultConfigServlet;

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

@Server("mongo.fat.server.ssl.default.config")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2023 IBM Corporation and others.
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -18,6 +18,7 @@
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -31,6 +32,7 @@

@RunWith(FATRunner.class)
@Mode(TestMode.FULL)
@Ignore //Turning off the test cases to prevent build failures due to docker image - Defect 303550
public class MongoSSLInvalidTrustTest extends FATServletClient {
@Server("mongo.fat.server.ssl")
public static LibertyServer server;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015, 2023 IBM Corporation and others.
* Copyright (c) 2015, 2023, 2025 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
Expand All @@ -18,6 +18,7 @@
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -32,6 +33,7 @@
import fat.mongo.web.MongoTestServlet;

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