/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.test.sql.check; import org.hibernate.Session; import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase; import org.junit.Test; import static org.junit.Assert.fail; /** * @author Steve Ebersole */ @SuppressWarnings( {"UnusedDeclaration"}) public abstract class ResultCheckStyleTest extends BaseCoreFunctionalTestCase { public String getCacheConcurrencyStrategy() { return null; } @Test public void testInsertionFailureWithExceptionChecking() { Session s = openSession(); s.beginTransaction(); ExceptionCheckingEntity e = new ExceptionCheckingEntity(); e.setName( "dummy" ); s.save( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be JDBCExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } @Test public void testInsertionFailureWithParamChecking() { Session s = openSession(); s.beginTransaction(); ParamCheckingEntity e = new ParamCheckingEntity(); e.setName( "dummy" ); s.save( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be HibernateExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } @Test public void testUpdateFailureWithExceptionChecking() { Session s = openSession(); s.beginTransaction(); ExceptionCheckingEntity e = new ExceptionCheckingEntity(); e.setId( Long.valueOf( 1 ) ); e.setName( "dummy" ); s.update( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be JDBCExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } @Test public void testUpdateFailureWithParamChecking() { Session s = openSession(); s.beginTransaction(); ParamCheckingEntity e = new ParamCheckingEntity(); e.setId( Long.valueOf( 1 ) ); e.setName( "dummy" ); s.update( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be HibernateExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } @Test public void testDeleteWithExceptionChecking() { Session s = openSession(); s.beginTransaction(); ExceptionCheckingEntity e = new ExceptionCheckingEntity(); e.setId( Long.valueOf( 1 ) ); e.setName( "dummy" ); s.delete( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be JDBCExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } @Test public void testDeleteWithParamChecking() { Session s = openSession(); s.beginTransaction(); ParamCheckingEntity e = new ParamCheckingEntity(); e.setId( Long.valueOf( 1 ) ); e.setName( "dummy" ); s.delete( e ); try { s.flush(); fail( "expection flush failure!" ); } catch( Exception ex ) { // these should specifically be HibernateExceptions... } s.clear(); s.getTransaction().rollback(); s.close(); } }