From c3ca2be4d3d5eb7ecdcfc4296646767936b465a7 Mon Sep 17 00:00:00 2001 From: Josh Cummings <3627351+jzheaux@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:25:36 -0700 Subject: [PATCH] Disable Java Config and XML Sample Tests Issue gh-127 --- .../integTest/java/example/Saml2JavaConfigurationITests.java | 2 ++ .../login-logout/src/integTest/java/example/Saml2XmlITests.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/servlet/java-configuration/saml2/login/src/integTest/java/example/Saml2JavaConfigurationITests.java b/servlet/java-configuration/saml2/login/src/integTest/java/example/Saml2JavaConfigurationITests.java index 89873857..3de1eec6 100644 --- a/servlet/java-configuration/saml2/login/src/integTest/java/example/Saml2JavaConfigurationITests.java +++ b/servlet/java-configuration/saml2/login/src/integTest/java/example/Saml2JavaConfigurationITests.java @@ -29,6 +29,7 @@ import org.htmlunit.html.HtmlPasswordInput; import org.htmlunit.html.HtmlSubmitInput; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -49,6 +50,7 @@ @ExtendWith(SpringExtension.class) @ContextConfiguration(classes = ApplicationConfiguration.class) @WebAppConfiguration +@Disabled("gh-127") public class Saml2JavaConfigurationITests { private MockMvc mvc; diff --git a/servlet/xml/java/saml2/login-logout/src/integTest/java/example/Saml2XmlITests.java b/servlet/xml/java/saml2/login-logout/src/integTest/java/example/Saml2XmlITests.java index aa3f6ba6..6c52eb53 100644 --- a/servlet/xml/java/saml2/login-logout/src/integTest/java/example/Saml2XmlITests.java +++ b/servlet/xml/java/saml2/login-logout/src/integTest/java/example/Saml2XmlITests.java @@ -28,6 +28,7 @@ import org.htmlunit.html.HtmlPasswordInput; import org.htmlunit.html.HtmlSubmitInput; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; @@ -48,6 +49,7 @@ @ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/spring-servlet.xml", "file:src/main/webapp/WEB-INF/spring/security.xml" }) @WebAppConfiguration +@Disabled("gh-127") public class Saml2XmlITests { private MockMvc mvc;