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]>
Signed-off-by: Mustafa Baser <[email protected]>
  • Loading branch information
yuriyz authored and devrimyatar committed Feb 27, 2024
1 parent a67fa0f commit dc2a9cf
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 dc2a9cf

Please sign in to comment.