Skip to content

Added Unit Tests For oauth2-core #4499

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package org.springframework.security.oauth2.core.endpoint;

import org.springframework.security.oauth2.core.AuthorizationGrantType;
import org.springframework.util.Assert;

/**
Expand Down Expand Up @@ -58,18 +59,18 @@ private Builder(String code) {
}

public Builder clientId(String clientId) {
Assert.hasText(clientId, "clientId cannot be empty");
this.authorizationCodeTokenRequest.clientId = clientId;
return this;
}

public Builder redirectUri(String redirectUri) {
Assert.hasText(redirectUri, "redirectUri cannot be empty");
this.authorizationCodeTokenRequest.redirectUri = redirectUri;
return this;
}

public AuthorizationCodeTokenRequestAttributes build() {
Assert.hasText(this.authorizationCodeTokenRequest.clientId, "clientId cannot be empty");
Assert.hasText(this.authorizationCodeTokenRequest.redirectUri, "redirectUri cannot be empty");
return this.authorizationCodeTokenRequest;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,16 @@ private Builder(AuthorizationGrantType authorizationGrantType) {
}

public Builder authorizeUri(String authorizeUri) {
Assert.hasText(authorizeUri, "authorizeUri cannot be empty");
this.authorizationRequest.authorizeUri = authorizeUri;
return this;
}

public Builder clientId(String clientId) {
Assert.hasText(clientId, "clientId cannot be empty");
this.authorizationRequest.clientId = clientId;
return this;
}

public Builder redirectUri(String redirectUri) {
Assert.hasText(redirectUri, "redirectUri cannot be empty");
this.authorizationRequest.redirectUri = redirectUri;
return this;
}
Expand All @@ -121,6 +118,8 @@ public Builder state(String state) {
}

public AuthorizationRequestAttributes build() {
Assert.hasText(this.authorizationRequest.clientId, "clientId cannot be empty");
Assert.hasText(this.authorizationRequest.authorizeUri, "authorizeUri cannot be empty");
return this.authorizationRequest;
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -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");
}
}
Original file line number Diff line number Diff line change
@@ -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();
}
}
Original file line number Diff line number Diff line change
@@ -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();
}
}
Original file line number Diff line number Diff line change
@@ -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();
}
}
Loading