/* * 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.loaders.jdbc.stringbased; import static org.mockito.Mockito.*; import org.infinispan.loaders.BaseCacheStoreTest; import org.infinispan.loaders.CacheLoaderException; import org.infinispan.loaders.CacheStore; import org.infinispan.loaders.jdbc.TableManipulation; import org.infinispan.loaders.jdbc.connectionfactory.ConnectionFactory; import org.infinispan.loaders.jdbc.connectionfactory.ConnectionFactoryConfig; import org.infinispan.loaders.keymappers.UnsupportedKeyTypeException; import org.infinispan.test.fwk.UnitTestDatabaseManager; import org.infinispan.CacheImpl; import org.testng.annotations.Test; /** * Tester class for {@link org.infinispan.loaders.jdbc.stringbased.JdbcStringBasedCacheStore}. * * @author Mircea.Markus@jboss.com */ @Test(groups = "functional", testName = "loaders.jdbc.stringbased.JdbcStringBasedCacheStoreTest") public class JdbcStringBasedCacheStoreTest extends BaseCacheStoreTest { @Override protected CacheStore createCacheStore() throws Exception { ConnectionFactoryConfig connectionFactoryConfig = UnitTestDatabaseManager.getUniqueConnectionFactoryConfig(); TableManipulation tm = UnitTestDatabaseManager.buildDefaultTableManipulation(); JdbcStringBasedCacheStoreConfig config = new JdbcStringBasedCacheStoreConfig(connectionFactoryConfig, tm); JdbcStringBasedCacheStore stringBasedCacheStore = new JdbcStringBasedCacheStore(); CacheImpl cache = new CacheImpl("aName"); stringBasedCacheStore.init(config, cache, getMarshaller()); stringBasedCacheStore.start(); return stringBasedCacheStore; } public void testNotCreateConnectionFactory() throws Exception { JdbcStringBasedCacheStore stringBasedCacheStore = new JdbcStringBasedCacheStore(); JdbcStringBasedCacheStoreConfig config = new JdbcStringBasedCacheStoreConfig(false); config.setCreateTableOnStart(false); stringBasedCacheStore.init(config, new CacheImpl("otherName"), getMarshaller()); stringBasedCacheStore.start(); assert stringBasedCacheStore.getConnectionFactory() == null; // this will make sure that if a method like stop is called on the connection then it will barf an exception ConnectionFactory connectionFactory = mock(ConnectionFactory.class); TableManipulation tableManipulation = mock(TableManipulation.class); config.setTableManipulation(tableManipulation); tableManipulation.start(connectionFactory); tableManipulation.setCacheName("otherName"); stringBasedCacheStore.doConnectionFactoryInitialization(connectionFactory); //stop should be called even if this is an external reset(tableManipulation, connectionFactory); tableManipulation.stop(); stringBasedCacheStore.stop(); } @Override @Test(expectedExceptions = UnsupportedKeyTypeException.class) public void testLoadAndStoreMarshalledValues() throws CacheLoaderException { super.testLoadAndStoreMarshalledValues(); } }