Java Code Examples for org.springframework.security.oauth2.client.token.grant.client.ClientCredentialsResourceDetails#setGrantType()
The following examples show how to use
org.springframework.security.oauth2.client.token.grant.client.ClientCredentialsResourceDetails#setGrantType() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LocalServerSecurityWithOAuth2Tests.java From spring-cloud-skipper with Apache License 2.0 | 6 votes |
@Test public void testAccessRootUrlWithOAuth2AccessToken() throws Exception { final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localSkipperResource.getMockMvc().perform(get("/api").header("Authorization", "bearer " + accessTokenAsString)) .andDo(print()).andExpect(status().isOk()); }
Example 2
Source File: LocalServerSecurityWithOAuth2Tests.java From spring-cloud-skipper with Apache License 2.0 | 6 votes |
@Test public void testAccessAboutUrlWithOAuth2AccessToken() throws Exception { final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localSkipperResource.getMockMvc() .perform(get("/api/about").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isOk()) .andExpect(jsonPath("$.versionInfo.server.name", is("Spring Cloud Skipper Server"))) .andExpect(jsonPath("$.versionInfo.server.version", notNullValue())); }
Example 3
Source File: LocalServerSecurityWithOAuth2Tests.java From spring-cloud-dataflow with Apache License 2.0 | 6 votes |
@Test public void testAccessRootUrlWithOAuth2AccessToken() throws Exception { final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localDataflowResource.getMockMvc().perform(get("/").header("Authorization", "bearer " + accessTokenAsString)) .andDo(print()).andExpect(status().isOk()); }
Example 4
Source File: LocalServerSecurityWithOAuth2Tests.java From spring-cloud-dataflow with Apache License 2.0 | 6 votes |
@Test public void testAccessSecurityInfoUrlWithOAuth2AccessToken() throws Exception { final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localDataflowResource.getMockMvc() .perform(get("/security/info").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isOk()) .andExpect(jsonPath("$.authenticated", is(Boolean.TRUE))) .andExpect(jsonPath("$.authenticationEnabled", is(Boolean.TRUE))) .andExpect(jsonPath("$.roles", hasSize(7))); }
Example 5
Source File: UserApplication.java From cloud-native-microservice-strangler-example with GNU General Public License v3.0 | 5 votes |
@LoadBalanced @Bean public OAuth2RestTemplate loadBalancedOauth2RestTemplate(ClientCredentialsResourceDetails resource) { ClientCredentialsResourceDetails clientCredentialsResourceDetails = new ClientCredentialsResourceDetails(); clientCredentialsResourceDetails.setAccessTokenUri(resource.getAccessTokenUri()); clientCredentialsResourceDetails.setClientId(resource.getClientId()); clientCredentialsResourceDetails.setClientSecret(resource.getClientSecret()); clientCredentialsResourceDetails.setClientAuthenticationScheme(resource.getClientAuthenticationScheme()); clientCredentialsResourceDetails.setScope(resource.getScope()); clientCredentialsResourceDetails.setGrantType(resource.getGrantType()); OAuth2RestTemplate auth2RestTemplate = new OAuth2RestTemplate(clientCredentialsResourceDetails); auth2RestTemplate.setAccessTokenProvider(new ClientCredentialsAccessTokenProvider()); return auth2RestTemplate; }
Example 6
Source File: LegacyEdgeApplication.java From cloud-native-microservice-strangler-example with GNU General Public License v3.0 | 5 votes |
@LoadBalanced @Bean public OAuth2RestTemplate loadBalancedOauth2RestTemplate( ClientCredentialsResourceDetails resource) { ClientCredentialsResourceDetails clientCredentialsResourceDetails = new ClientCredentialsResourceDetails(); clientCredentialsResourceDetails.setAccessTokenUri(resource.getAccessTokenUri()); clientCredentialsResourceDetails.setClientId(resource.getClientId()); clientCredentialsResourceDetails.setClientSecret(resource.getClientSecret()); clientCredentialsResourceDetails.setClientAuthenticationScheme(resource.getClientAuthenticationScheme()); clientCredentialsResourceDetails.setScope(resource.getScope()); clientCredentialsResourceDetails.setGrantType(resource.getGrantType()); OAuth2RestTemplate auth2RestTemplate = new OAuth2RestTemplate(clientCredentialsResourceDetails); auth2RestTemplate.setAccessTokenProvider(new ClientCredentialsAccessTokenProvider()); return auth2RestTemplate; }
Example 7
Source File: LocalServerSecurityWithOAuth2Tests.java From spring-cloud-dataflow with Apache License 2.0 | 5 votes |
@Test public void testAccessSecurityInfoUrlWithOAuth2AccessToken2TimesAndLogout() throws Exception { final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localDataflowResource.getMockMvc() .perform(get("/security/info").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isOk()) .andExpect(jsonPath("$.authenticated", is(Boolean.TRUE))) .andExpect(jsonPath("$.authenticationEnabled", is(Boolean.TRUE))) .andExpect(jsonPath("$.roles", hasSize(7))); boolean oAuthServerResponse = oAuth2RestTemplate.getForObject("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/revoke_token", Boolean.class); assertTrue(Boolean.valueOf(oAuthServerResponse)); localDataflowResource.getMockMvc() .perform(get("/security/info").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isUnauthorized()); localDataflowResource.getMockMvc() .perform(get("/logout").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isFound()); localDataflowResource.getMockMvc() .perform(get("/security/info").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isUnauthorized()); }
Example 8
Source File: LocalServerSecurityWithOAuth2AndExternalAuthoritiesTests.java From spring-cloud-dataflow with Apache License 2.0 | 5 votes |
@Test public void testDataflowCallingExternalAuthoritiesServer() throws Exception { final String[] roles = {"VIEW", "CREATE", "MANAGE"}; final ObjectMapper objectMapper = new ObjectMapper(); externalAuthoritiesServer.enqueue(new MockResponse() .setBody(objectMapper.writeValueAsString(roles)) .addHeader("Content-Type", "application/json")); final ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setClientId("myclient"); resourceDetails.setClientSecret("mysecret"); resourceDetails.setGrantType("client_credentials"); resourceDetails .setAccessTokenUri("http://localhost:" + oAuth2ServerResource.getOauth2ServerPort() + "/oauth/token"); Assert.assertEquals(0, externalAuthoritiesServer.getRequestCount()); final OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(resourceDetails); final OAuth2AccessToken accessToken = oAuth2RestTemplate.getAccessToken(); final String accessTokenAsString = accessToken.getValue(); localDataflowResource.getMockMvc() .perform(get("/security/info").header("Authorization", "bearer " + accessTokenAsString)).andDo(print()) .andExpect(status().isOk()) .andExpect(jsonPath("$.authenticated", is(Boolean.TRUE))) .andExpect(jsonPath("$.authenticationEnabled", is(Boolean.TRUE))) .andExpect(jsonPath("$.roles", hasSize(3))); assertThat(externalAuthoritiesServer.getRequestCount(), is(1)); final RecordedRequest recordedRequest = externalAuthoritiesServer.takeRequest(); assertThat(recordedRequest.getHeader("Authorization"), is("Bearer " + accessTokenAsString)); }
Example 9
Source File: OAuth2IntegrationTestSupport.java From tutorials with MIT License | 5 votes |
protected ClientCredentialsResourceDetails getClientCredentialsResourceDetails(final String clientId, final List<String> scopes) { ClientCredentialsResourceDetails resourceDetails = new ClientCredentialsResourceDetails(); resourceDetails.setAccessTokenUri(format("http://localhost:%d/oauth/token", port)); resourceDetails.setClientId(clientId); resourceDetails.setClientSecret("baeldung"); resourceDetails.setScope(scopes); resourceDetails.setGrantType("client_credentials"); return resourceDetails; }