4 changed files with 528 additions and 0 deletions
@ -0,0 +1,67 @@
@@ -0,0 +1,67 @@
|
||||
/* |
||||
* Copyright 2002-2019 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package sample; |
||||
|
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient; |
||||
import org.springframework.boot.test.context.SpringBootTest; |
||||
import org.springframework.boot.test.context.TestConfiguration; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository; |
||||
import org.springframework.security.oauth2.client.web.server.ServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.security.oauth2.client.web.server.WebSessionServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.test.context.junit4.SpringRunner; |
||||
import org.springframework.test.web.reactive.server.WebTestClient; |
||||
|
||||
import static org.hamcrest.core.StringContains.containsString; |
||||
import static org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.mockOidcLogin; |
||||
|
||||
/** |
||||
* Tests for {@link ReactiveOAuth2LoginApplication} |
||||
*/ |
||||
@RunWith(SpringRunner.class) |
||||
@SpringBootTest |
||||
@AutoConfigureWebTestClient |
||||
public class OAuth2LoginApplicationTests { |
||||
|
||||
@Autowired |
||||
WebTestClient test; |
||||
|
||||
@Autowired |
||||
ReactiveClientRegistrationRepository clientRegistrationRepository; |
||||
|
||||
@TestConfiguration |
||||
static class AuthorizedClient { |
||||
@Bean |
||||
ServerOAuth2AuthorizedClientRepository authorizedClientRepository() { |
||||
return new WebSessionServerOAuth2AuthorizedClientRepository(); |
||||
} |
||||
} |
||||
|
||||
@Test |
||||
public void requestWhenMockOidcLoginThenIndex() { |
||||
this.clientRegistrationRepository.findByRegistrationId("github") |
||||
.map(clientRegistration -> |
||||
this.test.mutateWith(mockOidcLogin().clientRegistration(clientRegistration)) |
||||
.get().uri("/") |
||||
.exchange() |
||||
.expectBody(String.class).value(containsString("GitHub")) |
||||
).block(); |
||||
} |
||||
} |
||||
@ -0,0 +1,84 @@
@@ -0,0 +1,84 @@
|
||||
/* |
||||
* Copyright 2002-2019 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package sample; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.mockito.Mock; |
||||
import sample.web.OAuth2LoginController; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest; |
||||
import org.springframework.core.ReactiveAdapterRegistry; |
||||
import org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository; |
||||
import org.springframework.security.oauth2.client.web.reactive.result.method.annotation.OAuth2AuthorizedClientArgumentResolver; |
||||
import org.springframework.security.oauth2.client.web.server.ServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.security.oauth2.client.web.server.WebSessionServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.security.web.reactive.result.method.annotation.AuthenticationPrincipalArgumentResolver; |
||||
import org.springframework.security.web.server.context.SecurityContextServerWebExchangeWebFilter; |
||||
import org.springframework.test.context.junit4.SpringRunner; |
||||
import org.springframework.test.web.reactive.server.WebTestClient; |
||||
import org.springframework.web.reactive.result.view.ViewResolver; |
||||
|
||||
import static org.hamcrest.Matchers.containsString; |
||||
import static org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.mockOidcLogin; |
||||
import static org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.springSecurity; |
||||
|
||||
/** |
||||
* @author Josh Cummings |
||||
*/ |
||||
@RunWith(SpringRunner.class) |
||||
@WebFluxTest(OAuth2LoginController.class) |
||||
public class OAuth2LoginControllerTests { |
||||
|
||||
@Autowired |
||||
OAuth2LoginController controller; |
||||
|
||||
@Autowired |
||||
ViewResolver viewResolver; |
||||
|
||||
@Mock |
||||
ReactiveClientRegistrationRepository clientRegistrationRepository; |
||||
|
||||
WebTestClient rest; |
||||
|
||||
@Before |
||||
public void setup() { |
||||
ServerOAuth2AuthorizedClientRepository authorizedClientRepository = |
||||
new WebSessionServerOAuth2AuthorizedClientRepository(); |
||||
|
||||
this.rest = WebTestClient |
||||
.bindToController(this.controller) |
||||
.apply(springSecurity()) |
||||
.webFilter(new SecurityContextServerWebExchangeWebFilter()) |
||||
.argumentResolvers(c -> { |
||||
c.addCustomResolver(new AuthenticationPrincipalArgumentResolver(new ReactiveAdapterRegistry())); |
||||
c.addCustomResolver(new OAuth2AuthorizedClientArgumentResolver |
||||
(this.clientRegistrationRepository, authorizedClientRepository)); |
||||
}) |
||||
.viewResolvers(c -> c.viewResolver(this.viewResolver)) |
||||
.build(); |
||||
} |
||||
|
||||
@Test |
||||
public void indexGreetsAuthenticatedUser() { |
||||
this.rest.mutateWith(mockOidcLogin()) |
||||
.get().uri("/").exchange() |
||||
.expectBody(String.class).value(containsString("test-subject")); |
||||
} |
||||
} |
||||
@ -0,0 +1,164 @@
@@ -0,0 +1,164 @@
|
||||
/* |
||||
* Copyright 2002-2019 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.security.test.web.reactive.server; |
||||
|
||||
import java.util.Collection; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
import org.junit.runner.RunWith; |
||||
import org.mockito.Mock; |
||||
import org.mockito.junit.MockitoJUnitRunner; |
||||
|
||||
import org.springframework.http.HttpHeaders; |
||||
import org.springframework.http.MediaType; |
||||
import org.springframework.security.core.GrantedAuthority; |
||||
import org.springframework.security.core.authority.SimpleGrantedAuthority; |
||||
import org.springframework.security.oauth2.client.OAuth2AuthorizedClient; |
||||
import org.springframework.security.oauth2.client.annotation.RegisteredOAuth2AuthorizedClient; |
||||
import org.springframework.security.oauth2.client.authentication.OAuth2AuthenticationToken; |
||||
import org.springframework.security.oauth2.client.registration.ReactiveClientRegistrationRepository; |
||||
import org.springframework.security.oauth2.client.web.reactive.result.method.annotation.OAuth2AuthorizedClientArgumentResolver; |
||||
import org.springframework.security.oauth2.client.web.server.ServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.security.oauth2.client.web.server.WebSessionServerOAuth2AuthorizedClientRepository; |
||||
import org.springframework.security.oauth2.core.oidc.user.OidcUser; |
||||
import org.springframework.security.web.server.context.SecurityContextServerWebExchangeWebFilter; |
||||
import org.springframework.test.web.reactive.server.WebTestClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
import static org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.mockOidcLogin; |
||||
import static org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.springSecurity; |
||||
|
||||
@RunWith(MockitoJUnitRunner.class) |
||||
public class SecurityMockServerConfigurersOidcLoginTests extends AbstractMockServerConfigurersTests { |
||||
private OAuth2LoginController controller = new OAuth2LoginController(); |
||||
|
||||
@Mock |
||||
private ReactiveClientRegistrationRepository clientRegistrationRepository; |
||||
|
||||
private WebTestClient client; |
||||
|
||||
@Before |
||||
public void setup() { |
||||
ServerOAuth2AuthorizedClientRepository authorizedClientRepository = |
||||
new WebSessionServerOAuth2AuthorizedClientRepository(); |
||||
|
||||
this.client = WebTestClient |
||||
.bindToController(this.controller) |
||||
.argumentResolvers(c -> c.addCustomResolver( |
||||
new OAuth2AuthorizedClientArgumentResolver |
||||
(this.clientRegistrationRepository, authorizedClientRepository))) |
||||
.webFilter(new SecurityContextServerWebExchangeWebFilter()) |
||||
.apply(springSecurity()) |
||||
.configureClient() |
||||
.defaultHeader(HttpHeaders.ACCEPT, MediaType.APPLICATION_JSON_VALUE) |
||||
.build(); |
||||
} |
||||
|
||||
@Test |
||||
public void oidcLoginWhenUsingDefaultsThenProducesDefaultAuthentication() { |
||||
this.client.mutateWith(mockOidcLogin()) |
||||
.get().uri("/token") |
||||
.exchange() |
||||
.expectStatus().isOk(); |
||||
|
||||
OAuth2AuthenticationToken token = this.controller.token; |
||||
assertThat(token).isNotNull(); |
||||
assertThat(token.getAuthorizedClientRegistrationId()).isEqualTo("test"); |
||||
assertThat(token.getPrincipal()).isInstanceOf(OidcUser.class); |
||||
assertThat(token.getPrincipal().getAttributes()) |
||||
.containsEntry("sub", "test-subject"); |
||||
assertThat((Collection<GrantedAuthority>) token.getPrincipal().getAuthorities()) |
||||
.contains(new SimpleGrantedAuthority("SCOPE_user")); |
||||
assertThat(((OidcUser) token.getPrincipal()).getIdToken().getTokenValue()) |
||||
.isEqualTo("id-token"); |
||||
} |
||||
|
||||
@Test |
||||
public void oidcLoginWhenUsingDefaultsThenProducesDefaultAuthorizedClient() { |
||||
this.client.mutateWith(mockOidcLogin()) |
||||
.get().uri("/client") |
||||
.exchange() |
||||
.expectStatus().isOk(); |
||||
|
||||
OAuth2AuthorizedClient client = this.controller.authorizedClient; |
||||
assertThat(client).isNotNull(); |
||||
assertThat(client.getClientRegistration().getRegistrationId()).isEqualTo("test"); |
||||
assertThat(client.getAccessToken().getTokenValue()).isEqualTo("access-token"); |
||||
assertThat(client.getRefreshToken()).isNull(); |
||||
} |
||||
|
||||
@Test |
||||
public void oidcLoginWhenAuthoritiesSpecifiedThenGrantsAccess() { |
||||
this.client.mutateWith(mockOidcLogin() |
||||
.authorities(new SimpleGrantedAuthority("SCOPE_admin"))) |
||||
.get().uri("/token") |
||||
.exchange() |
||||
.expectStatus().isOk(); |
||||
|
||||
OAuth2AuthenticationToken token = this.controller.token; |
||||
assertThat((Collection<GrantedAuthority>) token.getPrincipal().getAuthorities()) |
||||
.contains(new SimpleGrantedAuthority("SCOPE_admin")); |
||||
} |
||||
|
||||
@Test |
||||
public void oidcLoginWhenIdTokenSpecifiedThenUserHasClaims() { |
||||
this.client.mutateWith(mockOidcLogin() |
||||
.idToken(i -> i.issuer("https://idp.example.org"))) |
||||
.get().uri("/token") |
||||
.exchange() |
||||
.expectStatus().isOk(); |
||||
|
||||
OAuth2AuthenticationToken token = this.controller.token; |
||||
assertThat(token.getPrincipal().getAttributes()) |
||||
.containsEntry("iss", "https://idp.example.org"); |
||||
} |
||||
|
||||
@Test |
||||
public void oidcLoginWhenUserInfoSpecifiedThenUserHasClaims() throws Exception { |
||||
this.client.mutateWith(mockOidcLogin() |
||||
.userInfoToken(u -> u.email("email@email"))) |
||||
.get().uri("/token") |
||||
.exchange() |
||||
.expectStatus().isOk(); |
||||
|
||||
OAuth2AuthenticationToken token = this.controller.token; |
||||
assertThat(token.getPrincipal().getAttributes()) |
||||
.containsEntry("email", "email@email"); |
||||
} |
||||
|
||||
@RestController |
||||
static class OAuth2LoginController { |
||||
volatile OAuth2AuthenticationToken token; |
||||
volatile OAuth2AuthorizedClient authorizedClient; |
||||
|
||||
@GetMapping("/token") |
||||
OAuth2AuthenticationToken token(OAuth2AuthenticationToken token) { |
||||
this.token = token; |
||||
return token; |
||||
} |
||||
|
||||
@GetMapping("/client") |
||||
String authorizedClient |
||||
(@RegisteredOAuth2AuthorizedClient OAuth2AuthorizedClient authorizedClient) { |
||||
this.authorizedClient = authorizedClient; |
||||
return authorizedClient.getPrincipalName(); |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue