/****************************************************************************** * Copyright (c) 2006, 2010 VMware Inc. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Apache License v2.0 which accompanies this distribution. * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html and the Apache License v2.0 * is available at http://www.opensource.org/licenses/apache2.0.php. * You may elect to redistribute this code under either of these licenses. * * Contributors: * VMware Inc. *****************************************************************************/ package org.eclipse.gemini.blueprint.blueprint.container; import java.awt.Point; import java.awt.Shape; import java.lang.reflect.Method; import java.util.LinkedList; import java.util.List; import java.util.Properties; import java.util.TreeMap; import java.util.concurrent.atomic.AtomicReference; import org.eclipse.gemini.blueprint.blueprint.MyCustomDictionary; import org.junit.Ignore; import org.junit.Test; import org.osgi.service.blueprint.container.ReifiedType; import org.springframework.beans.BeanUtils; import org.springframework.core.MethodParameter; import org.springframework.core.convert.TypeDescriptor; import static org.junit.Assert.assertEquals; /** * @author Costin Leau */ public class TypeFactoryTest { private static class TestSet<A> { public void rawList(List arg) { } public void primitive(int arg) { } public void integer(Integer arg) { } public void typedList(LinkedList<Point> arg) { } public void array(Integer[] arg) { } public void extendsList(LinkedList<? extends Shape> arg) { } public void superList(LinkedList<? super Shape> arg) { } public void typedMap(TreeMap<Integer, Double> arg) { } public void pointMap(TreeMap<String, Point> arg) { } public void typedReference(AtomicReference<Boolean> arg) { } public void objectTypedReference(AtomicReference<Object> arg) { } public void wildcardReference(AtomicReference<?> arg) { } public void superTypedReference(AtomicReference<? super Properties> arg) { } public void extendsTypedReference(AtomicReference<? extends Properties> arg) { } public void typeVariable(AtomicReference<A> arg) { } public void customDictionary(MyCustomDictionary customDict) { } } @Test public void testJdk4Classes() throws Exception { ReifiedType tp = getReifiedTypeFor("rawList"); assertEquals(1, tp.size()); assertEquals(List.class, tp.getRawClass()); } @Test public void testPrimitive() throws Exception { ReifiedType tp = getReifiedTypeFor("primitive"); assertEquals(0, tp.size()); assertEquals(Integer.class, tp.getRawClass()); } @Test public void testArray() throws Exception { ReifiedType tp = getReifiedTypeFor("array"); assertEquals(1, tp.size()); assertEquals(Integer[].class, tp.getRawClass()); assertEquals(Integer.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testInteger() throws Exception { ReifiedType tp = getReifiedTypeFor("integer"); assertEquals(0, tp.size()); assertEquals(Integer.class, tp.getRawClass()); } @Test public void testTypedObjectList() throws Exception { ReifiedType tp = getReifiedTypeFor("typedList"); assertEquals(1, tp.size()); assertEquals(LinkedList.class, tp.getRawClass()); assertEquals(Point.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testExtendsList() throws Exception { ReifiedType tp = getReifiedTypeFor("extendsList"); assertEquals(1, tp.size()); assertEquals(LinkedList.class, tp.getRawClass()); assertEquals(Shape.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testSuperList() throws Exception { ReifiedType tp = getReifiedTypeFor("superList"); assertEquals(1, tp.size()); assertEquals(LinkedList.class, tp.getRawClass()); assertEquals(Shape.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testTypedMap() throws Exception { ReifiedType tp = getReifiedTypeFor("typedMap"); assertEquals(2, tp.size()); assertEquals(TreeMap.class, tp.getRawClass()); assertEquals(Integer.class, tp.getActualTypeArgument(0).getRawClass()); assertEquals(Double.class, tp.getActualTypeArgument(1).getRawClass()); } @Test public void testPointMap() throws Exception { ReifiedType tp = getReifiedTypeFor("pointMap"); assertEquals(2, tp.size()); assertEquals(TreeMap.class, tp.getRawClass()); assertEquals(String.class, tp.getActualTypeArgument(0).getRawClass()); assertEquals(Point.class, tp.getActualTypeArgument(1).getRawClass()); } // Since spring 3.1 the TypeDescriptor no longer contains any reference to the MethodParameter // class, we we are unable to get the ParameterizedType of a method parameter. // So all actual type arguments just become Object.class. @Test @Ignore public void testTypedReference() throws Exception { ReifiedType tp = getReifiedTypeFor("typedReference"); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(1, tp.size()); assertEquals(Boolean.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testObjectTypedReference() throws Exception { ReifiedType tp = getReifiedTypeFor("objectTypedReference"); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(1, tp.size()); assertEquals(Object.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testWildcardReference() throws Exception { ReifiedType tp = getReifiedTypeFor("wildcardReference"); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(1, tp.size()); assertEquals(Object.class, tp.getActualTypeArgument(0).getRawClass()); } // Since spring 3.1 the TypeDescriptor no longer contains any reference to the MethodParameter // class, we we are unable to get the ParameterizedType of a method parameter. // So all actual type arguments just become Object.class. @Test @Ignore public void testSuperReference() throws Exception { ReifiedType tp = getReifiedTypeFor("superTypedReference"); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(1, tp.size()); assertEquals(Properties.class, tp.getActualTypeArgument(0).getRawClass()); } // Since spring 3.1 the TypeDescriptor no longer contains any reference to the MethodParameter // class, we we are unable to get the ParameterizedType of a method parameter. // So all actual type arguments just come Object.class. @Test @Ignore public void testExtendsReference() throws Exception { ReifiedType tp = getReifiedTypeFor("extendsTypedReference"); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(1, tp.size()); assertEquals(Properties.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testTypeVariable() throws Exception { ReifiedType tp = getReifiedTypeFor("typeVariable"); assertEquals(1, tp.size()); assertEquals(AtomicReference.class, tp.getRawClass()); assertEquals(Object.class, tp.getActualTypeArgument(0).getRawClass()); } @Test public void testCustomDictionary() throws Exception { ReifiedType tp = getReifiedTypeFor("customDictionary"); assertEquals(2, tp.size()); assertEquals(MyCustomDictionary.class, tp.getRawClass()); assertEquals(Object.class, tp.getActualTypeArgument(0).getRawClass()); assertEquals(Object.class, tp.getActualTypeArgument(1).getRawClass()); } @Test public void testUnknownType() throws Exception { ReifiedType type = TypeFactory.getType(TypeDescriptor.forObject(null)); assertEquals(Object.class, type.getRawClass()); } private ReifiedType getReifiedTypeFor(String methodName) { Method mt = BeanUtils.findDeclaredMethodWithMinimalParameters(TestSet.class, methodName); TypeDescriptor td = new TypeDescriptor(new MethodParameter(mt, 0)); return TypeFactory.getType(td); } }