/* * Copyright 2013-2017 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.data.convert; import static org.assertj.core.api.Assertions.*; import static org.mockito.Mockito.*; import java.util.Collections; import java.util.Map; import java.util.Optional; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.junit.MockitoJUnitRunner; import org.springframework.data.mapping.Alias; import org.springframework.data.util.ClassTypeInformation; import org.springframework.data.util.TypeInformation; /** * Unit tests for {@link DefaultTypeMapper}. * * @author Oliver Gierke */ @RunWith(MockitoJUnitRunner.class) public class DefaultTypeMapperUnitTests { static final TypeInformation<String> STRING_TYPE_INFO = ClassTypeInformation.from(String.class); static final Alias ALIAS = Alias.of(String.class.getName()); @Mock TypeAliasAccessor<Map<String, String>> accessor; @Mock TypeInformationMapper mapper; DefaultTypeMapper<Map<String, String>> typeMapper; Map<String, String> source; @Before public void setUp() { this.typeMapper = new DefaultTypeMapper<>(accessor, Collections.singletonList(mapper)); this.source = Collections.singletonMap("key", ALIAS.toString()); doReturn(ALIAS).when(accessor).readAliasFrom(source); doReturn(Optional.of(STRING_TYPE_INFO)).when(mapper).resolveTypeFrom(ALIAS); } @Test public void cachesResolvedTypeInformation() { Optional<TypeInformation<?>> information = typeMapper.readType(source); assertThat(information).hasValue(STRING_TYPE_INFO); verify(mapper, times(1)).resolveTypeFrom(ALIAS); typeMapper.readType(source); verify(mapper, times(1)).resolveTypeFrom(ALIAS); } @Test // DATACMNS-349 public void returnsTypeAliasForInformation() { Alias alias = Alias.of("alias"); doReturn(alias).when(mapper).createAliasFor(STRING_TYPE_INFO); assertThat(this.typeMapper.getAliasFor(STRING_TYPE_INFO)).isEqualTo(alias); } @Test // DATACMNS-783 public void specializesRawSourceTypeUsingGenericContext() { ClassTypeInformation<Foo> root = ClassTypeInformation.from(Foo.class); TypeInformation<?> propertyType = root.getProperty("abstractBar") .orElseThrow(() -> new IllegalStateException("Property abstractBar not found!")); TypeInformation<?> barType = ClassTypeInformation.from(Bar.class); doReturn(Alias.of(barType)).when(accessor).readAliasFrom(source); doReturn(Optional.of(barType)).when(mapper).resolveTypeFrom(Alias.of(barType)); TypeInformation<?> result = typeMapper.readType(source, propertyType); assertThat(result).isInstanceOf(TypeInformation.class); TypeInformation<?> typeInformation = TypeInformation.class.cast(result); assertThat(typeInformation.getType()).isEqualTo(Bar.class); assertThat(typeInformation.getProperty("field")) .hasValueSatisfying(it -> assertThat(it.getType()).isEqualTo(Character.class)); } static class TypeWithAbstractGenericType<T> { AbstractBar<T> abstractBar; } static class Foo extends TypeWithAbstractGenericType<Character> {} static abstract class AbstractBar<T> {} static class Bar<T> extends AbstractBar<T> { T field; } }