Stephane Nicoll
9 years ago
3 changed files with 114 additions and 4 deletions
@ -0,0 +1,68 @@
@@ -0,0 +1,68 @@
|
||||
/* |
||||
* Copyright 2002-2015 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 javax.cache.Cache; |
||||
import javax.cache.CacheManager; |
||||
import javax.cache.Caching; |
||||
import javax.cache.configuration.MutableConfiguration; |
||||
import javax.cache.spi.CachingProvider; |
||||
|
||||
import org.junit.After; |
||||
import org.junit.Before; |
||||
|
||||
import org.springframework.cache.AbstractCacheTests; |
||||
|
||||
/** |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
public class JCacheEhCacheTests extends AbstractCacheTests<JCacheCache> { |
||||
|
||||
private CacheManager cacheManager; |
||||
|
||||
private Cache<Object, Object> nativeCache; |
||||
|
||||
private JCacheCache cache; |
||||
|
||||
@Before |
||||
public void setUp() { |
||||
this.cacheManager = getCachingProvider().getCacheManager(); |
||||
this.cacheManager.createCache(CACHE_NAME, new MutableConfiguration<>()); |
||||
this.nativeCache = this.cacheManager.getCache(CACHE_NAME); |
||||
this.cache = new JCacheCache(this.nativeCache); |
||||
} |
||||
|
||||
@After |
||||
public void shutdownCacheManager() { |
||||
this.cacheManager.close(); |
||||
} |
||||
|
||||
@Override |
||||
protected JCacheCache getCache() { |
||||
return this.cache; |
||||
} |
||||
|
||||
@Override |
||||
protected Object getNativeCache() { |
||||
return this.nativeCache; |
||||
} |
||||
|
||||
protected CachingProvider getCachingProvider() { |
||||
return Caching.getCachingProvider(); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,35 @@
@@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright 2002-2015 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 javax.cache.Caching; |
||||
import javax.cache.spi.CachingProvider; |
||||
|
||||
/** |
||||
* Just here to be run against EHCache 3, whereas the original JCacheEhCacheAnnotationTests |
||||
* runs against EhCache 2.x with the EhCache-JCache add-on. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
public class JCacheEhcache3Tests extends JCacheEhCacheTests { |
||||
|
||||
@Override |
||||
protected CachingProvider getCachingProvider() { |
||||
return Caching.getCachingProvider("org.ehcache.jsr107.EhcacheCachingProvider"); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue