HHH-12666 : Add test
This commit is contained in:
parent
0bbacccf8d
commit
5fd8b36e34
|
@ -9,8 +9,10 @@ package org.hibernate.test.exceptionhandling;
|
|||
import java.sql.SQLException;
|
||||
import javax.persistence.OptimisticLockException;
|
||||
import javax.persistence.PersistenceException;
|
||||
import javax.persistence.RollbackException;
|
||||
|
||||
import org.hibernate.StaleObjectStateException;
|
||||
import org.hibernate.TransactionException;
|
||||
import org.hibernate.TransientObjectException;
|
||||
import org.hibernate.exception.ConstraintViolationException;
|
||||
import org.hibernate.hql.internal.ast.QuerySyntaxException;
|
||||
|
@ -63,6 +65,24 @@ interface ExceptionExpectations {
|
|||
assertThat( e, instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( IdentifierGenerationException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnSaveAndSaveOrUpdate(RuntimeException e) {
|
||||
assertThat( e, instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnPersistAndMergeAndFlush(RuntimeException e) {
|
||||
assertThat( e, instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnCommit(RuntimeException e) {
|
||||
assertThat( e, instanceOf( RollbackException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause().getCause(), instanceOf( TransactionException.class ) );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -104,6 +124,21 @@ interface ExceptionExpectations {
|
|||
public void onIdentifierGeneratorFailure(RuntimeException e) {
|
||||
assertThat( e, instanceOf( IdentifierGenerationException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnSaveAndSaveOrUpdate(RuntimeException e) {
|
||||
assertThat( e, instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnPersistAndMergeAndFlush(RuntimeException e) {
|
||||
assertThat( e, instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnCommit(RuntimeException e) {
|
||||
assertThat( e, instanceOf( TransactionException.class ) );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -150,6 +185,23 @@ interface ExceptionExpectations {
|
|||
assertThat( e, instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( IdentifierGenerationException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnSaveAndSaveOrUpdate(RuntimeException e) {
|
||||
assertThat( e, instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnPersistAndMergeAndFlush(RuntimeException e) {
|
||||
assertThat( e, instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( TransactionException.class ) );
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTransactionExceptionOnCommit(RuntimeException e) {
|
||||
assertThat( e, instanceOf( PersistenceException.class ) );
|
||||
assertThat( e.getCause(), instanceOf( TransactionException.class ) );
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -166,4 +218,10 @@ interface ExceptionExpectations {
|
|||
void onStaleObjectMergeAndUpdateFlush(RuntimeException e);
|
||||
|
||||
void onIdentifierGeneratorFailure(RuntimeException e);
|
||||
|
||||
void onTransactionExceptionOnSaveAndSaveOrUpdate(RuntimeException e);
|
||||
|
||||
void onTransactionExceptionOnPersistAndMergeAndFlush(RuntimeException e);
|
||||
|
||||
void onTransactionExceptionOnCommit(RuntimeException e);
|
||||
}
|
|
@ -0,0 +1,213 @@
|
|||
/*
|
||||
* 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.exceptionhandling;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
|
||||
import org.hibernate.Session;
|
||||
import org.hibernate.Transaction;
|
||||
import org.hibernate.engine.spi.SessionImplementor;
|
||||
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
@TestForIssue(jiraKey = "HHH-12666")
|
||||
public class TransactionExceptionHandlingTest extends BaseExceptionHandlingTest {
|
||||
|
||||
public TransactionExceptionHandlingTest(
|
||||
BootstrapMethod bootstrapMethod,
|
||||
ExceptionHandlingSetting exceptionHandlingSetting,
|
||||
ExceptionExpectations exceptionExpectations) {
|
||||
super( bootstrapMethod, exceptionHandlingSetting, exceptionExpectations );
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Class[] getAnnotatedClasses() {
|
||||
return new Class[] {
|
||||
A.class,
|
||||
B.class
|
||||
};
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPersistWithGeneratedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.persist( new A() );
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnPersistAndMergeAndFlush( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMergeWithGeneratedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.merge( new A() );
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnPersistAndMergeAndFlush( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSaveWithGeneratedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.save( new A() );
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnSaveAndSaveOrUpdate( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSaveOrUpdateWithGeneratedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.saveOrUpdate( new A() );
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnSaveAndSaveOrUpdate( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFlushWithAssignedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.persist( new B( 1 ) );
|
||||
s.flush();
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnPersistAndMergeAndFlush( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCommitWithAssignedValue() throws Exception {
|
||||
Session s = openSession();
|
||||
// Get the transaction and set the timeout BEFORE calling begin()
|
||||
Transaction t = s.getTransaction();
|
||||
t.setTimeout( 1 );
|
||||
assertEquals(
|
||||
-1,
|
||||
( (SessionImplementor) s ).getJdbcCoordinator().determineRemainingTransactionTimeOutPeriod()
|
||||
);
|
||||
t.begin();
|
||||
Thread.sleep( 1000 );
|
||||
try {
|
||||
s.persist( new B( 1 ) );
|
||||
s.getTransaction().commit();
|
||||
fail( "should have thrown an exception" );
|
||||
}
|
||||
catch (RuntimeException expected){
|
||||
exceptionExpectations.onTransactionExceptionOnCommit( expected );
|
||||
}
|
||||
finally {
|
||||
t.rollback();
|
||||
s.close();
|
||||
}
|
||||
}
|
||||
|
||||
@Entity(name = "A")
|
||||
public static class A {
|
||||
@Id
|
||||
@GeneratedValue
|
||||
private long id;
|
||||
}
|
||||
|
||||
@Entity(name = "B")
|
||||
public static class B {
|
||||
@Id
|
||||
private long id;
|
||||
|
||||
public B() {
|
||||
}
|
||||
|
||||
public B(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue