/* * Copyright 2014 NAVER Corp. * * 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 com.navercorp.pinpoint.rpc.util; import java.util.HashMap; import java.util.Map; import org.junit.Assert; import org.junit.Test; import com.navercorp.pinpoint.rpc.util.CopyUtils; public class CopyUtilsTest { @Test public void copyUtilsTest() { Map original = createSimpleMap("key", 2); Map copied = CopyUtils.mediumCopyMap(original); Assert.assertEquals(2, copied.get("key")); Assert.assertEquals(2, original.get("key")); original.put("key", 4); copied.put("key", 3); copied.put("new", "new"); Assert.assertEquals(3, copied.get("key")); Assert.assertEquals("new", copied.get("new")); Assert.assertEquals(4, original.get("key")); } @Test public void copyUtilsTest2() { Map original = createSimpleMap("key", 2); Map innerMap = createSimpleMap("innerKey", "inner"); original.put("map", innerMap); Map copied = CopyUtils.mediumCopyMap(original); Assert.assertEquals(2, copied.get("key")); Assert.assertEquals("inner", ((Map) copied.get("map")).get("innerKey")); Assert.assertEquals(2, original.get("key")); Assert.assertEquals("inner", ((Map) original.get("map")).get("innerKey")); original.put("key", 3); copied.put("key", 4); innerMap.put("innerKey", "key"); Map copiedInnerMap = (Map) copied.get("map"); copiedInnerMap.put("test", "test"); Assert.assertEquals(4, copied.get("key")); Assert.assertEquals("inner", ((Map) copied.get("map")).get("innerKey")); Assert.assertEquals("test", ((Map) copied.get("map")).get("test")); Assert.assertEquals(3, original.get("key")); Assert.assertEquals("key", ((Map) original.get("map")).get("innerKey")); Assert.assertFalse(((Map) original.get("map")).containsKey("test")); } private Map createSimpleMap(Object key, Object value) { Map map = new HashMap(); map.put(key, value); return map; } }