Package org.springframework.cache.jcache

Source Code of org.springframework.cache.jcache.JCacheCacheManagerTests$CacheManagerMock

/*
* Copyright 2002-2014 the original author or authors.
*
* 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.springframework.cache.jcache;

import java.util.ArrayList;
import java.util.List;
import javax.cache.Cache;
import javax.cache.CacheManager;

import org.junit.Before;

import org.springframework.cache.transaction.AbstractTransactionSupportingCacheManagerTests;

import static org.mockito.BDDMockito.*;

/**
* @author Stephane Nicoll
*/
public class JCacheCacheManagerTests extends AbstractTransactionSupportingCacheManagerTests<JCacheCacheManager> {

  private CacheManagerMock cacheManagerMock;
  private JCacheCacheManager cacheManager;
  private JCacheCacheManager transactionalCacheManager;

  @Before
  public void setupOnce() {
    cacheManagerMock = new CacheManagerMock();
    cacheManagerMock.addCache(CACHE_NAME);

    cacheManager = new JCacheCacheManager(cacheManagerMock.getCacheManager());
    cacheManager.setTransactionAware(false);
    cacheManager.afterPropertiesSet();

    transactionalCacheManager = new JCacheCacheManager(cacheManagerMock.getCacheManager());
    transactionalCacheManager.setTransactionAware(true);
    transactionalCacheManager.afterPropertiesSet();
  }


  @Override
  protected JCacheCacheManager getCacheManager(boolean transactionAware) {
    if (transactionAware) {
      return transactionalCacheManager;
    } else {
      return cacheManager;
    }
  }

  @Override
  protected Class<? extends org.springframework.cache.Cache> getCacheType() {
    return JCacheCache.class;
  }

  @Override
  protected void addNativeCache(String cacheName) {
    cacheManagerMock.addCache(cacheName);
  }

  @Override
  protected void removeNativeCache(String cacheName) {
    cacheManagerMock.removeCache(cacheName);
  }

  private static class CacheManagerMock {

    private final List<String> cacheNames;
    private final CacheManager cacheManager;

    private CacheManagerMock() {
      this.cacheNames = new ArrayList<String>();
      this.cacheManager = mock(CacheManager.class);
      given(cacheManager.getCacheNames()).willReturn(cacheNames);
    }

    private CacheManager getCacheManager() {
      return cacheManager;
    }

    @SuppressWarnings("unchecked")
    public void addCache(String name) {
      cacheNames.add(name);
      Cache cache = mock(Cache.class);
      given(cache.getName()).willReturn(name);
      given(cacheManager.getCache(name)).willReturn(cache);
    }

    public void removeCache(String name) {
      cacheNames.remove(name);
      given(cacheManager.getCache(name)).willReturn(null);
    }
  }
}
TOP

Related Classes of org.springframework.cache.jcache.JCacheCacheManagerTests$CacheManagerMock

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.