Replace AuthorizationGrantType & ClientAuthenticationMethod

Closes gh-10506
This commit is contained in:
Madhura Bhave
2017-10-05 17:58:57 -07:00
parent e69a93bf47
commit 3ced8412b5
7 changed files with 14 additions and 182 deletions

View File

@@ -1,36 +0,0 @@
/*
* Copyright 2012-2017 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
*
* http://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.boot.autoconfigure.security.oauth2.client;
import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link AuthorizationGrantType}.
*
* @author Phillip Webb
*/
public class AuthorizationGrantTypeTests {
@Test
public void getTypeShouldGetSpringSecurityVariant() throws Exception {
assertThat(AuthorizationGrantType.AUTHORIZATION_CODE.getType()).isEqualTo(
org.springframework.security.oauth2.core.AuthorizationGrantType.AUTHORIZATION_CODE);
}
}

View File

@@ -1,38 +0,0 @@
/*
* Copyright 2012-2017 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
*
* http://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.boot.autoconfigure.security.oauth2.client;
import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link ClientAuthenticationMethod}.
*
* @author Phillip Webb
*/
public class ClientAuthenticationMethodTests {
@Test
public void getMethodShouldGetSpringSecurityVariant() throws Exception {
assertThat(ClientAuthenticationMethod.BASIC.getMethod()).isEqualTo(
org.springframework.security.oauth2.core.ClientAuthenticationMethod.BASIC);
assertThat(ClientAuthenticationMethod.POST.getMethod()).isEqualTo(
org.springframework.security.oauth2.core.ClientAuthenticationMethod.POST);
}
}

View File

@@ -53,8 +53,8 @@ public class OAuth2ClientPropertiesRegistrationAdapterTests {
registration.setProvider("provider");
registration.setClientId("clientId");
registration.setClientSecret("clientSecret");
registration.setClientAuthenticationMethod(ClientAuthenticationMethod.POST);
registration.setAuthorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE);
registration.setClientAuthenticationMethod("post");
registration.setAuthorizationGrantType("authorization_code");
registration.setRedirectUri("http://example.com/redirect");
registration.setScope(Collections.singleton("scope"));
registration.setClientName("clientName");
@@ -125,8 +125,8 @@ public class OAuth2ClientPropertiesRegistrationAdapterTests {
registration.setProvider("google");
registration.setClientId("clientId");
registration.setClientSecret("clientSecret");
registration.setClientAuthenticationMethod(ClientAuthenticationMethod.POST);
registration.setAuthorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE);
registration.setClientAuthenticationMethod("post");
registration.setAuthorizationGrantType("authorization_code");
registration.setRedirectUri("http://example.com/redirect");
registration.setScope(Collections.singleton("scope"));
registration.setClientName("clientName");