/* * Copyright (c) 2010 Lockheed Martin Corporation * * 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.eurekastreams.server.persistence.mappers.cache; import static junit.framework.Assert.assertEquals; import org.eurekastreams.server.persistence.mappers.cache.testhelpers.SimpleMemoryCache; import org.junit.Before; import org.junit.Test; /** * * */ public class SetKeyedSingleValueCacheMapperTest { /** Test data. */ private static final String KEY_PREFIX = "MyPrefix:"; /** Test data. */ private static final Integer KEY_VALUE = 42; /** Test data. */ private static final String CACHE_KEY = KEY_PREFIX + KEY_VALUE; /** Test data. */ private static final String CACHE_DATA = "Item1Value"; /** Fixture: cache. */ private SimpleMemoryCache cache; /** SUT. */ private SetKeyedSingleValueCacheMapper<Integer, String> sut; /** * Setup before each test. */ @Before public void setUp() { cache = new SimpleMemoryCache(); sut = new SetKeyedSingleValueCacheMapper<Integer, String>(KEY_PREFIX); sut.setCache(cache); } /** * Tests refreshing. */ @Test public void testRefreshNew() { sut.refresh(KEY_VALUE, CACHE_DATA); assertEquals(CACHE_DATA, cache.get(CACHE_KEY)); } /** * Tests refreshing. */ @Test public void testRefreshOverwrite() { cache.set(CACHE_KEY, 4); assertEquals(4, cache.get(CACHE_KEY)); sut.refresh(KEY_VALUE, CACHE_DATA); assertEquals(CACHE_DATA, cache.get(CACHE_KEY)); } }