/* * Copyright 2008-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.kaleidofoundry.core.cache; import static org.kaleidofoundry.core.cache.CacheManagerIntegrationTest.assertions; import java.util.Map; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.kaleidofoundry.core.config.NamedConfiguration; import org.kaleidofoundry.core.launcher.KaleidoJunit4ClassRunner; /** * @author jraduget */ @RunWith(KaleidoJunit4ClassRunner.class) @NamedConfiguration(name = "myConfig", uri = "classpath:/cache/myContext.properties") public class CacheIntegrationTest extends Assert { @Test public void testSample01() { CacheSample01 cache = new CacheSample01(); assertNotNull(cache); cache.echo(); assertSame(cache.getMyCache(), cache.getMyCache()); assertions(cache.getMyCache()); assertEquals("CacheSample01", cache.getMyCache().getName()); assertTrue(cache.getMyCache().getDelegate() instanceof net.sf.ehcache.Cache); } @Test public void testSample02() { CacheSample02 cache = new CacheSample02(); assertNotNull(cache); cache.echo(); assertSame(cache.getMyCache(), cache.getMyCache()); assertions(cache.getMyCache()); assertEquals("CacheSample02", cache.getMyCache().getName()); System.out.println(cache.getMyCache().getDelegate().getClass().getName()); assertTrue(cache.getMyCache().getDelegate() instanceof Map<?, ?>); } @Test public void testSample03() { CacheSample03 cache = new CacheSample03(); assertNotNull(cache); cache.echo(); assertSame(cache.getMyCache(), cache.getMyCache()); assertions(cache.getMyCache()); assertEquals("CacheSample03", cache.getMyCache().getName()); System.out.println(cache.getMyCache().getDelegate().getClass().getName()); assertTrue(cache.getMyCache().getDelegate() instanceof net.sf.ehcache.Cache); } @Test public void testSample04() { CacheSample04 cache = new CacheSample04(); assertNotNull(cache); cache.echo(); assertSame(cache.getMyCache(), cache.getMyCache()); assertions(cache.getMyCache()); assertEquals("CacheSample04", cache.getMyCache().getName()); System.out.println(cache.getMyCache().getDelegate().getClass().getName()); assertTrue(cache.getMyCache().getDelegate() instanceof net.sf.ehcache.Cache); } }