Fix samples test suite execution and failing tests
Closes gh-1324
This commit is contained in:
committed by
Joe Grandja
parent
215c101c3d
commit
25c9c2be24
@@ -75,7 +75,8 @@ public class DemoAuthorizationServerApplicationTests {
|
||||
|
||||
this.webClient.getOptions().setThrowExceptionOnFailingStatusCode(false);
|
||||
WebResponse signInResponse = signIn(page, "user1", "password").getWebResponse();
|
||||
assertThat(signInResponse.getStatusCode()).isEqualTo(HttpStatus.NOT_FOUND.value()); // there is no "default" index page
|
||||
|
||||
assertThat(signInResponse.getStatusCode()).isEqualTo(HttpStatus.BAD_REQUEST.value()); // there is no "default" index page
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -86,7 +87,7 @@ public class DemoAuthorizationServerApplicationTests {
|
||||
|
||||
HtmlElement alert = loginErrorPage.querySelector("div[role=\"alert\"]");
|
||||
assertThat(alert).isNotNull();
|
||||
assertThat(alert.getTextContent()).isEqualTo("Bad credentials");
|
||||
assertThat(alert.asNormalizedText()).isEqualTo("Invalid username or password.");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user