Add test for rollback failure

pull/692/head
Jack Christensen 2020-02-29 09:48:04 -06:00
parent 710ddf7134
commit 9e495df1d5
1 changed files with 20 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import (
"github.com/jackc/pgconn" "github.com/jackc/pgconn"
"github.com/jackc/pgx/v4" "github.com/jackc/pgx/v4"
"github.com/stretchr/testify/require"
) )
func TestTransactionSuccessfulCommit(t *testing.T) { func TestTransactionSuccessfulCommit(t *testing.T) {
@ -188,6 +189,25 @@ func TestTransactionSuccessfulRollback(t *testing.T) {
} }
} }
func TestTransactionRollbackFailsClosesConnection(t *testing.T) {
t.Parallel()
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
defer closeConn(t, conn)
ctx, cancel := context.WithCancel(context.Background())
tx, err := conn.Begin(ctx)
require.NoError(t, err)
cancel()
err = tx.Rollback(ctx)
require.Error(t, err)
require.True(t, conn.IsClosed())
}
func TestBeginIsoLevels(t *testing.T) { func TestBeginIsoLevels(t *testing.T) {
t.Parallel() t.Parallel()