mirror of
https://github.com/DATA-DOG/go-sqlmock.git
synced 2025-01-26 03:20:15 +02:00
32a1b9d93f
* dcca987 add an old example and a basic one
59 lines
1.6 KiB
Go
59 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/DATA-DOG/go-sqlmock"
|
|
)
|
|
|
|
// a successful case
|
|
func TestShouldUpdateStats(t *testing.T) {
|
|
db, mock, err := sqlmock.New()
|
|
if err != nil {
|
|
t.Fatalf("an error '%s' was not expected when opening a stub database connection", err)
|
|
}
|
|
defer db.Close()
|
|
|
|
mock.ExpectBegin()
|
|
mock.ExpectExec("UPDATE products").WillReturnResult(sqlmock.NewResult(1, 1))
|
|
mock.ExpectExec("INSERT INTO product_viewers").WithArgs(2, 3).WillReturnResult(sqlmock.NewResult(1, 1))
|
|
mock.ExpectCommit()
|
|
|
|
// now we execute our method
|
|
if err = recordStats(db, 2, 3); err != nil {
|
|
t.Errorf("error was not expected while updating stats: %s", err)
|
|
}
|
|
|
|
// we make sure that all expectations were met
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
|
}
|
|
}
|
|
|
|
// a failing test case
|
|
func TestShouldRollbackStatUpdatesOnFailure(t *testing.T) {
|
|
db, mock, err := sqlmock.New()
|
|
if err != nil {
|
|
t.Fatalf("an error '%s' was not expected when opening a stub database connection", err)
|
|
}
|
|
defer db.Close()
|
|
|
|
mock.ExpectBegin()
|
|
mock.ExpectExec("UPDATE products").WillReturnResult(sqlmock.NewResult(1, 1))
|
|
mock.ExpectExec("INSERT INTO product_viewers").
|
|
WithArgs(2, 3).
|
|
WillReturnError(fmt.Errorf("some error"))
|
|
mock.ExpectRollback()
|
|
|
|
// now we execute our method
|
|
if err = recordStats(db, 2, 3); err == nil {
|
|
t.Errorf("was expecting an error, but there was none")
|
|
}
|
|
|
|
// we make sure that all expectations were met
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
|
}
|
|
}
|