Skip to content

Commit

Permalink
feat(jans-auth-server): rely on end_session feature flag value when r…
Browse files Browse the repository at this point in the history
…eturn discovery response #5255 (#7766)

* feat(jans-auth-server): rely on end_session feature flag value when return discovery response #5255

Signed-off-by: YuriyZ <[email protected]>

* fix: corrected assertion in RegistrationRestWebServiceHttpTest #5255

Signed-off-by: YuriyZ <[email protected]>

---------

Signed-off-by: YuriyZ <[email protected]>
Former-commit-id: 78cc0d7
  • Loading branch information
yuriyz authored Feb 19, 2024
1 parent 3182086 commit b45ab29
Show file tree
Hide file tree
Showing 6 changed files with 507 additions and 370 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public void requestClientAssociate2(final String redirectUris, final String sect
AssertBuilder.registerResponse(response).created().check();
assertNotNull(response.getClaims().get(SCOPE.toString()));
assertTrue(Boolean.parseBoolean(response.getClaims().get(BACKCHANNEL_LOGOUT_SESSION_REQUIRED.toString())));
assertEquals(logoutUri, new JSONArray(response.getClaims().get(BACKCHANNEL_LOGOUT_URI.toString())).getString(0));
assertEquals(logoutUri, response.getClaims().get(BACKCHANNEL_LOGOUT_URI.toString()));
assertNotNull(response.getClaims().get(FRONT_CHANNEL_LOGOUT_SESSION_REQUIRED.toString()));
assertTrue(Boolean.parseBoolean(response.getClaims().get(FRONT_CHANNEL_LOGOUT_SESSION_REQUIRED.toString())));
assertNotNull(response.getClaims().get(FRONT_CHANNEL_LOGOUT_URI.toString()));
Expand Down
Loading

0 comments on commit b45ab29

Please sign in to comment.