HHH-13936 Add additional test

(cherry picked from commit 0e1713a3a0)
This commit is contained in:
Andrea Boriero 2020-05-08 12:57:21 +01:00 committed by Sanne Grinovero
parent 7b7ef154d1
commit b425c6045f
1 changed files with 20 additions and 3 deletions

View File

@ -12,7 +12,6 @@ import javax.persistence.TransactionRequiredException;
import org.hibernate.Session;
import org.hibernate.cfg.AvailableSettings;
import org.junit.Assert;
import org.junit.Test;
import org.hibernate.testing.TestForIssue;
@ -20,6 +19,8 @@ import org.hibernate.testing.jta.TestingJtaBootstrap;
import org.hibernate.testing.jta.TestingJtaPlatformImpl;
import org.hibernate.testing.junit4.BaseNonConfigCoreFunctionalTestCase;
import static org.junit.Assert.fail;
/**
* @author Michiel Hendriks
*/
@ -42,7 +43,7 @@ public class TestFlushJoinTransaction extends BaseNonConfigCoreFunctionalTestCas
TestingJtaPlatformImpl.INSTANCE.getTransactionManager().commit();
}
catch (TransactionRequiredException e) {
Assert.fail("No TransactionRequiredException expected.");
fail("No TransactionRequiredException expected.");
}
finally {
session.close();
@ -59,7 +60,23 @@ public class TestFlushJoinTransaction extends BaseNonConfigCoreFunctionalTestCas
TestingJtaPlatformImpl.INSTANCE.getTransactionManager().commit();
}
catch (TransactionRequiredException e) {
Assert.fail("No TransactionRequiredException expected.");
fail("No TransactionRequiredException expected.");
}
finally {
session.close();
}
}
@Test
public void testIsConnectedFlushShouldThrowExceptionIfNoTransaction() {
Session session = openSession();
try {
session.isConnected();
session.flush();
fail("A TransactionRequiredException should be thrown");
}
catch (TransactionRequiredException e) {
//expected
}
finally {
session.close();