ObjectPostProcessor Tests groovy->java

Issue gh-4939
This commit is contained in:
Josh Cummings 2019-09-27 16:36:33 -06:00
parent a08be5bf6f
commit 758af54796
No known key found for this signature in database
GPG Key ID: 49EF60DD7FF83443
2 changed files with 43 additions and 32 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2013 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -15,16 +15,17 @@
*/ */
package org.springframework.security.config.annotation; package org.springframework.security.config.annotation;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.LinkedList; import java.util.LinkedList;
import java.util.List; import java.util.List;
import org.junit.Test; import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
/** /**
* @author Rob Winch * @author Rob Winch
* @author Josh Cummings
* *
*/ */
public class ObjectPostProcessorTests { public class ObjectPostProcessorTests {
@ -34,17 +35,19 @@ public class ObjectPostProcessorTests {
assertThat((Object) PerformConversion.perform(new ArrayList<>())) assertThat((Object) PerformConversion.perform(new ArrayList<>()))
.isInstanceOf(LinkedList.class); .isInstanceOf(LinkedList.class);
} }
}
class ListToLinkedListObjectPostProcessor implements ObjectPostProcessor<List<?>> { static class ListToLinkedListObjectPostProcessor implements ObjectPostProcessor<List<?>> {
public <O extends List<?>> O postProcess(O l) { public <O extends List<?>> O postProcess(O l) {
return (O) new LinkedList(l); return (O) new LinkedList(l);
}
}
static class PerformConversion {
public static List<?> perform(ArrayList<?> l) {
return new ListToLinkedListObjectPostProcessor().postProcess(l);
}
} }
} }
class PerformConversion {
public static List<?> perform(ArrayList<?> l) {
return new ListToLinkedListObjectPostProcessor().postProcess(l);
}
}

View File

@ -1,11 +1,11 @@
/* /*
* Copyright 2002-2013 the original author or authors. * Copyright 2002-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* https://www.apache.org/licenses/LICENSE-2.0 * https://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
@ -13,41 +13,49 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.springframework.security.config.annotation package org.springframework.security.config.annotation;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import spock.lang.Specification import org.junit.Test;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.Mockito.mock;
/** /**
* @author Rob Winch * @author Rob Winch
* @author Josh Cummings
* *
*/ */
class SecurityConfigurerAdapterClosureTests extends Specification { public class SecurityConfigurerAdapterClosureTests {
ConcereteSecurityConfigurerAdapter conf = new ConcereteSecurityConfigurerAdapter() ConcereteSecurityConfigurerAdapter conf = new ConcereteSecurityConfigurerAdapter();
def "addPostProcessor closure"() { @Test
setup: public void addPostProcessorClosureWhenPostProcessThenGetsApplied() throws Exception {
SecurityBuilder<Object> builder = Mock() SecurityBuilder<Object> builder = mock(SecurityBuilder.class);
conf.addObjectPostProcessor({ List l -> this.conf.addObjectPostProcessor(new ObjectPostProcessor<List<String>>() {
l.add("a") @Override
l public <O extends List<String>> O postProcess(O l) {
} as ObjectPostProcessor<List>) l.add("a");
when: return l;
conf.init(builder) }
conf.configure(builder) });
then:
conf.list.contains("a") this.conf.init(builder);
this.conf.configure(builder);
assertThat(this.conf.list).contains("a");
} }
class ConcereteSecurityConfigurerAdapter extends static class ConcereteSecurityConfigurerAdapter extends
SecurityConfigurerAdapter<Object, SecurityBuilder<Object>> { SecurityConfigurerAdapter<Object, SecurityBuilder<Object>> {
private List<Object> list = new ArrayList<Object>(); private List<Object> list = new ArrayList<Object>();
@Override @Override
public void configure(SecurityBuilder<Object> builder) throws Exception { public void configure(SecurityBuilder<Object> builder) throws Exception {
list = postProcess(list); this.list = postProcess(this.list);
} }
public ConcereteSecurityConfigurerAdapter list(List<Object> l) { public ConcereteSecurityConfigurerAdapter list(List<Object> l) {