Use OpenSAML API for web

Issue gh-11658
This commit is contained in:
Josh Cummings
2024-08-05 09:19:19 -06:00
parent bf5b334531
commit 78a0173cc1
13 changed files with 1576 additions and 239 deletions

View File

@@ -308,7 +308,7 @@ public class Saml2LoginConfigurerTests {
Saml2AuthenticationException exception = captor.getValue();
assertThat(exception.getSaml2Error().getErrorCode()).isEqualTo(Saml2ErrorCodes.INVALID_RESPONSE);
assertThat(exception.getSaml2Error().getDescription()).isEqualTo("Unable to inflate string");
assertThat(exception.getCause()).isInstanceOf(IOException.class);
assertThat(exception).hasRootCauseInstanceOf(IOException.class);
}
@Test