File tree 19 files changed +60
-60
lines changed
authentication/username-password/form
src/integTest/java/example
src/integTest/java/example
src/integTest/java/example
src/integTest/java/example
src/integTest/java/example
saml-extension-federation
src/integTest/java/example
session-management/maximum-sessions/src/integTest/java/com/example/maximumsessions
19 files changed +60
-60
lines changed Original file line number Diff line number Diff line change 1
1
[versions ]
2
- org-springframework-boot = " 3.3.0 "
2
+ org-springframework-boot = " 3.4.0-SNAPSHOT "
3
3
4
4
[libraries ]
5
5
org-springframework-spring-framework-bom = " org.springframework:spring-framework-bom:6.2.0-M4"
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ dependencies {
22
22
testImplementation ' org.springframework.boot:spring-boot-starter-test'
23
23
testImplementation ' org.springframework.security:spring-security-test'
24
24
25
- integTestImplementation ' org.seleniumhq.selenium:htmlunit-driver'
25
+ integTestImplementation ' org.seleniumhq.selenium:htmlunit-driver:3.64.0'
26
+ // integTestImplementation 'org.htmlunit:htmlunit'
27
+ integTestImplementation ' net.sourceforge.htmlunit:htmlunit:2.70.0'
26
28
}
27
29
28
30
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
21
21
testImplementation ' org.springframework.boot:spring-boot-starter-test'
22
22
testImplementation ' org.springframework.security:spring-security-test'
23
23
24
- integTestImplementation " org.seleniumhq.selenium:htmlunit-driver"
24
+ integTestImplementation " org.seleniumhq.selenium:htmlunit-driver:3.64.0 "
25
25
}
26
26
27
27
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ dependencies {
22
22
testImplementation ' org.springframework.boot:spring-boot-starter-test'
23
23
testImplementation ' org.springframework.security:spring-security-test'
24
24
25
- integTestImplementation ' net.sourceforge .htmlunit:htmlunit'
25
+ integTestImplementation ' org .htmlunit:htmlunit'
26
26
}
27
27
28
28
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ dependencies {
21
21
testImplementation ' org.springframework.boot:spring-boot-starter-test'
22
22
testImplementation ' org.springframework.security:spring-security-test'
23
23
24
- integTestImplementation " org.seleniumhq.selenium:htmlunit-driver"
24
+ integTestImplementation " org.seleniumhq.selenium:htmlunit-driver:3.64.0 "
25
25
}
26
26
27
27
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencies {
20
20
testImplementation ' org.springframework.boot:spring-boot-starter-test'
21
21
testImplementation ' org.springframework.security:spring-security-test'
22
22
23
- integTestImplementation ' net.sourceforge .htmlunit:htmlunit'
23
+ integTestImplementation ' org .htmlunit:htmlunit'
24
24
}
25
25
26
26
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ dependencies {
22
22
testImplementation ' org.springframework.boot:spring-boot-starter-test'
23
23
testImplementation ' org.springframework.security:spring-security-test'
24
24
25
- integTestImplementation ' net.sourceforge .htmlunit:htmlunit'
25
+ integTestImplementation ' org .htmlunit:htmlunit'
26
26
}
27
27
28
28
tasks. withType(Test ). configureEach {
Original file line number Diff line number Diff line change 28
28
import java .util .Set ;
29
29
import java .util .stream .Collectors ;
30
30
31
- import com . gargoylesoftware .htmlunit .FailingHttpStatusCodeException ;
32
- import com . gargoylesoftware .htmlunit .WebClient ;
33
- import com . gargoylesoftware .htmlunit .WebResponse ;
34
- import com . gargoylesoftware .htmlunit .html .DomNodeList ;
35
- import com . gargoylesoftware .htmlunit .html .HtmlAnchor ;
36
- import com . gargoylesoftware .htmlunit .html .HtmlElement ;
37
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
31
+ import org .htmlunit .FailingHttpStatusCodeException ;
32
+ import org .htmlunit .WebClient ;
33
+ import org .htmlunit .WebResponse ;
34
+ import org .htmlunit .html .DomNodeList ;
35
+ import org .htmlunit .html .HtmlAnchor ;
36
+ import org .htmlunit .html .HtmlElement ;
37
+ import org .htmlunit .html .HtmlPage ;
38
38
import org .junit .jupiter .api .BeforeEach ;
39
39
import org .junit .jupiter .api .Test ;
40
40
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ dependencies {
24
24
implementation ' org.springframework.security:spring-security-saml2-service-provider'
25
25
implementation ' org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
26
26
27
- testImplementation ' net.sourceforge. htmlunit:htmlunit:2.70.0 '
27
+ testImplementation ' org. htmlunit:htmlunit'
28
28
testImplementation ' org.springframework.boot:spring-boot-starter-test'
29
29
testImplementation ' org.springframework.security:spring-security-test'
30
30
}
Original file line number Diff line number Diff line change 19
19
import java .util .ArrayList ;
20
20
import java .util .List ;
21
21
22
- import com . gargoylesoftware .htmlunit .ElementNotFoundException ;
23
- import com . gargoylesoftware .htmlunit .WebClient ;
24
- import com . gargoylesoftware .htmlunit .html .HtmlElement ;
25
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
26
- import com . gargoylesoftware .htmlunit .html .HtmlInput ;
27
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
28
- import com . gargoylesoftware .htmlunit .html .HtmlPasswordInput ;
29
- import com . gargoylesoftware .htmlunit .html .HtmlSubmitInput ;
22
+ import org .htmlunit .ElementNotFoundException ;
23
+ import org .htmlunit .WebClient ;
24
+ import org .htmlunit .html .HtmlElement ;
25
+ import org .htmlunit .html .HtmlForm ;
26
+ import org .htmlunit .html .HtmlInput ;
27
+ import org .htmlunit .html .HtmlPage ;
28
+ import org .htmlunit .html .HtmlPasswordInput ;
29
+ import org .htmlunit .html .HtmlSubmitInput ;
30
30
import org .junit .jupiter .api .BeforeEach ;
31
31
import org .junit .jupiter .api .Test ;
32
32
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
implementation ' org.springframework.security:spring-security-saml2-service-provider'
27
27
implementation ' org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
28
28
29
- testImplementation ' net.sourceforge. htmlunit:htmlunit:2.70.0 '
29
+ testImplementation ' org. htmlunit:htmlunit'
30
30
testImplementation ' org.springframework.boot:spring-boot-starter-test'
31
31
testImplementation ' org.springframework.security:spring-security-test'
32
32
}
Original file line number Diff line number Diff line change 19
19
import java .util .ArrayList ;
20
20
import java .util .List ;
21
21
22
- import com . gargoylesoftware .htmlunit .ElementNotFoundException ;
23
- import com . gargoylesoftware .htmlunit .WebClient ;
24
- import com . gargoylesoftware .htmlunit .html .HtmlElement ;
25
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
26
- import com . gargoylesoftware .htmlunit .html .HtmlInput ;
27
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
28
- import com . gargoylesoftware .htmlunit .html .HtmlPasswordInput ;
29
- import com . gargoylesoftware .htmlunit .html .HtmlSubmitInput ;
22
+ import org .htmlunit .ElementNotFoundException ;
23
+ import org .htmlunit .WebClient ;
24
+ import org .htmlunit .html .HtmlElement ;
25
+ import org .htmlunit .html .HtmlForm ;
26
+ import org .htmlunit .html .HtmlInput ;
27
+ import org .htmlunit .html .HtmlPage ;
28
+ import org .htmlunit .html .HtmlPasswordInput ;
29
+ import org .htmlunit .html .HtmlSubmitInput ;
30
30
import org .junit .jupiter .api .BeforeEach ;
31
31
import org .junit .jupiter .api .Test ;
32
32
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
implementation ' org.springframework.security:spring-security-saml2-service-provider'
27
27
implementation ' org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
28
28
29
- testImplementation ' net.sourceforge. htmlunit:htmlunit:2.70.0 '
29
+ testImplementation ' org. htmlunit:htmlunit'
30
30
testImplementation ' org.springframework.boot:spring-boot-starter-test'
31
31
testImplementation ' org.springframework.security:spring-security-test'
32
32
}
Original file line number Diff line number Diff line change 19
19
import java .util .ArrayList ;
20
20
import java .util .List ;
21
21
22
- import com . gargoylesoftware .htmlunit .ElementNotFoundException ;
23
- import com . gargoylesoftware .htmlunit .WebClient ;
24
- import com . gargoylesoftware .htmlunit .html .HtmlElement ;
25
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
26
- import com . gargoylesoftware .htmlunit .html .HtmlInput ;
27
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
28
- import com . gargoylesoftware .htmlunit .html .HtmlPasswordInput ;
29
- import com . gargoylesoftware .htmlunit .html .HtmlSubmitInput ;
22
+ import org .htmlunit .ElementNotFoundException ;
23
+ import org .htmlunit .WebClient ;
24
+ import org .htmlunit .html .HtmlElement ;
25
+ import org .htmlunit .html .HtmlForm ;
26
+ import org .htmlunit .html .HtmlInput ;
27
+ import org .htmlunit .html .HtmlPage ;
28
+ import org .htmlunit .html .HtmlPasswordInput ;
29
+ import org .htmlunit .html .HtmlSubmitInput ;
30
30
import org .junit .jupiter .api .BeforeEach ;
31
31
import org .junit .jupiter .api .Test ;
32
32
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
implementation ' org.springframework.security:spring-security-saml2-service-provider'
27
27
implementation ' org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
28
28
29
- testImplementation ' net.sourceforge. htmlunit:htmlunit:2.70.0 '
29
+ testImplementation ' org. htmlunit:htmlunit'
30
30
testImplementation ' org.springframework.boot:spring-boot-starter-test'
31
31
testImplementation ' org.springframework.security:spring-security-test'
32
32
}
Original file line number Diff line number Diff line change 16
16
17
17
package example ;
18
18
19
- import com . gargoylesoftware .htmlunit .ElementNotFoundException ;
20
- import com . gargoylesoftware .htmlunit .WebClient ;
21
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
22
- import com . gargoylesoftware .htmlunit .html .HtmlInput ;
23
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
24
- import com . gargoylesoftware .htmlunit .html .HtmlPasswordInput ;
25
- import com . gargoylesoftware .htmlunit .html .HtmlSubmitInput ;
19
+ import org .htmlunit .ElementNotFoundException ;
20
+ import org .htmlunit .WebClient ;
21
+ import org .htmlunit .html .HtmlForm ;
22
+ import org .htmlunit .html .HtmlInput ;
23
+ import org .htmlunit .html .HtmlPage ;
24
+ import org .htmlunit .html .HtmlPasswordInput ;
25
+ import org .htmlunit .html .HtmlSubmitInput ;
26
26
import org .junit .jupiter .api .BeforeEach ;
27
27
import org .junit .jupiter .api .Test ;
28
28
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ dependencies {
24
24
implementation ' org.springframework.security:spring-security-saml2-service-provider'
25
25
implementation ' org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
26
26
27
- testImplementation ' net.sourceforge. htmlunit:htmlunit:2.70.0 '
27
+ testImplementation ' org. htmlunit:htmlunit'
28
28
testImplementation ' org.springframework.boot:spring-boot-starter-test'
29
29
testImplementation ' org.springframework.security:spring-security-test'
30
30
}
Original file line number Diff line number Diff line change 19
19
import java .util .ArrayList ;
20
20
import java .util .List ;
21
21
22
- import com . gargoylesoftware .htmlunit .ElementNotFoundException ;
23
- import com . gargoylesoftware .htmlunit .WebClient ;
24
- import com . gargoylesoftware .htmlunit .html .HtmlElement ;
25
- import com . gargoylesoftware .htmlunit .html .HtmlForm ;
26
- import com . gargoylesoftware .htmlunit .html .HtmlInput ;
27
- import com . gargoylesoftware .htmlunit .html .HtmlPage ;
28
- import com . gargoylesoftware .htmlunit .html .HtmlPasswordInput ;
29
- import com . gargoylesoftware .htmlunit .html .HtmlSubmitInput ;
22
+ import org .htmlunit .ElementNotFoundException ;
23
+ import org .htmlunit .WebClient ;
24
+ import org .htmlunit .html .HtmlElement ;
25
+ import org .htmlunit .html .HtmlForm ;
26
+ import org .htmlunit .html .HtmlInput ;
27
+ import org .htmlunit .html .HtmlPage ;
28
+ import org .htmlunit .html .HtmlPasswordInput ;
29
+ import org .htmlunit .html .HtmlSubmitInput ;
30
30
import org .junit .jupiter .api .BeforeEach ;
31
31
import org .junit .jupiter .api .Disabled ;
32
32
import org .junit .jupiter .api .Test ;
Original file line number Diff line number Diff line change 16
16
17
17
package com .example .maximumsessions ;
18
18
19
- import org .junit .jupiter .api .Disabled ;
20
19
import org .junit .jupiter .api .Test ;
21
20
22
21
import org .springframework .beans .factory .annotation .Autowired ;
33
32
34
33
@ SpringBootTest (webEnvironment = SpringBootTest .WebEnvironment .RANDOM_PORT )
35
34
@ AutoConfigureMockMvc
36
- @ Disabled
37
35
public class MaximumSessionsTests {
38
36
39
37
@ Autowired
You can’t perform that action at this time.
0 commit comments