Browse Source
Previous to this commit, role prefix had to be set in every class causing repetition. Now, bean `GrantedAuthorityDefaults` can be used to define the role prefix in a single point. Fixes gh-3701pull/4053/head
13 changed files with 362 additions and 29 deletions
@ -0,0 +1,38 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2016 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.config; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Eddú Meléndez |
||||||
|
* @since 4.2.0 |
||||||
|
*/ |
||||||
|
public class GrantedAuthorityDefaults { |
||||||
|
|
||||||
|
private String rolePrefix = "ROLE_"; |
||||||
|
|
||||||
|
public GrantedAuthorityDefaults(String rolePrefix) { |
||||||
|
this.rolePrefix = rolePrefix; |
||||||
|
} |
||||||
|
|
||||||
|
public String getRolePrefix() { |
||||||
|
return this.rolePrefix; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRolePrefix(String rolePrefix) { |
||||||
|
this.rolePrefix = rolePrefix; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,60 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2016 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.ldap.userdetails; |
||||||
|
|
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
import org.springframework.context.annotation.AnnotationConfigApplicationContext; |
||||||
|
import org.springframework.context.annotation.Bean; |
||||||
|
import org.springframework.context.annotation.Configuration; |
||||||
|
import org.springframework.ldap.core.ContextSource; |
||||||
|
import org.springframework.security.config.GrantedAuthorityDefaults; |
||||||
|
|
||||||
|
import static org.assertj.core.api.Assertions.assertThat; |
||||||
|
import static org.mockito.Mockito.mock; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author Eddú Meléndez |
||||||
|
*/ |
||||||
|
public class DefaultLdapAuthoritiesPopulatorTests { |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testDefaultRolePrefix() { |
||||||
|
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); |
||||||
|
context.register(LdapAuthoritiesPopulatorConfiguration.class); |
||||||
|
context.refresh(); |
||||||
|
|
||||||
|
DefaultLdapAuthoritiesPopulator ldapPopulator = context.getBean(DefaultLdapAuthoritiesPopulator.class); |
||||||
|
assertThat(ldapPopulator.getRolePrefix()).isEqualTo("ROL_"); |
||||||
|
} |
||||||
|
|
||||||
|
@Configuration |
||||||
|
static class LdapAuthoritiesPopulatorConfiguration { |
||||||
|
|
||||||
|
@Bean |
||||||
|
public GrantedAuthorityDefaults authorityDefaults() { |
||||||
|
return new GrantedAuthorityDefaults("ROL_"); |
||||||
|
} |
||||||
|
|
||||||
|
@Bean |
||||||
|
public DefaultLdapAuthoritiesPopulator ldapAuthoritiesPopulator() { |
||||||
|
ContextSource contextSource = mock(ContextSource.class); |
||||||
|
return new DefaultLdapAuthoritiesPopulator(contextSource, "ou=groups"); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue