Java tutorial
/** * Copyright 2010-2015 the original author or authors. * * 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.mybatis.spring; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; import java.sql.SQLException; import org.apache.ibatis.session.ExecutorType; import org.apache.ibatis.session.SqlSession; import org.junit.BeforeClass; import org.junit.Test; import org.springframework.dao.DataAccessException; import org.springframework.jdbc.datasource.DataSourceTransactionManager; import org.springframework.transaction.TransactionStatus; import org.springframework.transaction.support.DefaultTransactionDefinition; import org.springframework.transaction.support.TransactionSynchronizationManager; // tests basic usage and implementation only // MapperFactoryBeanTest handles testing the transactional functions in SqlSessionTemplate public class SqlSessionTemplateTest extends AbstractMyBatisSpringTest { private static SqlSession sqlSessionTemplate; @BeforeClass public static void setupSqlTemplate() { sqlSessionTemplate = new SqlSessionTemplate(sqlSessionFactory); } @Test public void testGetConnection() throws java.sql.SQLException { java.sql.Connection con = sqlSessionTemplate.getConnection(); // outside of an explicit tx, getConnection() will start a tx, get an open connection then // end the tx, which closes the connection assertTrue(con.isClosed()); } @Test public void testGetConnectionInTx() throws java.sql.SQLException { TransactionStatus status = null; try { status = txManager.getTransaction(new DefaultTransactionDefinition()); java.sql.Connection con = sqlSessionTemplate.getConnection(); assertFalse(con.isClosed()); } finally { // rollback required to close connection txManager.rollback(status); } } @Test(expected = UnsupportedOperationException.class) public void testCommit() throws SQLException { try { sqlSessionTemplate.commit(); } finally { connection.close(); } } @Test(expected = UnsupportedOperationException.class) public void testClose() throws SQLException { try { sqlSessionTemplate.close(); } finally { connection.close(); } } @Test(expected = UnsupportedOperationException.class) public void testRollback() throws SQLException { try { sqlSessionTemplate.rollback(); } finally { connection.close(); } } @Test public void testExecutorType() { SqlSessionTemplate template = new SqlSessionTemplate(sqlSessionFactory, ExecutorType.BATCH); assertEquals(ExecutorType.BATCH, template.getExecutorType()); DataSourceTransactionManager manager = new DataSourceTransactionManager(dataSource); TransactionStatus status = null; try { status = manager.getTransaction(new DefaultTransactionDefinition()); // will synchronize the template with the current tx template.getConnection(); SqlSessionHolder holder = (SqlSessionHolder) TransactionSynchronizationManager .getResource(sqlSessionFactory); assertEquals(ExecutorType.BATCH, holder.getExecutorType()); } finally { // rollback required to close connection txManager.rollback(status); } } @Test public void testExceptionTranslationShouldThrowMyBatisSystemException() throws SQLException { try { sqlSessionTemplate.selectOne("undefined"); fail("exception not thrown when expected"); } catch (MyBatisSystemException mbse) { // success } catch (Throwable t) { fail("SqlSessionTemplate should translate MyBatis PersistenceExceptions"); } finally { connection.close(); // the template do not open the connection so it do not close it } } @Test public void testExceptionTranslationShouldThrowDataAccessException() { // this query must be the same as the query in TestMapper.xml connection.getPreparedStatementResultSetHandler().prepareThrowsSQLException("SELECT 'fail'"); try { sqlSessionTemplate.selectOne("org.mybatis.spring.TestMapper.findFail"); fail("exception not thrown when expected"); } catch (MyBatisSystemException mbse) { fail("SqlSessionTemplate should translate SQLExceptions into DataAccessExceptions"); } catch (DataAccessException dae) { // success } catch (Throwable t) { fail("SqlSessionTemplate should translate MyBatis PersistenceExceptions"); } } @Test public void testTemplateWithNoTxInsert() { sqlSessionTemplate.getMapper(TestMapper.class).insertTest("test1"); assertCommitJdbc(); assertCommitSession(); } @Test public void testTemplateWithNoTxSelect() { sqlSessionTemplate.getMapper(TestMapper.class).findTest(); assertCommit(); } @Test public void testWithTxRequired() { DefaultTransactionDefinition txDef = new DefaultTransactionDefinition(); txDef.setPropagationBehaviorName("PROPAGATION_REQUIRED"); TransactionStatus status = txManager.getTransaction(txDef); sqlSessionTemplate.getMapper(TestMapper.class).findTest(); txManager.commit(status); assertCommit(); assertSingleConnection(); } }