Skip to content

Commit

Permalink
Merge branch '6.2.x' into 6.3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jzheaux committed Dec 10, 2024
2 parents 612e16e + 56ad5ba commit ae336ec
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.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;

Expand All @@ -49,6 +50,7 @@
@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = ApplicationConfiguration.class)
@WebAppConfiguration
@Disabled("gh-127")
public class Saml2JavaConfigurationITests {

private MockMvc mvc;
Expand All @@ -71,6 +73,7 @@ void setup() {
.build();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public class OAuth2LoginApplicationTests {
@BeforeEach
void setup() {
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -42,6 +43,7 @@

@SpringBootTest
@AutoConfigureMockMvc
@Disabled("gh-127")
public class CustomUrlsApplicationITests {

@Autowired
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -39,6 +40,7 @@

@SpringBootTest
@AutoConfigureMockMvc
@Disabled("gh-127")
public class Saml2LoginApplicationITests {

@Autowired
Expand All @@ -51,6 +53,7 @@ public class Saml2LoginApplicationITests {
void setup() {
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -39,6 +40,7 @@

@SpringBootTest
@AutoConfigureMockMvc
@Disabled("gh-127")
public class Saml2LoginApplicationITests {

@Autowired
Expand All @@ -51,6 +53,7 @@ public class Saml2LoginApplicationITests {
void setup() {
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -35,6 +36,7 @@

@SpringBootTest
@AutoConfigureMockMvc
@Disabled("gh-127")
public class Saml2LoginApplicationITests {

@Autowired
Expand All @@ -47,6 +49,7 @@ public class Saml2LoginApplicationITests {
void setup() {
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
import com.gargoylesoftware.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;

Expand All @@ -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;
Expand All @@ -70,6 +72,7 @@ void setup() {
.build();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
this.webClient.getCookieManager().clearCookies();
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
}

@Test
Expand Down

0 comments on commit ae336ec

Please sign in to comment.