|
Spring Framework example source code file (SQLStateSQLExceptionTranslatorTests.java)
The Spring Framework SQLStateSQLExceptionTranslatorTests.java source code/* * Copyright 2002-2006 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 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.jdbc.BadSqlGrammarException; import org.springframework.jdbc.UncategorizedSQLException; import org.springframework.test.AssertThrows; import java.sql.SQLException; /** * Unit tests for the {@link SQLStateSQLExceptionTranslator} class. * * @author Rick Evans */ public final 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 testTranslateBadSql() throws Exception { doTest("07", BadSqlGrammarException.class); } public void testTranslateIntegrityViolation() throws Exception { doTest("22", DataIntegrityViolationException.class); } public void testTranslateUncategorized() throws Exception { doTest("00000000", UncategorizedSQLException.class); } public void testTranslateConcurrencyFailure() throws Exception { doTest("40", ConcurrencyFailureException.class); } public void testTranslateDataAccessResourceFailure() throws Exception { doTest("53", DataAccessResourceFailureException.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()); } } Other Spring Framework examples (source code examples)Here is a short list of links related to this Spring Framework SQLStateSQLExceptionTranslatorTests.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.