Java tutorial
/* * Copyright 2002-2015 SCOOP Software GmbH * * Licensed 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.copperengine.core.test.persistent; import javax.sql.DataSource; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.ConfigurableApplicationContext; public class MySqlSpringTxnPersistentWorkflowTest extends BaseSpringTxnPersistentWorkflowTest { private static final String DS_CONTEXT = "/datasources/datasource-mysql.xml"; private static final Logger logger = LoggerFactory.getLogger(MySqlPersistentWorkflowTest.class); private static boolean dbmsAvailable = false; static { if (Boolean.getBoolean(Constants.SKIP_EXTERNAL_DB_TESTS_KEY)) { dbmsAvailable = true; } else { ConfigurableApplicationContext context = null; try { context = new MySqlSpringTxnPersistentWorkflowTest().createContext(DS_CONTEXT); DataSource ds = context.getBean(DataSource.class); ds.setLoginTimeout(10); ds.getConnection(); dbmsAvailable = true; } catch (Exception e) { logger.error("MySql not available! Skipping MySql unit tests.", e); e.printStackTrace(); } finally { try { if (context != null) context.close(); } catch (Exception e) { // ignore } } } } @Override protected boolean skipTests() { return Boolean.getBoolean(Constants.SKIP_EXTERNAL_DB_TESTS_KEY) || !dbmsAvailable; } @Test public void testAsynchResponse() throws Exception { super.testAsynchResponse(DS_CONTEXT); } @Test public void testAsynchResponseLargeData() throws Exception { super.testAsynchResponseLargeData(DS_CONTEXT, 65536); } @Test public void testWithConnection() throws Exception { super.testWithConnection(DS_CONTEXT); } @Test public void testWithConnectionBulkInsert() throws Exception { super.testWithConnectionBulkInsert(DS_CONTEXT); } @Test public void testTimeouts() throws Exception { super.testTimeouts(DS_CONTEXT); } @Test public void testErrorHandlingInCoreEngine() throws Exception { super.testErrorHandlingInCoreEngine(DS_CONTEXT); } @Test public void testParentChildWorkflow() throws Exception { super.testParentChildWorkflow(DS_CONTEXT); } @Test public void testErrorKeepWorkflowInstanceInDB() throws Exception { super.testErrorKeepWorkflowInstanceInDB(DS_CONTEXT); } @Test public void testAuditTrailUncompressed() throws Exception { super.testAuditTrailUncompressed(DS_CONTEXT); } @Test public void testErrorHandlingWithWaitHook() throws Exception { super.testErrorHandlingWithWaitHook(DS_CONTEXT); } @Test public void testSpringTxnUnitTestWorkflow() throws Exception { super.testSpringTxnUnitTestWorkflow(DS_CONTEXT); } @Test public void testAutoCommit() throws Exception { super.testAutoCommit(DS_CONTEXT); } @Test public void testFailOnDuplicateInsert() throws Exception { super.testFailOnDuplicateInsert(DS_CONTEXT); } }