/* * Copyright 2002-2008 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.springframework.jdbc.support; import java.sql.SQLException; import junit.framework.TestCase; import org.springframework.dao.ConcurrencyFailureException; import org.springframework.dao.DataAccessException; import org.springframework.dao.DataAccessResourceFailureException; import org.springframework.dao.DataIntegrityViolationException; import org.springframework.dao.TransientDataAccessResourceException; import org.springframework.jdbc.BadSqlGrammarException; import org.springframework.jdbc.UncategorizedSQLException; import org.springframework.test.AssertThrows; /** * @author Rick Evans * @author Juergen Hoeller */ public class SQLStateSQLExceptionTranslatorTests extends TestCase { private static final String REASON = "The game is afoot!"; private static final String TASK = "Counting sheep... yawn."; private static final String SQL = "select count(0) from t_sheep where over_fence = ... yawn... 1"; public void testTranslateNullException() throws Exception { new AssertThrows(IllegalArgumentException.class) { public void test() throws Exception { new SQLStateSQLExceptionTranslator().translate("", "", null); } }.runTest(); } public void testTranslateBadSqlGrammar() throws Exception { doTest("07", BadSqlGrammarException.class); } public void testTranslateDataIntegrityViolation() throws Exception { doTest("23", DataIntegrityViolationException.class); } public void testTranslateDataAccessResourceFailure() throws Exception { doTest("53", DataAccessResourceFailureException.class); } public void testTranslateTransientDataAccessResourceFailure() throws Exception { doTest("S1", TransientDataAccessResourceException.class); } public void testTranslateConcurrencyFailure() throws Exception { doTest("40", ConcurrencyFailureException.class); } public void testTranslateUncategorized() throws Exception { doTest("00000000", UncategorizedSQLException.class); } private void doTest(String sqlState, Class dataAccessExceptionType) { SQLException ex = new SQLException(REASON, sqlState); SQLExceptionTranslator translator = new SQLStateSQLExceptionTranslator(); DataAccessException dax = translator.translate(TASK, SQL, ex); assertNotNull("Translation must *never* result in a null DataAccessException being returned.", dax); assertEquals("Wrong DataAccessException type returned as the result of the translation", dataAccessExceptionType, dax.getClass()); assertNotNull("The original SQLException must be preserved in the translated DataAccessException", dax.getCause()); assertSame("The exact same original SQLException must be preserved in the translated DataAccessException", ex, dax.getCause()); } }