Package com.cetsoft.imcache.cache.coordinator

Source Code of com.cetsoft.imcache.cache.coordinator.LocalCacheCoordinatorTest

/*
* Copyright (C) 2014 Cetsoft, http://www.cetsoft.com
*
* 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.
*
* Author : Yusuf Aytas
* Date   : May 25, 2014
*/
package com.cetsoft.imcache.cache.coordinator;

import static org.junit.Assert.*;
import static org.mockito.Mockito.*;

import java.util.Map;

import org.junit.Before;
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.mockito.Spy;

import com.cetsoft.imcache.cache.Cache;
import com.cetsoft.imcache.cache.CacheType;

/**
* The Class LocalCacheCoordinatorTest.
*/
@SuppressWarnings({"rawtypes", "unchecked"})
public class LocalCacheCoordinatorTest {

  /** The cache. */
  @Mock
  Cache cache;
 
  /** The type. */
  @Mock
  CacheType type;
 
  /** The cache map. */
  @Mock
  Map<Integer, Cache> cacheMap;
 
  /** The cache factory. */
  @Mock
  CacheFactory cacheFactory;
 
  /** The cache coordinator. */
  @Spy
  LocalCacheCoordinator cacheCoordinator = new LocalCacheCoordinator();
 
  /**
   * Setup.
   */
  @Before
  public void setup(){
    MockitoAnnotations.initMocks(this);
    cacheCoordinator.cacheFactory = cacheFactory;
  }
 
  /**
   * Gets the cache.
   *
   * @return the cache
   */
  @Test
  public void getCache(){
    doReturn(1).when(type).getType();
    doReturn(cacheMap).when(cacheCoordinator).getOrCreate();
    doReturn(cache).when(cacheMap).get(anyInt());
    Cache actualCache = cacheCoordinator.getCache(type);
    assertEquals(cache, actualCache);
  }
 
  /**
   * Gets the cache creates cache.
   *
   * @return the cache creates cache
   */
  @Test
  public void getCacheCreatesCache(){
    doReturn(1).when(type).getType();
    doReturn(cacheMap).when(cacheCoordinator).getOrCreate();
    doReturn(null).when(cacheMap).get(anyInt());
    doReturn(cache).when(cacheFactory).create();
    doNothing().when(cacheCoordinator).addCache(type, cache);
    Cache actualCache = cacheCoordinator.getCache(type);
    verify(cacheCoordinator).addCache(type, cache);
    assertEquals(cache, actualCache);
  }
 
  /**
   * Adds the cache.
   */
  @Test
  public void addCache(){
    doReturn(1).when(type).getType();
    doReturn(cacheMap).when(cacheCoordinator).getOrCreate();
    doReturn(null).when(cacheMap).put(1, cache);
    cacheCoordinator.addCache(type, cache);
    verify(cacheCoordinator).getOrCreate();
    verify(cacheMap).put(1, cache);
  }
 
  /**
   * Gets the or create.
   *
   * @return the or create
   */
  @Test
  public void getOrCreate(){
    Map<Integer, Cache> expectedMap = cacheCoordinator.getOrCreate();
    Map<Integer, Cache> actualMap = cacheCoordinator.getOrCreate();
    assertEquals(expectedMap, actualMap);
  }
}
TOP

Related Classes of com.cetsoft.imcache.cache.coordinator.LocalCacheCoordinatorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.