/* Copyright (c) 2012-2017 Jakub Białek * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated * documentation files (the "Software"), to deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package com.google.code.ssm.json; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.util.HashMap; import org.junit.Before; import org.junit.Test; import org.mockito.Mockito; import com.fasterxml.jackson.databind.JavaType; import com.fasterxml.jackson.databind.type.TypeFactory; /** * * @author Jakub Białek * */ public class ClassAliasIdResolverTest { private ClassAliasIdResolver resolver; private JavaType baseType; private TypeFactory typeFactory; @Before public void setUp() { baseType = Mockito.mock(JavaType.class); typeFactory = TypeFactory.defaultInstance(); resolver = new ClassAliasIdResolver(baseType, typeFactory, new HashMap<String, Class<?>>(), new HashMap<Class<?>, String>()); } @Test public void addClassToId() { resolver.addClassToId(ClassAliasIdResolverTest.class, "cairt"); String id = resolver.idFromValue(new ClassAliasIdResolverTest()); assertNotNull(id); assertEquals("cairt", id); id = resolver.idFromValue(new Object()); assertEquals(Object.class.getName(), id); } @Test(expected = IllegalArgumentException.class) public void invalidAddClassToIdNullClass() { resolver.addClassToId(null, "id"); } @Test(expected = IllegalArgumentException.class) public void invalidAddClassToIdMapNullAlias() { resolver.addClassToId(ClassAliasIdResolverTest.class, null); } @Test(expected = IllegalArgumentException.class) public void invalidAddClassToIdMapEmptyAlias() { resolver.addClassToId(ClassAliasIdResolverTest.class, ""); } }