Package org.springframework.cache.ehcache

Source Code of org.springframework.cache.ehcache.EhCacheCacheManagerTests

/*
* 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.ehcache;

import net.sf.ehcache.CacheManager;
import net.sf.ehcache.config.CacheConfiguration;
import net.sf.ehcache.config.Configuration;
import org.junit.After;
import org.junit.Before;

import org.springframework.cache.transaction.AbstractTransactionSupportingCacheManagerTests;

/**
* @author Stephane Nicoll
*/
public class EhCacheCacheManagerTests extends AbstractTransactionSupportingCacheManagerTests<EhCacheCacheManager> {

  private CacheManager nativeCacheManager;
  private EhCacheCacheManager cacheManager;
  private EhCacheCacheManager transactionalCacheManager;

  @Before
  public void setup() {
    nativeCacheManager = new CacheManager(new Configuration().name("EhCacheCacheManagerTests")
        .defaultCache(new CacheConfiguration("default", 100)));
    addNativeCache(CACHE_NAME);

    cacheManager = new EhCacheCacheManager(nativeCacheManager);
    cacheManager.setTransactionAware(false);
    cacheManager.afterPropertiesSet();

    transactionalCacheManager = new EhCacheCacheManager(nativeCacheManager);
    transactionalCacheManager.setTransactionAware(true);
    transactionalCacheManager.afterPropertiesSet();
  }

  @After
  public void tearDown() {
    nativeCacheManager.shutdown();
  }


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

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

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

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

Related Classes of org.springframework.cache.ehcache.EhCacheCacheManagerTests

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.