parent
1d10e51755
commit
bb37a868b3
|
@ -16,6 +16,8 @@
|
||||||
|
|
||||||
package smoketest.web.secure;
|
package smoketest.web.secure;
|
||||||
|
|
||||||
|
import org.junit.jupiter.api.Disabled;
|
||||||
|
|
||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
||||||
|
@ -34,6 +36,7 @@ import static org.springframework.security.config.Customizer.withDefaults;
|
||||||
SampleWebSecureApplication.class },
|
SampleWebSecureApplication.class },
|
||||||
properties = { "server.error.include-message=always", "spring.security.user.name=username",
|
properties = { "server.error.include-message=always", "spring.security.user.name=username",
|
||||||
"spring.security.user.password=password", "spring.mvc.servlet.path=/custom/servlet/path" })
|
"spring.security.user.password=password", "spring.mvc.servlet.path=/custom/servlet/path" })
|
||||||
|
@Disabled("gh-38822")
|
||||||
class CustomServletPathUnauthenticatedErrorPageTests extends AbstractUnauthenticatedErrorPageTests {
|
class CustomServletPathUnauthenticatedErrorPageTests extends AbstractUnauthenticatedErrorPageTests {
|
||||||
|
|
||||||
CustomServletPathUnauthenticatedErrorPageTests() {
|
CustomServletPathUnauthenticatedErrorPageTests() {
|
||||||
|
|
Loading…
Reference in New Issue