mirror of
https://github.com/zhashkevych/go-sqlxmock.git
synced 2024-11-16 17:41:57 +02:00
34 lines
657 B
Go
34 lines
657 B
Go
// +build go1.6
|
|
|
|
package sqlmock
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
)
|
|
|
|
func TestExpectedPreparedStatementCloseError(t *testing.T) {
|
|
conn, mock, err := New()
|
|
if err != nil {
|
|
t.Fatal("failed to open sqlmock database:", err)
|
|
}
|
|
|
|
mock.ExpectBegin()
|
|
want := errors.New("STMT ERROR")
|
|
mock.ExpectPrepare("SELECT").WillReturnCloseError(want)
|
|
|
|
txn, err := conn.Begin()
|
|
if err != nil {
|
|
t.Fatal("unexpected error while opening transaction:", err)
|
|
}
|
|
|
|
stmt, err := txn.Prepare("SELECT")
|
|
if err != nil {
|
|
t.Fatal("unexpected error while preparing a statement:", err)
|
|
}
|
|
|
|
if err := stmt.Close(); err != want {
|
|
t.Fatalf("got = %v, want = %v", err, want)
|
|
}
|
|
}
|