Skip to content
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

Added null checks and tests to constructors #6915

Merged
Merged
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 @@ -18,6 +18,7 @@

import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.SpringSecurityCoreVersion;
import org.springframework.util.Assert;

import java.security.Principal;

Expand All @@ -37,6 +38,8 @@ public final class JaasGrantedAuthority implements GrantedAuthority {
private final Principal principal;

public JaasGrantedAuthority(String role, Principal principal) {
Assert.notNull(role, "role cannot be null");
Assert.notNull(principal, "principal cannot be null");
this.role = role;
this.principal = principal;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* 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.authentication.jaas;

import org.junit.Test;

import static org.assertj.core.api.Assertions.assertThatThrownBy;
import org.springframework.security.authentication.jaas.JaasGrantedAuthority;

/**
*
* @author Clement Ng
*
*/
public class JaasGrantedAuthorityTests {

/**
* @throws Exception
*/
@Test
public void authorityWithNullRoleFailsAssertion() throws Exception {
assertThatThrownBy(() -> new JaasGrantedAuthority(null, null))
.isInstanceOf(IllegalArgumentException.class)
.hasMessageContaining("role cannot be null");
}

/**
* @throws Exception
*/
@Test
public void authorityWithNullPrincipleFailsAssertion() throws Exception {
assertThatThrownBy(() -> new JaasGrantedAuthority("role", null))
.isInstanceOf(IllegalArgumentException.class)
.hasMessageContaining("principal cannot be null");
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* 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.
Expand All @@ -15,6 +15,8 @@
*/
package org.springframework.security.web.access.intercept;

import org.springframework.util.Assert;

/**
* @author Luke Taylor
* @since 2.0
Expand All @@ -28,6 +30,7 @@ public RequestKey(String url) {
}

public RequestKey(String url, String method) {
Assert.notNull(url, "url cannot be null");
this.url = url;
this.method = method;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.SpringSecurityCoreVersion;
import org.springframework.util.Assert;

/**
* Custom {@code GrantedAuthority} used by
Expand All @@ -44,6 +45,8 @@ public final class SwitchUserGrantedAuthority implements GrantedAuthority {
// ===================================================================================================

public SwitchUserGrantedAuthority(String role, Authentication source) {
Assert.notNull(role, "role cannot be null");
Assert.notNull(source, "source cannot be null");
this.role = role;
this.source = source;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* 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.
Expand All @@ -15,9 +15,10 @@
*/
package org.springframework.security.web.access.intercept;

import static org.assertj.core.api.Assertions.*;

import org.junit.Test;

import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import org.springframework.security.web.access.intercept.RequestKey;

/**
Expand Down Expand Up @@ -63,4 +64,14 @@ public void keysWithDifferentUrlsAreNotEquals() {
assertThat(key1.equals(key2)).isFalse();
assertThat(key2.equals(key1)).isFalse();
}

/**
* @throws Exception
*/
@Test
public void keysWithNullUrlFailsAssertion() throws Exception {
assertThatThrownBy(() -> new RequestKey(null, null))
.isInstanceOf(IllegalArgumentException.class)
.hasMessage("url cannot be null");
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* 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.web.authentication.switchuser;

import org.junit.Test;

import static org.assertj.core.api.Assertions.assertThatThrownBy;
import org.springframework.security.web.authentication.switchuser.SwitchUserGrantedAuthority;

/**
*
* @author Clement Ng
*
*/
public class SwitchUserGrantedAuthorityTests {

/**
* @throws Exception
*/
@Test
public void authorityWithNullRoleFailsAssertion() throws Exception {
assertThatThrownBy(() -> new SwitchUserGrantedAuthority(null, null))
.isInstanceOf(IllegalArgumentException.class)
.hasMessage("role cannot be null");
}

/**
* @throws Exception
*/
@Test
public void authorityWithNullSourceFailsAssertion() throws Exception {
assertThatThrownBy(() -> new SwitchUserGrantedAuthority("role", null))
.isInstanceOf(IllegalArgumentException.class)
.hasMessage("source cannot be null");
}
}