Browse Source
Fixes gh-4499 This commit contains unit tests for the endpoints package in oauth2-core.pull/4423/merge
7 changed files with 368 additions and 5 deletions
@ -0,0 +1,31 @@ |
|||||||
|
/* |
||||||
|
* 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.security.oauth2.core.endpoint; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests {@link AuthorizationCodeAuthorizationResponseAttributes} |
||||||
|
* |
||||||
|
* @author Luander Ribeiro |
||||||
|
*/ |
||||||
|
public class AuthorizationCodeAuthorizationResponseAttributesTest { |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void constructorWhenCodeIsNullThenThrowIllegalArgumentException() { |
||||||
|
new AuthorizationCodeAuthorizationResponseAttributes(null, "xyz"); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,75 @@ |
|||||||
|
/* |
||||||
|
* 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.security.oauth2.core.endpoint; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.security.oauth2.core.AuthorizationGrantType; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests {@link AuthorizationCodeTokenRequestAttributes} |
||||||
|
* |
||||||
|
* @author Luander Ribeiro |
||||||
|
*/ |
||||||
|
public class AuthorizationCodeTokenRequestAttributesTest { |
||||||
|
private static final String CODE = "code"; |
||||||
|
private static final String CLIENT_ID = "client id"; |
||||||
|
private static final String REDIRECT_URI = "http://redirect.uri/"; |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenCodeIsNullThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationCodeTokenRequestAttributes |
||||||
|
.withCode(null) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenClientIdIsNullThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationCodeTokenRequestAttributes |
||||||
|
.withCode(CODE) |
||||||
|
.clientId(null) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenRedirectUriIsNullThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationCodeTokenRequestAttributes |
||||||
|
.withCode(CODE) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(null) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenClientIdNotSetThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationCodeTokenRequestAttributes |
||||||
|
.withCode(CODE) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenRedirectUriNotSetThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationCodeTokenRequestAttributes |
||||||
|
.withCode(CODE) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,156 @@ |
|||||||
|
/* |
||||||
|
* 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.security.oauth2.core.endpoint; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
import java.util.Collections; |
||||||
|
import java.util.Set; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
import static org.assertj.core.api.Assertions.assertThatCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests {@link AuthorizationRequestAttributes} |
||||||
|
* |
||||||
|
* @author Luander Ribeiro |
||||||
|
*/ |
||||||
|
public class AuthorizationRequestAttributesTest { |
||||||
|
private static final String AUTHORIZE_URI = "http://authorize.uri/"; |
||||||
|
private static final String CLIENT_ID = "client id"; |
||||||
|
private static final String REDIRECT_URI = "http://redirect.uri/"; |
||||||
|
private static final Set<String> SCOPES = Collections.singleton("scope"); |
||||||
|
private static final String STATE = "xyz"; |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenAuthorizationUriIsNullThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(null) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenAuthorizeUriNotSetThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenClientIdIsNullThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(null) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenClientIdNotSetThenThrowIllegalArgumentException() { |
||||||
|
AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenGetResponseTypeIsCalledThenReturnCode() { |
||||||
|
AuthorizationRequestAttributes attributes; |
||||||
|
attributes = AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build(); |
||||||
|
|
||||||
|
assertThat(attributes.getResponseType()).isEqualTo(ResponseType.CODE); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenRedirectUriIsNullThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(null) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenRedirectUriNotSetThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(STATE) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenScopesIsNullThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(null) |
||||||
|
.state(STATE) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenScopesNotSetThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.state(STATE) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenStateIsNullThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.state(null) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test |
||||||
|
public void buildWhenStateNotSetThenDoesNotThrowAnyException() { |
||||||
|
assertThatCode(() -> AuthorizationRequestAttributes.withAuthorizationCode() |
||||||
|
.authorizeUri(AUTHORIZE_URI) |
||||||
|
.clientId(CLIENT_ID) |
||||||
|
.redirectUri(REDIRECT_URI) |
||||||
|
.scopes(SCOPES) |
||||||
|
.build()).doesNotThrowAnyException(); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,32 @@ |
|||||||
|
/* |
||||||
|
* 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.security.oauth2.core.endpoint; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests {@link ErrorResponseAttributes} |
||||||
|
* |
||||||
|
* @author Luander Ribeiro |
||||||
|
*/ |
||||||
|
public class ErrorResponseAttributesTest { |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void withErrorCodeWhenCodeIsNullThenThrowIllegalArgumentException() { |
||||||
|
ErrorResponseAttributes.withErrorCode(null) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
} |
||||||
@ -0,0 +1,70 @@ |
|||||||
|
/* |
||||||
|
* 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.security.oauth2.core.endpoint; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
import org.springframework.security.oauth2.core.AccessToken; |
||||||
|
|
||||||
|
import java.util.Collections; |
||||||
|
|
||||||
|
/** |
||||||
|
* Tests {@link TokenResponseAttributes} |
||||||
|
* |
||||||
|
* @author Luander Ribeiro |
||||||
|
*/ |
||||||
|
public class TokenResponseAttributesTest { |
||||||
|
|
||||||
|
private static final String TOKEN = "token"; |
||||||
|
private static final long INVALID_EXPIRES_IN = -1L; |
||||||
|
private static final long EXPIRES_IN = System.currentTimeMillis(); |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenTokenValueIsNullThenThrowIllegalArgumentException() { |
||||||
|
TokenResponseAttributes.withToken(null) |
||||||
|
.expiresIn(EXPIRES_IN) |
||||||
|
.additionalParameters(Collections.emptyMap()) |
||||||
|
.scopes(Collections.emptySet()) |
||||||
|
.tokenType(AccessToken.TokenType.BEARER) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenExpiresInIsNegativeThenThrowIllegalArgumentException() { |
||||||
|
TokenResponseAttributes.withToken(TOKEN) |
||||||
|
.expiresIn(INVALID_EXPIRES_IN) |
||||||
|
.additionalParameters(Collections.emptyMap()) |
||||||
|
.scopes(Collections.emptySet()) |
||||||
|
.tokenType(AccessToken.TokenType.BEARER) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenTokenTypeIsInvalidThenThrowIllegalArgumentException() { |
||||||
|
TokenResponseAttributes.withToken(TOKEN) |
||||||
|
.expiresIn(EXPIRES_IN) |
||||||
|
.additionalParameters(Collections.emptyMap()) |
||||||
|
.tokenType(null) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class) |
||||||
|
public void buildWhenTokenTypeNotSetThenThrowIllegalArgumentException() { |
||||||
|
TokenResponseAttributes.withToken(TOKEN) |
||||||
|
.expiresIn(EXPIRES_IN) |
||||||
|
.additionalParameters(Collections.emptyMap()) |
||||||
|
.build(); |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue