Skip to content

Commit ae336ec

Browse files
committed
Merge branch '6.2.x' into 6.3.x
2 parents 612e16e + 56ad5ba commit ae336ec

File tree

7 files changed

+18
-0
lines changed

7 files changed

+18
-0
lines changed

servlet/java-configuration/saml2/login/src/integTest/java/example/Saml2JavaConfigurationITests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
3030
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
3131
import org.junit.jupiter.api.BeforeEach;
32+
import org.junit.jupiter.api.Disabled;
3233
import org.junit.jupiter.api.Test;
3334
import org.junit.jupiter.api.extension.ExtendWith;
3435

@@ -49,6 +50,7 @@
4950
@ExtendWith(SpringExtension.class)
5051
@ContextConfiguration(classes = ApplicationConfiguration.class)
5152
@WebAppConfiguration
53+
@Disabled("gh-127")
5254
public class Saml2JavaConfigurationITests {
5355

5456
private MockMvc mvc;
@@ -71,6 +73,7 @@ void setup() {
7173
.build();
7274
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
7375
this.webClient.getCookieManager().clearCookies();
76+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
7477
}
7578

7679
@Test

servlet/spring-boot/java/oauth2/login/src/integTest/java/example/OAuth2LoginApplicationTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ public class OAuth2LoginApplicationTests {
106106
@BeforeEach
107107
void setup() {
108108
this.webClient.getCookieManager().clearCookies();
109+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
109110
}
110111

111112
@Test

servlet/spring-boot/java/saml2/custom-urls/src/integTest/java/example/CustomUrlsApplicationITests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
2929
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
3030
import org.junit.jupiter.api.BeforeEach;
31+
import org.junit.jupiter.api.Disabled;
3132
import org.junit.jupiter.api.Test;
3233

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

4344
@SpringBootTest
4445
@AutoConfigureMockMvc
46+
@Disabled("gh-127")
4547
public class CustomUrlsApplicationITests {
4648

4749
@Autowired

servlet/spring-boot/java/saml2/login-single-tenant/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
2929
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
3030
import org.junit.jupiter.api.BeforeEach;
31+
import org.junit.jupiter.api.Disabled;
3132
import org.junit.jupiter.api.Test;
3233

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

4041
@SpringBootTest
4142
@AutoConfigureMockMvc
43+
@Disabled("gh-127")
4244
public class Saml2LoginApplicationITests {
4345

4446
@Autowired
@@ -51,6 +53,7 @@ public class Saml2LoginApplicationITests {
5153
void setup() {
5254
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5355
this.webClient.getCookieManager().clearCookies();
56+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5457
}
5558

5659
@Test

servlet/spring-boot/java/saml2/login/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
2929
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
3030
import org.junit.jupiter.api.BeforeEach;
31+
import org.junit.jupiter.api.Disabled;
3132
import org.junit.jupiter.api.Test;
3233

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

4041
@SpringBootTest
4142
@AutoConfigureMockMvc
43+
@Disabled("gh-127")
4244
public class Saml2LoginApplicationITests {
4345

4446
@Autowired
@@ -51,6 +53,7 @@ public class Saml2LoginApplicationITests {
5153
void setup() {
5254
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5355
this.webClient.getCookieManager().clearCookies();
56+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5457
}
5558

5659
@Test

servlet/spring-boot/java/saml2/refreshable-metadata/src/integTest/java/example/Saml2LoginApplicationITests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
2525
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
2626
import org.junit.jupiter.api.BeforeEach;
27+
import org.junit.jupiter.api.Disabled;
2728
import org.junit.jupiter.api.Test;
2829

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

3637
@SpringBootTest
3738
@AutoConfigureMockMvc
39+
@Disabled("gh-127")
3840
public class Saml2LoginApplicationITests {
3941

4042
@Autowired
@@ -47,6 +49,7 @@ public class Saml2LoginApplicationITests {
4749
void setup() {
4850
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
4951
this.webClient.getCookieManager().clearCookies();
52+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
5053
}
5154

5255
@Test

servlet/xml/java/saml2/login-logout/src/integTest/java/example/Saml2XmlITests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
2929
import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
3030
import org.junit.jupiter.api.BeforeEach;
31+
import org.junit.jupiter.api.Disabled;
3132
import org.junit.jupiter.api.Test;
3233
import org.junit.jupiter.api.extension.ExtendWith;
3334

@@ -48,6 +49,7 @@
4849
@ContextConfiguration(locations = { "file:src/main/webapp/WEB-INF/spring-servlet.xml",
4950
"file:src/main/webapp/WEB-INF/spring/security.xml" })
5051
@WebAppConfiguration
52+
@Disabled("gh-127")
5153
public class Saml2XmlITests {
5254

5355
private MockMvc mvc;
@@ -70,6 +72,7 @@ void setup() {
7072
.build();
7173
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
7274
this.webClient.getCookieManager().clearCookies();
75+
this.webClient.getOptions().setThrowExceptionOnScriptError(false);
7376
}
7477

7578
@Test

0 commit comments

Comments
 (0)