File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
smoke-test/spring-boot-smoke-test-oauth2-authorization-server/src/test/java/smoketest/oauth2/server Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -72,10 +72,10 @@ void openidConfigurationShouldAllowAccess() {
7272 assertThat (config .getTokenRevocationEndpoint ()).hasToString ("https://provider.com/revoke" );
7373 assertThat (config .getEndSessionEndpoint ()).hasToString ("https://provider.com/logout" );
7474 assertThat (config .getTokenIntrospectionEndpoint ()).hasToString ("https://provider.com/introspect" );
75- assertThat (config .getPushedAuthorizationRequestEndpoint ()).hasToString ("https://provider.com/par" );
7675 assertThat (config .getUserInfoEndpoint ()).hasToString ("https://provider.com/user" );
77- // OIDC Client Registration is disabled by default
76+ // PAR endpoint and OIDC Client Registration are disabled by default
7877 assertThat (config .getClientRegistrationEndpoint ()).isNull ();
78+ assertThat (config .getPushedAuthorizationRequestEndpoint ()).isNull ();
7979 }
8080
8181 @ Test
@@ -91,9 +91,9 @@ void authServerMetadataShouldAllowAccess() {
9191 assertThat (config .getJwkSetUrl ()).hasToString ("https://provider.com/jwks" );
9292 assertThat (config .getTokenRevocationEndpoint ()).hasToString ("https://provider.com/revoke" );
9393 assertThat (config .getTokenIntrospectionEndpoint ()).hasToString ("https://provider.com/introspect" );
94- assertThat (config .getPushedAuthorizationRequestEndpoint ()).hasToString ("https://provider.com/par" );
95- // OIDC Client Registration is disabled by default
94+ // PAR endpoint and OIDC Client Registration are disabled by default
9695 assertThat (config .getClientRegistrationEndpoint ()).isNull ();
96+ assertThat (config .getPushedAuthorizationRequestEndpoint ()).isNull ();
9797 }
9898
9999 @ Test
You can’t perform that action at this time.
0 commit comments