/* * Bitronix Transaction Manager * * Copyright (c) 2010, Bitronix Software. * * This copyrighted material is made available to anyone wishing to use, modify, * copy, or redistribute it subject to the terms and conditions of the GNU * Lesser General Public License, as published by the Free Software Foundation. * * This program 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 distribution; if not, write to: * Free Software Foundation, Inc. * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301 USA */ package bitronix.tm.mock; import bitronix.tm.TransactionManagerServices; import bitronix.tm.mock.resource.jdbc.MockitoXADataSource; import bitronix.tm.recovery.RecoveryException; import bitronix.tm.resource.common.XAPool; import bitronix.tm.resource.jdbc.PoolingDataSource; import junit.framework.TestCase; import javax.sql.DataSource; import javax.sql.XADataSource; import javax.transaction.TransactionManager; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.sql.CallableStatement; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; import java.sql.Statement; /** * * @author lorban */ public class JdbcPoolTest extends TestCase { private PoolingDataSource pds; protected void setUp() throws Exception { TransactionManagerServices.getConfiguration().setJournal("null").setGracefulShutdownInterval(0); TransactionManagerServices.getTransactionManager(); MockitoXADataSource.setStaticCloseXAConnectionException(null); MockitoXADataSource.setStaticGetXAConnectionException(null); pds = new PoolingDataSource(); pds.setMinPoolSize(1); pds.setMaxPoolSize(2); pds.setMaxIdleTime(1); pds.setClassName(MockitoXADataSource.class.getName()); pds.setUniqueName("pds"); pds.setAllowLocalTransactions(true); pds.setAcquisitionTimeout(1); pds.init(); } protected void tearDown() throws Exception { pds.close(); TransactionManagerServices.getTransactionManager().shutdown(); } public void testInitFailure() throws Exception { pds.close(); pds = new PoolingDataSource(); pds.setMinPoolSize(0); pds.setMaxPoolSize(2); pds.setMaxIdleTime(1); pds.setClassName(MockitoXADataSource.class.getName()); pds.setUniqueName("pds"); pds.setAllowLocalTransactions(true); pds.setAcquisitionTimeout(1); TransactionManagerServices.getTransactionManager().begin(); MockitoXADataSource.setStaticGetXAConnectionException(new SQLException("not yet started")); try { pds.init(); } catch (Exception e) { } MockitoXADataSource.setStaticGetXAConnectionException(null); pds.init(); pds.getConnection().prepareStatement(""); TransactionManagerServices.getTransactionManager().commit(); } public void testReEnteringRecovery() throws Exception { pds.startRecovery(); try { pds.startRecovery(); fail("expected RecoveryException"); } catch (RecoveryException ex) { assertEquals("recovery already in progress on a PoolingDataSource containing an XAPool of resource pds with 1 connection(s) (0 still available)", ex.getMessage()); } // make sure startRecovery() can be called again once endRecovery() has been called pds.endRecovery(); pds.startRecovery(); pds.endRecovery(); } public void testPoolGrowth() throws Exception { Field poolField = pds.getClass().getDeclaredField("pool"); poolField.setAccessible(true); XAPool pool = (XAPool) poolField.get(pds); assertEquals(1, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c1 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c2 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(2, pool.totalPoolSize()); try { pds.getConnection(); fail("should not be able to get a 3rd connection"); } catch (SQLException ex) { assertEquals("unable to get a connection from pool of a PoolingDataSource containing an XAPool of resource pds with 2 connection(s) (0 still available)", ex.getMessage()); } c1.close(); c2.close(); assertEquals(2, pool.inPoolSize()); assertEquals(2, pool.totalPoolSize()); } public void testPoolShrink() throws Exception { Field poolField = pds.getClass().getDeclaredField("pool"); poolField.setAccessible(true); XAPool pool = (XAPool) poolField.get(pds); assertEquals(1, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c1 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c2 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(2, pool.totalPoolSize()); c1.close(); c2.close(); Thread.sleep(1100); // leave enough time for the ide connections to expire TransactionManagerServices.getTaskScheduler().interrupt(); // wake up the task scheduler Thread.sleep(1100); // leave enough time for the scheduled shrinking task to do its work assertEquals(1, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); } public void testPoolShrinkErrorHandling() throws Exception { Field poolField = pds.getClass().getDeclaredField("pool"); poolField.setAccessible(true); XAPool pool = (XAPool) poolField.get(pds); pds.setMinPoolSize(0); pds.reset(); pds.setMinPoolSize(1); MockitoXADataSource.setStaticCloseXAConnectionException(new SQLException("close fails because datasource broken")); pds.reset(); // the pool is now loaded with one connection which will throw an exception when closed Thread.sleep(1100); // leave enough time for the ide connections to expire TransactionManagerServices.getTaskScheduler().interrupt(); // wake up the task scheduler Thread.sleep(100); // leave enough time for the scheduled shrinking task to do its work assertEquals(1, pool.inPoolSize()); MockitoXADataSource.setStaticGetXAConnectionException(new SQLException("getXAConnection fails because datasource broken")); Thread.sleep(1100); // leave enough time for the ide connections to expire TransactionManagerServices.getTaskScheduler().interrupt(); // wake up the task scheduler Thread.sleep(100); // leave enough time for the scheduled shrinking task to do its work assertEquals(0, pool.inPoolSize()); MockitoXADataSource.setStaticGetXAConnectionException(null); Thread.sleep(1100); // leave enough time for the ide connections to expire TransactionManagerServices.getTaskScheduler().interrupt(); // wake up the task scheduler Thread.sleep(100); // leave enough time for the scheduled shrinking task to do its work assertEquals(1, pool.inPoolSize()); } public void testPoolReset() throws Exception { Field poolField = pds.getClass().getDeclaredField("pool"); poolField.setAccessible(true); XAPool pool = (XAPool) poolField.get(pds); assertEquals(1, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c1 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); Connection c2 = pds.getConnection(); assertEquals(0, pool.inPoolSize()); assertEquals(2, pool.totalPoolSize()); c1.close(); c2.close(); pds.reset(); assertEquals(1, pool.inPoolSize()); assertEquals(1, pool.totalPoolSize()); } public void testPoolResetErrorHandling() throws Exception { Field poolField = pds.getClass().getDeclaredField("pool"); poolField.setAccessible(true); XAPool pool = (XAPool) poolField.get(pds); pds.setMinPoolSize(0); pds.reset(); pds.setMinPoolSize(1); MockitoXADataSource.setStaticCloseXAConnectionException(new SQLException("close fails because datasource broken")); pds.reset(); // the pool is now loaded with one connection which will throw an exception when closed pds.reset(); try { MockitoXADataSource.setStaticGetXAConnectionException(new SQLException("getXAConnection fails because datasource broken")); pds.reset(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("getXAConnection fails because datasource broken", ex.getMessage()); assertEquals(0, pool.inPoolSize()); } MockitoXADataSource.setStaticGetXAConnectionException(null); pds.reset(); assertEquals(1, pool.inPoolSize()); } public void testCloseLocalContext() throws Exception { Connection c = pds.getConnection(); Statement stmt = c.createStatement(); stmt.close(); c.close(); assertTrue(c.isClosed()); try { c.createStatement(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } } public void testCloseGlobalContextRecycle() throws Exception { TransactionManager tm = TransactionManagerServices.getTransactionManager(); tm.begin(); Connection c1 = pds.getConnection(); c1.createStatement(); c1.close(); assertTrue(c1.isClosed()); try { c1.createStatement(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } Connection c2 = pds.getConnection(); c2.createStatement(); try { c2.commit(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("cannot commit a resource enlisted in a global transaction", ex.getMessage()); } tm.commit(); assertFalse(c2.isClosed()); c2.close(); assertTrue(c2.isClosed()); try { c2.createStatement(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } try { c2.commit(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } } public void testCloseGlobalContextNoRecycle() throws Exception { TransactionManager tm = TransactionManagerServices.getTransactionManager(); tm.begin(); Connection c1 = pds.getConnection(); Connection c2 = pds.getConnection(); c1.createStatement(); c1.close(); assertTrue(c1.isClosed()); try { c1.createStatement(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } c2.createStatement(); try { c2.commit(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("cannot commit a resource enlisted in a global transaction", ex.getMessage()); } tm.commit(); assertFalse(c2.isClosed()); c2.close(); assertTrue(c2.isClosed()); try { c2.createStatement(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } try { c2.commit(); fail("expected SQLException"); } catch (SQLException ex) { assertEquals("connection handle already closed", ex.getMessage()); } } public void testPoolNotStartingTransactionManager() throws Exception { // make sure TM is not running TransactionManagerServices.getTransactionManager().shutdown(); PoolingDataSource pds = new PoolingDataSource(); pds.setMinPoolSize(1); pds.setMaxPoolSize(2); pds.setMaxIdleTime(1); pds.setClassName(MockitoXADataSource.class.getName()); pds.setUniqueName("pds2"); pds.setAllowLocalTransactions(true); pds.setAcquisitionTimeout(1); pds.init(); assertFalse(TransactionManagerServices.isTransactionManagerRunning()); Connection c = pds.getConnection(); Statement stmt = c.createStatement(); stmt.close(); c.close(); assertFalse(TransactionManagerServices.isTransactionManagerRunning()); pds.close(); assertFalse(TransactionManagerServices.isTransactionManagerRunning()); } public void testWrappers() throws Exception { try { Connection.class.getMethod("isWrapperFor"); } catch (NoSuchMethodException e) { // if there is no such method this means the JVM is running with pre-JDBC4 classes // so this test becomes pointless and must be skipped return; } // XADataSource assertTrue(pds.isWrapperFor(XADataSource.class)); assertFalse(pds.isWrapperFor(DataSource.class)); XADataSource unwrappedXads = (XADataSource) pds.unwrap(XADataSource.class); assertEquals(MockitoXADataSource.class.getName(), unwrappedXads.getClass().getName()); // Connection Connection c = pds.getConnection(); assertTrue(isWrapperFor(c, Connection.class)); Connection unwrappedConnection = (Connection) unwrap(c, Connection.class); assertTrue(unwrappedConnection.getClass().getName().contains("java.sql.Connection") && unwrappedConnection.getClass().getName().contains("EnhancerByMockito")); // Statement Statement stmt = c.createStatement(); assertTrue(isWrapperFor(stmt, Statement.class)); Statement unwrappedStmt = (Statement) unwrap(stmt, Statement.class); assertTrue(unwrappedStmt.getClass().getName().contains("java.sql.Statement") && unwrappedStmt.getClass().getName().contains("EnhancerByMockito")); // PreparedStatement PreparedStatement pstmt = c.prepareStatement("mock sql"); assertTrue(isWrapperFor(pstmt, PreparedStatement.class)); Statement unwrappedPStmt = (Statement) unwrap(pstmt, PreparedStatement.class); assertTrue(unwrappedPStmt.getClass().getName().contains("java.sql.PreparedStatement") && unwrappedPStmt.getClass().getName().contains("EnhancerByMockito")); // CallableStatement CallableStatement cstmt = c.prepareCall("mock stored proc"); assertTrue(isWrapperFor(cstmt, CallableStatement.class)); Statement unwrappedCStmt = (Statement) unwrap(cstmt, CallableStatement.class); assertTrue(unwrappedCStmt.getClass().getName().contains("java.sql.CallableStatement") && unwrappedCStmt.getClass().getName().contains("EnhancerByMockito")); } private static boolean isWrapperFor(Object obj, Class param) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { Method isWrapperForMethod = obj.getClass().getMethod("isWrapperFor", Class.class); return (Boolean) isWrapperForMethod.invoke(obj, param); } private static Object unwrap(Object obj, Class param) throws NoSuchMethodException, InvocationTargetException, IllegalAccessException { Method unwrapMethod = obj.getClass().getMethod("unwrap", Class.class); return unwrapMethod.invoke(obj, param); } }