/** * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * ~ * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.spring.provider; import static org.testng.AssertJUnit.assertEquals; import static org.testng.AssertJUnit.assertFalse; import static org.testng.AssertJUnit.assertNotNull; import static org.testng.AssertJUnit.assertSame; import static org.testng.AssertJUnit.assertTrue; import java.io.IOException; import org.infinispan.client.hotrod.RemoteCacheManager; import org.infinispan.client.hotrod.TestHelper; import org.infinispan.manager.EmbeddedCacheManager; import org.infinispan.server.hotrod.HotRodServer; import org.infinispan.server.hotrod.test.HotRodTestingUtil; import org.infinispan.test.SingleCacheManagerTest; import org.infinispan.test.fwk.TestCacheManagerFactory; import org.springframework.cache.Cache; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; /** * <p> * Test {@link SpringRemoteCacheManager}. * </p> * * @author <a href="mailto:olaf DOT bergner AT gmx DOT de">Olaf Bergner</a> * @author Marius Bogoevici * */ @Test(testName = "spring.provider.SpringRemoteCacheManagerTest", groups = "functional") public class SpringRemoteCacheManagerTest extends SingleCacheManagerTest { private static final String TEST_CACHE_NAME = "spring.remote.cache.manager.Test"; private RemoteCacheManager remoteCacheManager; private HotRodServer hotrodServer; @Override protected EmbeddedCacheManager createCacheManager() throws Exception { cacheManager = TestCacheManagerFactory.createLocalCacheManager(false); cache = cacheManager.getCache(TEST_CACHE_NAME); return cacheManager; } @BeforeClass public void setupRemoteCacheFactory() { hotrodServer = HotRodTestingUtil.startHotRodServer(cacheManager, 19722); remoteCacheManager = new RemoteCacheManager("localhost", hotrodServer.getPort()); } @AfterClass public void destroyRemoteCacheFactory() { remoteCacheManager.stop(); hotrodServer.stop(); } /** * Test method for * {@link org.infinispan.spring.provider.SpringRemoteCacheManager#SpringRemoteCacheManager(org.infinispan.client.hotrod.RemoteCacheManager)} * . */ @Test(expectedExceptions = IllegalArgumentException.class) public final void springRemoteCacheManagerConstructorShouldRejectNullRemoteCacheManager() { new SpringRemoteCacheManager(null); } /** * Test method for * {@link org.infinispan.spring.provider.SpringRemoteCacheManager#getCache(java.lang.String)}. */ @Test public final void springRemoteCacheManagerShouldProperlyCreateCache() { final SpringRemoteCacheManager objectUnderTest = new SpringRemoteCacheManager( remoteCacheManager); final Cache defaultCache = objectUnderTest.getCache(TEST_CACHE_NAME); assertNotNull("getCache(" + TEST_CACHE_NAME + ") should have returned a default cache. However, it returned null.", defaultCache); assertEquals("getCache(" + TEST_CACHE_NAME + ") should have returned a cache name \"" + TEST_CACHE_NAME + "\". However, the returned cache has a different name.", TEST_CACHE_NAME, defaultCache.getName()); } /** * Test method for * {@link org.infinispan.spring.provider.SpringRemoteCacheManager#getCacheNames()}. */ @Test(expectedExceptions = UnsupportedOperationException.class) public final void getCacheNamesShouldThrowAnUnsupportedOperationException() { final RemoteCacheManager nativeCacheManager = new RemoteCacheManager(true); final SpringRemoteCacheManager objectUnderTest = new SpringRemoteCacheManager( nativeCacheManager); nativeCacheManager.stop(); objectUnderTest.getCacheNames(); } /** * Test method for {@link org.infinispan.spring.provider.SpringRemoteCacheManager#start()}. * * @throws IOException */ @Test public final void startShouldStartTheNativeRemoteCacheManager() throws IOException { final RemoteCacheManager nativeCacheManager = new RemoteCacheManager(true); final SpringRemoteCacheManager objectUnderTest = new SpringRemoteCacheManager( nativeCacheManager); objectUnderTest.start(); assertTrue("Calling start() on SpringRemoteCacheManager should start the enclosed " + "Infinispan RemoteCacheManager. However, it is still not running.", nativeCacheManager.isStarted()); } /** * Test method for {@link org.infinispan.spring.provider.SpringRemoteCacheManager#stop()}. * * @throws IOException */ @Test public final void stopShouldStopTheNativeRemoteCacheManager() throws IOException { final RemoteCacheManager nativeCacheManager = new RemoteCacheManager(true); final SpringRemoteCacheManager objectUnderTest = new SpringRemoteCacheManager( nativeCacheManager); objectUnderTest.stop(); assertFalse("Calling stop() on SpringRemoteCacheManager should stop the enclosed " + "Infinispan RemoteCacheManager. However, it is still running.", nativeCacheManager.isStarted()); } /** * Test method for * {@link org.infinispan.spring.provider.SpringRemoteCacheManager#getNativeCache()}. * * @throws IOException */ @Test public final void getNativeCacheShouldReturnTheRemoteCacheManagerSuppliedAtConstructionTime() throws IOException { final RemoteCacheManager nativeCacheManager = new RemoteCacheManager(true); final SpringRemoteCacheManager objectUnderTest = new SpringRemoteCacheManager( nativeCacheManager); final RemoteCacheManager nativeCacheManagerReturned = objectUnderTest.getNativeCacheManager(); assertSame( "getNativeCacheManager() should have returned the RemoteCacheManager supplied at construction time. However, it retuned a different one.", nativeCacheManager, nativeCacheManagerReturned); } }