Fix checkstyle for LDAP JavaConfig Authority mapping

Issue gh-2768
This commit is contained in:
Rob Winch 2016-06-21 17:08:37 -05:00
parent b76e3be822
commit bd5f71bb0d

View File

@ -1,39 +1,44 @@
/* /*
* Copyright 2011 the original author or authors. * 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 * Licensed under the Apache License, Version 2.0 (the "License");
* the License. You may obtain a copy of the License at * 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 * 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 * Unless required by applicable law or agreed to in writing, software
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * distributed under the License is distributed on an "AS IS" BASIS,
* specific language governing permissions and limitations under the License. * 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.annotation.authentication.configurers.ldap; package org.springframework.security.config.annotation.authentication.configurers.ldap;
import static org.junit.Assert.assertEquals;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.core.authority.mapping.NullAuthoritiesMapper; import org.springframework.security.core.authority.mapping.NullAuthoritiesMapper;
import org.springframework.security.core.authority.mapping.SimpleAuthorityMapper; import org.springframework.security.core.authority.mapping.SimpleAuthorityMapper;
import static org.assertj.core.api.Assertions.assertThat;
public class LdapAuthenticationProviderConfigurerTest { public class LdapAuthenticationProviderConfigurerTest {
private LdapAuthenticationProviderConfigurer configurer; private LdapAuthenticationProviderConfigurer<AuthenticationManagerBuilder> configurer;
@Before @Before
public void setUp() { public void setUp() {
configurer = new LdapAuthenticationProviderConfigurer(); configurer = new LdapAuthenticationProviderConfigurer<AuthenticationManagerBuilder>();
} }
// SEC-2557 // SEC-2557
@Test @Test
public void getAuthoritiesMapper() throws Exception { public void getAuthoritiesMapper() throws Exception {
assertEquals(SimpleAuthorityMapper.class, configurer.getAuthoritiesMapper().getClass()); assertThat(configurer.getAuthoritiesMapper()).isInstanceOf(SimpleAuthorityMapper.class);
configurer.authoritiesMapper(new NullAuthoritiesMapper()); configurer.authoritiesMapper(new NullAuthoritiesMapper());
assertEquals(NullAuthoritiesMapper.class, configurer.getAuthoritiesMapper().getClass()); assertThat(configurer.getAuthoritiesMapper()).isInstanceOf(NullAuthoritiesMapper.class);
} }
} }