Browse Source

Polishing

Issue: SPR-11242
pull/292/merge
Juergen Hoeller 11 years ago
parent
commit
63d300ac86
  1. 35
      spring-core/src/test/java/org/springframework/core/ResolvableTypeTests.java
  2. 16
      spring-core/src/test/java/org/springframework/core/convert/support/CollectionToCollectionConverterTests.java

35
spring-core/src/test/java/org/springframework/core/ResolvableTypeTests.java

@ -48,6 +48,7 @@ import org.junit.runner.RunWith; @@ -48,6 +48,7 @@ import org.junit.runner.RunWith;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
import org.mockito.runners.MockitoJUnitRunner;
import org.springframework.core.ResolvableType.VariableResolver;
import org.springframework.util.MultiValueMap;
@ -833,8 +834,7 @@ public class ResolvableTypeTests { @@ -833,8 +834,7 @@ public class ResolvableTypeTests {
assertThat("field " + field + " toString", type.toString(), equalTo(expected));
}
private void assertTypedFieldToStringValue(String field, String expected)
throws Exception {
private void assertTypedFieldToStringValue(String field, String expected) throws Exception {
ResolvableType type = ResolvableType.forField(Fields.class.getField(field), TypedFields.class);
assertThat("field " + field + " toString", type.toString(), equalTo(expected));
}
@ -842,8 +842,7 @@ public class ResolvableTypeTests { @@ -842,8 +842,7 @@ public class ResolvableTypeTests {
@Test
public void resolveFromOuterClass() throws Exception {
Field field = EnclosedInParameterizedType.InnerTyped.class.getField("field");
ResolvableType type = ResolvableType.forField(
field, TypedEnclosedInParameterizedType.TypedInnerTyped.class);
ResolvableType type = ResolvableType.forField(field, TypedEnclosedInParameterizedType.TypedInnerTyped.class);
assertThat(type.resolve(), equalTo((Type) Integer.class));
}
@ -1198,8 +1197,7 @@ public class ResolvableTypeTests { @@ -1198,8 +1197,7 @@ public class ResolvableTypeTests {
return read;
}
private static AssertAssignbleMatcher assertAssignable(final ResolvableType type,
final ResolvableType... fromTypes) {
private static AssertAssignbleMatcher assertAssignable(final ResolvableType type, final ResolvableType... fromTypes) {
return new AssertAssignbleMatcher() {
@Override
public void equalTo(boolean... values) {
@ -1227,19 +1225,16 @@ public class ResolvableTypeTests { @@ -1227,19 +1225,16 @@ public class ResolvableTypeTests {
private static interface AssertAssignbleMatcher {
void equalTo(boolean... values);
}
@SuppressWarnings("serial")
static class ExtendsList extends ArrayList<CharSequence> {
}
@SuppressWarnings("serial")
static class ExtendsMap extends HashMap<String, Integer> {
}
@ -1281,12 +1276,10 @@ public class ResolvableTypeTests { @@ -1281,12 +1276,10 @@ public class ResolvableTypeTests {
public Map<Map<String, Integer>, Map<Byte, Long>> nested;
public T[] variableTypeGenericArray;
}
static class TypedFields extends Fields<String> {
}
@ -1303,7 +1296,6 @@ public class ResolvableTypeTests { @@ -1303,7 +1296,6 @@ public class ResolvableTypeTests {
void typedParameter(T p);
T typedReturn();
}
@ -1352,17 +1344,14 @@ public class ResolvableTypeTests { @@ -1352,17 +1344,14 @@ public class ResolvableTypeTests {
public Collection<? extends Collection<? extends CharSequence>> complexWildcard3;
public List<List<String>> complexWildcard4;
}
static class Assignment extends AssignmentBase<Object, CharSequence, String> {
}
static interface TypedMethods extends Methods<String> {
}
@ -1373,7 +1362,6 @@ public class ResolvableTypeTests { @@ -1373,7 +1362,6 @@ public class ResolvableTypeTests {
public Constructors(Map<T, Long> p) {
}
}
@ -1386,65 +1374,52 @@ public class ResolvableTypeTests { @@ -1386,65 +1374,52 @@ public class ResolvableTypeTests {
public TypedConstructors(Map<String, Long> p) {
super(p);
}
}
public interface MyInterfaceType<T> {
}
public class MySimpleInterfaceType implements MyInterfaceType<String> {
}
public abstract class MySimpleInterfaceTypeWithImplementsRaw implements MyInterfaceType<String>, List {
}
public abstract class ExtendsMySimpleInterfaceTypeWithImplementsRaw extends MySimpleInterfaceTypeWithImplementsRaw {
}
public class MyCollectionInterfaceType implements MyInterfaceType<Collection<String>> {
}
public abstract class MySuperclassType<T> {
}
public class MySimpleSuperclassType extends MySuperclassType<String> {
}
public class MyCollectionSuperclassType extends MySuperclassType<Collection<String>> {
}
static interface Wildcard<T extends Number> extends List<T> {
}
static interface RawExtendsWildcard extends Wildcard {
}
static interface VariableNameSwitch<V, K> extends MultiValueMap<K, V> {
}
static interface ListOfGenericArray extends List<List<String>[]> {
}
@ -1457,7 +1432,6 @@ public class ResolvableTypeTests { @@ -1457,7 +1432,6 @@ public class ResolvableTypeTests {
public T field;
}
}
@ -1466,7 +1440,6 @@ public class ResolvableTypeTests { @@ -1466,7 +1440,6 @@ public class ResolvableTypeTests {
class TypedInnerTyped extends InnerTyped<Long> {
}
}
}

16
spring-core/src/test/java/org/springframework/core/convert/support/CollectionToCollectionConverterTests.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2012 the original author or authors.
* Copyright 2002-2013 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.
@ -43,6 +43,7 @@ import static org.junit.Assert.*; @@ -43,6 +43,7 @@ import static org.junit.Assert.*;
/**
* @author Keith Donald
* @author Juergen Hoeller
*/
public class CollectionToCollectionConverterTests {
@ -63,8 +64,9 @@ public class CollectionToCollectionConverterTests { @@ -63,8 +64,9 @@ public class CollectionToCollectionConverterTests {
assertTrue(conversionService.canConvert(sourceType, targetType));
try {
conversionService.convert(list, sourceType, targetType);
} catch (ConversionFailedException e) {
assertTrue(e.getCause() instanceof ConverterNotFoundException);
}
catch (ConversionFailedException ex) {
assertTrue(ex.getCause() instanceof ConverterNotFoundException);
}
conversionService.addConverterFactory(new StringToNumberConverterFactory());
assertTrue(conversionService.canConvert(sourceType, targetType));
@ -141,10 +143,10 @@ public class CollectionToCollectionConverterTests { @@ -141,10 +143,10 @@ public class CollectionToCollectionConverterTests {
TypeDescriptor targetType = new TypeDescriptor(getClass().getField("objectToCollection"));
assertTrue(conversionService.canConvert(sourceType, targetType));
List<List<List<Integer>>> result = (List<List<List<Integer>>>) conversionService.convert(list, sourceType, targetType);
assertEquals((Integer)9, result.get(0).get(0).get(0));
assertEquals((Integer)12, result.get(0).get(1).get(0));
assertEquals((Integer)37, result.get(1).get(0).get(0));
assertEquals((Integer)23, result.get(1).get(1).get(0));
assertEquals((Integer) 9, result.get(0).get(0).get(0));
assertEquals((Integer) 12, result.get(0).get(1).get(0));
assertEquals((Integer) 37, result.get(1).get(0).get(0));
assertEquals((Integer) 23, result.get(1).get(1).get(0));
}
public List<List<List<Integer>>> objectToCollection;

Loading…
Cancel
Save