From c02011ef40c5df337e068cd75f8c448a31e09ec5 Mon Sep 17 00:00:00 2001 From: Gail Badner Date: Thu, 14 Nov 2019 13:28:56 -0800 Subject: [PATCH] HHH-13737 : Add test case for HHH-13433 --- ...nSessionFindJdbcExceptionHandlingTest.java | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/NonActiveTransactionSessionFindJdbcExceptionHandlingTest.java diff --git a/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/NonActiveTransactionSessionFindJdbcExceptionHandlingTest.java b/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/NonActiveTransactionSessionFindJdbcExceptionHandlingTest.java new file mode 100644 index 0000000000..34072386cb --- /dev/null +++ b/hibernate-core/src/test/java/org/hibernate/test/exceptionhandling/NonActiveTransactionSessionFindJdbcExceptionHandlingTest.java @@ -0,0 +1,95 @@ +/* + * 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 . + */ +package org.hibernate.test.exceptionhandling; + +import java.sql.SQLException; +import java.util.Map; +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.EntityManager; +import javax.persistence.Id; +import javax.persistence.PersistenceException; + +import org.hibernate.JDBCException; +import org.hibernate.cfg.AvailableSettings; +import org.hibernate.dialect.H2Dialect; +import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; + +import org.hibernate.testing.RequiresDialect; +import org.hibernate.testing.TestForIssue; +import org.junit.Before; +import org.junit.Test; + +import static org.hibernate.testing.transaction.TransactionUtil.doInJPA; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +@TestForIssue( jiraKey = "HHH-13737") +@RequiresDialect(H2Dialect.class) +public class NonActiveTransactionSessionFindJdbcExceptionHandlingTest extends BaseEntityManagerFunctionalTestCase { + + @Test + public void testJdbcExceptionThrown() { + // delete "description" column so that a JDBCException caused by a SQLException is thrown when looking up the AnEntity + doInJPA( + this::entityManagerFactory, + entityManager -> { + entityManager.createNativeQuery( "alter table AnEntity drop column description" ).executeUpdate(); + } + ); + + EntityManager entityManager = getOrCreateEntityManager(); + try { + entityManager.find( AnEntity.class, 1 ); + fail( "A PersistenceException should have been thrown." ); + } + catch ( PersistenceException ex ) { + assertTrue( JDBCException.class.isInstance( ex.getCause() ) ); + assertTrue( SQLException.class.isInstance( ex.getCause().getCause() ) ); + } + finally { + entityManager.close(); + } + } + + @Before + public void setupData() { + doInJPA( + this::entityManagerFactory, + entityManager -> { + entityManager.persist( new AnEntity( 1, "description" ) ); + } + ); + } + + @Override + @SuppressWarnings("unchecked") + protected void addMappings(Map settings) { + settings.put( AvailableSettings.JPA_TRANSACTION_COMPLIANCE, true); + } + + @Override + protected Class[] getAnnotatedClasses() { + return new Class[] { AnEntity.class }; + } + + @Entity(name = "AnEntity") + public static class AnEntity { + @Id + private int id; + @Column(name = "description") + private String description; + + AnEntity() { + } + + AnEntity(int id, String description) { + this.id = id; + this.description = description; + } + } +}