1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
/*
* 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 java.lang.reflect.Field;
import java.util.*;
import java.util.concurrent.atomic.AtomicReference;
import bitronix.tm.journal.Journal;
import junit.framework.TestCase;
import org.slf4j.*;
import bitronix.tm.TransactionManagerServices;
import bitronix.tm.mock.events.*;
import bitronix.tm.mock.resource.MockJournal;
import bitronix.tm.mock.resource.jdbc.MockitoXADataSource;
import bitronix.tm.resource.ResourceRegistrar;
import bitronix.tm.resource.common.*;
import bitronix.tm.resource.jdbc.*;
/**
*
* @author lorban
*/
public abstract class AbstractMockJdbcTest extends TestCase {
private final static Logger log = LoggerFactory.getLogger(AbstractMockJdbcTest.class);
protected PoolingDataSource poolingDataSource1;
protected PoolingDataSource poolingDataSource2;
protected static final int POOL_SIZE = 5;
protected static final String DATASOURCE1_NAME = "pds1";
protected static final String DATASOURCE2_NAME = "pds2";
protected void setUp() throws Exception {
Iterator it = ResourceRegistrar.getResourcesUniqueNames().iterator();
while (it.hasNext()) {
String name = (String) it.next();
ResourceRegistrar.unregister(ResourceRegistrar.get(name));
}
// DataSource1 has shared accessible connections
poolingDataSource1 = new PoolingDataSource();
poolingDataSource1.setClassName(MockitoXADataSource.class.getName());
poolingDataSource1.setUniqueName(DATASOURCE1_NAME);
poolingDataSource1.setMinPoolSize(POOL_SIZE);
poolingDataSource1.setMaxPoolSize(POOL_SIZE);
poolingDataSource1.setAllowLocalTransactions(true);
poolingDataSource1.setShareTransactionConnections(true);
poolingDataSource1.init();
// DataSource2 does not have shared accessible connections
poolingDataSource2 = new PoolingDataSource();
poolingDataSource2.setClassName(MockitoXADataSource.class.getName());
poolingDataSource2.setUniqueName(DATASOURCE2_NAME);
poolingDataSource2.setMinPoolSize(POOL_SIZE);
poolingDataSource2.setMaxPoolSize(POOL_SIZE);
poolingDataSource2.setAllowLocalTransactions(true);
poolingDataSource2.init();
// change disk journal into mock journal
Field field = TransactionManagerServices.class.getDeclaredField("journalRef");
field.setAccessible(true);
AtomicReference<Journal> journalRef = (AtomicReference<Journal>) field.get(TransactionManagerServices.class);
journalRef.set(new MockJournal());
// change connection pools into mock pools
XAPool p1 = getPool(this.poolingDataSource1);
registerPoolEventListener(p1);
XAPool p2 = getPool(this.poolingDataSource2);
registerPoolEventListener(p2);
TransactionManagerServices.getConfiguration().setGracefulShutdownInterval(2);
// start TM
TransactionManagerServices.getTransactionManager();
// clear event recorder list
EventRecorder.clear();
}
protected XAPool getPool(PoolingDataSource poolingDataSource) throws NoSuchFieldException, IllegalAccessException {
Field poolField = PoolingDataSource.class.getDeclaredField("pool");
poolField.setAccessible(true);
return (XAPool) poolField.get(poolingDataSource);
}
private void registerPoolEventListener(XAPool pool) throws Exception {
ArrayList connections = new ArrayList();
Iterator iterator = XAPoolHelper.getXAResourceHolders(pool).iterator();
while (iterator.hasNext()) {
XAStatefulHolder holder = (XAStatefulHolder) iterator.next();
JdbcConnectionHandle connectionHandle = (JdbcConnectionHandle) holder.getConnectionHandle();
JdbcPooledConnection jdbcPooledConnection = connectionHandle.getPooledConnection();
connections.add(connectionHandle);
jdbcPooledConnection.addStateChangeEventListener(new StateChangeListener() {
public void stateChanged(XAStatefulHolder source, int oldState, int newState) {
if (newState == AbstractXAResourceHolder.STATE_IN_POOL)
EventRecorder.getEventRecorder(this).addEvent(new ConnectionQueuedEvent(this, (JdbcPooledConnection) source));
if (newState == AbstractXAResourceHolder.STATE_ACCESSIBLE)
EventRecorder.getEventRecorder(this).addEvent(new ConnectionDequeuedEvent(this, (JdbcPooledConnection) source));
}
public void stateChanging(XAStatefulHolder source, int currentState, int futureState) {
}
});
}
for (int i = 0; i < connections.size(); i++) {
JdbcConnectionHandle connectionHandle = (JdbcConnectionHandle) connections.get(i);
connectionHandle.close();
}
}
protected void tearDown() throws Exception {
try {
if (log.isDebugEnabled()) log.debug("*** tearDown rollback");
TransactionManagerServices.getTransactionManager().rollback();
} catch (Exception ex) {
// ignore
}
poolingDataSource1.close();
poolingDataSource2.close();
TransactionManagerServices.getTransactionManager().shutdown();
}
public static Object getWrappedXAConnectionOf(Object pc1) throws NoSuchFieldException, IllegalAccessException {
Field f = pc1.getClass().getDeclaredField("xaConnection");
f.setAccessible(true);
return f.get(pc1);
}
}
|