summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache')
-rw-r--r--sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/TestUtils.java44
-rw-r--r--sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTMServiceHostRegistryTestCase.java65
-rw-r--r--sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionLogServiceTestCase.java66
-rw-r--r--sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionManagerServiceTestCase.java143
4 files changed, 318 insertions, 0 deletions
diff --git a/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/TestUtils.java b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/TestUtils.java
new file mode 100644
index 0000000000..16867e741b
--- /dev/null
+++ b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/TestUtils.java
@@ -0,0 +1,44 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.apache.tuscany.transaction.geronimo;
+
+import java.io.File;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public final class TestUtils {
+ private TestUtils() {
+ }
+
+ /**
+ * Removes log files from disk
+ */
+ public static void cleanupLog() {
+ File file = new File("transaction_1.log");
+ if (file.exists()) {
+ file.delete();
+ }
+ file = new File("transaction_2.log");
+ if (file.exists()) {
+ file.delete();
+ }
+ }
+
+}
diff --git a/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTMServiceHostRegistryTestCase.java b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTMServiceHostRegistryTestCase.java
new file mode 100644
index 0000000000..2c08871ce7
--- /dev/null
+++ b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTMServiceHostRegistryTestCase.java
@@ -0,0 +1,65 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.apache.tuscany.transaction.geronimo.jta;
+
+import java.io.File;
+import javax.transaction.TransactionManager;
+
+import junit.framework.TestCase;
+import org.apache.geronimo.transaction.manager.XidFactoryImpl;
+import org.easymock.EasyMock;
+
+import org.apache.tuscany.runtime.standalone.StandaloneRuntimeInfo;
+import org.apache.tuscany.spi.host.ResourceHostRegistry;
+import org.apache.tuscany.transaction.geronimo.TestUtils;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class GeronimoTMServiceHostRegistryTestCase extends TestCase {
+ private GeronimoTransactionManagerService service;
+ private ResourceHostRegistry registry;
+
+ public void testRegisterUnregister() throws Exception {
+ service.init();
+ service.destroy();
+ EasyMock.verify(registry);
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ TestUtils.cleanupLog();
+ registry = EasyMock.createMock(ResourceHostRegistry.class);
+ registry.registerResource(EasyMock.eq(TransactionManager.class), EasyMock.isA(TransactionManager.class));
+ registry.unregisterResource(EasyMock.eq(TransactionManager.class));
+ EasyMock.replay(registry);
+ StandaloneRuntimeInfo info = EasyMock.createMock(StandaloneRuntimeInfo.class);
+ EasyMock.expect(info.getInstallDirectory()).andReturn(new File("."));
+ EasyMock.replay(info);
+ GeronimoTransactionLogService logService = new GeronimoTransactionLogService(info, new XidFactoryImpl());
+ service = new GeronimoTransactionManagerService(registry, logService);
+ }
+
+ protected void tearDown() throws Exception {
+ super.tearDown();
+ TestUtils.cleanupLog();
+ }
+
+
+}
diff --git a/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionLogServiceTestCase.java b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionLogServiceTestCase.java
new file mode 100644
index 0000000000..6acf753d5e
--- /dev/null
+++ b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionLogServiceTestCase.java
@@ -0,0 +1,66 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.apache.tuscany.transaction.geronimo.jta;
+
+import java.io.File;
+
+import junit.framework.TestCase;
+import org.apache.geronimo.transaction.manager.XidFactoryImpl;
+import org.easymock.EasyMock;
+
+import org.apache.tuscany.runtime.standalone.StandaloneRuntimeInfo;
+import org.apache.tuscany.transaction.geronimo.TestUtils;
+
+/**
+ * @version $Rev$ $Date$
+ */
+public class GeronimoTransactionLogServiceTestCase extends TestCase {
+ private GeronimoTransactionLogService service;
+
+ public void testInitialization() throws Exception {
+ service.setBufferSizeKBytes(32);
+ service.setChecksumEnabled(true);
+ service.setFlushSleepTimeMilliseconds(3000);
+ service.setLogFileDir(".");
+ service.setLogFileExt("log");
+ service.setLogFileName("transaction");
+ service.setMaxBlocksPerFile(10000);
+ service.setMaxBuffers(1000);
+ service.setMaxLogFiles(2);
+ service.setMinBuffers(20);
+ service.setThreadsWaitingForceThreshold(1000);
+ service.init();
+ service.destroy();
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ TestUtils.cleanupLog();
+ StandaloneRuntimeInfo info = EasyMock.createMock(StandaloneRuntimeInfo.class);
+ EasyMock.expect(info.getInstallDirectory()).andReturn(new File("."));
+ EasyMock.replay(info);
+ service = new GeronimoTransactionLogService(info, new XidFactoryImpl());
+ }
+
+ protected void tearDown() throws Exception {
+ super.tearDown();
+ TestUtils.cleanupLog();
+ }
+
+}
diff --git a/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionManagerServiceTestCase.java b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionManagerServiceTestCase.java
new file mode 100644
index 0000000000..5c1fbb9008
--- /dev/null
+++ b/sandbox/old/contrib/transaction-geronimo/src/test/java/org/apache/tuscany/transaction/geronimo/jta/GeronimoTransactionManagerServiceTestCase.java
@@ -0,0 +1,143 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you 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.apache.tuscany.transaction.geronimo.jta;
+
+import java.io.File;
+import javax.transaction.RollbackException;
+import javax.transaction.Status;
+import javax.transaction.Synchronization;
+import javax.transaction.Transaction;
+
+import junit.framework.TestCase;
+import org.apache.geronimo.transaction.manager.XidFactoryImpl;
+import org.easymock.EasyMock;
+
+import org.apache.tuscany.runtime.standalone.StandaloneRuntimeInfo;
+import org.apache.tuscany.spi.host.ResourceHostRegistry;
+import org.apache.tuscany.transaction.geronimo.TestUtils;
+
+/**
+ * Sanity checks for the Geronimo Transaction Manager
+ *
+ * @version $Rev$ $Date$
+ */
+public class GeronimoTransactionManagerServiceTestCase extends TestCase {
+ private GeronimoTransactionManagerService service;
+
+ public void testBeginCommit() throws Exception {
+ service.init();
+ service.begin();
+ Transaction trx = service.getTransaction();
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.commit();
+ assertEquals(Status.STATUS_NO_TRANSACTION, trx.getStatus());
+ service.destroy();
+ }
+
+ public void testBeginRollback() throws Exception {
+ service.init();
+ service.begin();
+ Transaction trx = service.getTransaction();
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.rollback();
+ assertEquals(Status.STATUS_NO_TRANSACTION, trx.getStatus());
+ service.destroy();
+ }
+
+ public void testBeginRollbackOnly() throws Exception {
+ service.init();
+ service.begin();
+ Transaction trx = service.getTransaction();
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.setRollbackOnly();
+ assertEquals(Status.STATUS_MARKED_ROLLBACK, trx.getStatus());
+ service.rollback();
+ assertEquals(Status.STATUS_NO_TRANSACTION, trx.getStatus());
+ service.destroy();
+ }
+
+ public void testBeginRollbackOnlyBadCommit() throws Exception {
+ service.init();
+ service.begin();
+ Transaction trx = service.getTransaction();
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.setRollbackOnly();
+ assertEquals(Status.STATUS_MARKED_ROLLBACK, trx.getStatus());
+ try {
+ service.commit();
+ fail();
+ } catch (RollbackException e) {
+ // expected
+ }
+ }
+
+ public void testSuspendResume() throws Exception {
+ service.begin();
+ Transaction trx = service.getTransaction();
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ trx = service.suspend();
+ assertNull(service.getTransaction());
+ service.resume(trx);
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.commit();
+ assertEquals(Status.STATUS_NO_TRANSACTION, trx.getStatus());
+ }
+
+ public void testSynchronization() throws Exception {
+ Synchronization sync = createSynchronization();
+ service.init();
+ service.getTransactionManager();
+ service.begin();
+ Transaction trx = service.getTransaction();
+ trx.registerSynchronization(sync);
+ assertEquals(Status.STATUS_ACTIVE, trx.getStatus());
+ service.commit();
+ assertEquals(Status.STATUS_NO_TRANSACTION, trx.getStatus());
+ service.destroy();
+ EasyMock.verify(sync);
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ TestUtils.cleanupLog();
+ ResourceHostRegistry registry = EasyMock.createNiceMock(ResourceHostRegistry.class);
+ EasyMock.replay(registry);
+ StandaloneRuntimeInfo info = EasyMock.createMock(StandaloneRuntimeInfo.class);
+ EasyMock.expect(info.getInstallDirectory()).andReturn(new File("."));
+ EasyMock.replay(info);
+ GeronimoTransactionLogService logService = new GeronimoTransactionLogService(info, new XidFactoryImpl());
+ service = new GeronimoTransactionManagerService(registry, logService);
+ service.init();
+ }
+
+ protected void tearDown() throws Exception {
+ super.tearDown();
+ service.destroy();
+ TestUtils.cleanupLog();
+ }
+
+ private Synchronization createSynchronization() {
+ Synchronization sync = EasyMock.createMock(Synchronization.class);
+ sync.beforeCompletion();
+ sync.afterCompletion(EasyMock.anyInt());
+ EasyMock.replay(sync);
+ return sync;
+ }
+
+}