DATA-DOG / go-sqlmock

Sql mock driver for golang to test database interactions
Other
6.05k stars 406 forks source link

It is very hard to pinpoint _which_ expectation failed #210

Open kennytm opened 4 years ago

kennytm commented 4 years ago

When an expectation failed, the SQL request would error suggesting the type of the actual expectation. However, it is not detailed enough to show exactly which expectation failed. Consider the following simplified example.

Example code ```go package main import ( "database/sql" "testing" "github.com/DATA-DOG/go-sqlmock" ) func InsertValues(db *sql.DB, table string, column string, values ...interface{}) (err error) { var tx *sql.Tx tx, err = db.Begin() if err != nil { return } defer func() { if err != nil { tx.Rollback() } else { err = tx.Commit() } }() stmt := "INSERT INTO " + table + " (" + column + ") VALUES (?)" for _, val := range values { if _, err = tx.Exec(stmt, val); err != nil { return } } return } func TestInsertValues(t *testing.T) { db, mock, err := sqlmock.New() if err != nil { t.Fatalf("cannot create sql mock: %s", err) } mock.ExpectBegin() mock.ExpectExec(`INSERT INTO tbl`).WithArgs(2).WillReturnResult(sqlmock.NewResult(1, 1)) mock.ExpectCommit() mock.ExpectBegin() mock.ExpectExec(`INSERT INTO tbl`).WithArgs(3).WillReturnResult(sqlmock.NewResult(2, 1)) mock.ExpectCommit() mock.ExpectBegin() mock.ExpectExec(`INSERT INTO tbl`).WithArgs(4).WillReturnResult(sqlmock.NewResult(3, 1)) mock.ExpectCommit() err = InsertValues(db, "tbl", "col", 2, 3, 4) if err != nil { t.Errorf("cannot insert values: %s", err) } err = mock.ExpectationsWereMet() if err != nil { t.Errorf("unfulfilled expectation: %s", err) } } ```

The code would fail like this:

--- FAIL: TestInsertValues (0.00s)
    1_test.go:53: cannot insert values: call to ExecQuery 'INSERT INTO tbl (col) VALUES (?)' with args [{Name: Ordinal:1 Value:3}], was not expected, next expectation is: ExpectedCommit => expecting transaction Commit
    1_test.go:57: unfulfilled expectation: there is a remaining expectation which was not matched: ExpectedCommit => expecting transaction Commit
FAIL
FAIL    command-line-arguments  0.240s
FAIL

We know that the error happens because an ExpectCommit is not fulfilled, but it does not suggest which of the three ExpectCommits failed! This makes debugging test failure difficult.


I propose that

  1. Every call to ExpectXXX() should record the stack trace, e.g. with the stack trace we would know it is the ExpectCommit() on line 41 causing the failure. And/or
  2. Add a WithComment(string)/WithCommentf(string, ...interface{}) method to every ExpectedXXX type. The expectation failure would include the comment.

WithComment is needed to distinguish between different Expect invocations in a loop (where the stack trace would still be ambiguous) e.g.

for i, val := range values {
    comment := fmt.Sprintf("iteration #%d, value %s", i, val)
    mock.ExpectBegin().WithComment(comment)
    mock.ExpectExec("INSERT").WithComment(comment).WithArgs(val).WillReturnResult(sqlmock.NewResult(int64(i+1), 1))
    mock.ExpectCommit().WithComment(comment)
}