2014-02-05 17:21:07 +03:00
|
|
|
package sqlmock
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2014-02-08 18:51:58 +03:00
|
|
|
"fmt"
|
2014-02-05 17:21:07 +03:00
|
|
|
"testing"
|
2014-02-13 22:59:35 +03:00
|
|
|
"time"
|
2014-02-05 17:21:07 +03:00
|
|
|
)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
func cancelOrder(db *sql.DB, orderID int) error {
|
|
|
|
tx, _ := db.Begin()
|
|
|
|
_, _ = tx.Query("SELECT * FROM orders {0} FOR UPDATE", orderID)
|
|
|
|
_ = tx.Rollback()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func Example() {
|
|
|
|
// Open new mock database
|
|
|
|
db, mock, err := New()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("error creating mock database")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// columns to be used for result
|
|
|
|
columns := []string{"id", "status"}
|
|
|
|
// expect transaction begin
|
|
|
|
mock.ExpectBegin()
|
|
|
|
// expect query to fetch order, match it with regexp
|
|
|
|
mock.ExpectQuery("SELECT (.+) FROM orders (.+) FOR UPDATE").
|
|
|
|
WithArgs(1).
|
|
|
|
WillReturnRows(NewRows(columns).AddRow(1, 1))
|
|
|
|
// expect transaction rollback, since order status is "cancelled"
|
|
|
|
mock.ExpectRollback()
|
|
|
|
|
|
|
|
// run the cancel order function
|
|
|
|
someOrderID := 1
|
|
|
|
// call a function which executes expected database operations
|
|
|
|
err = cancelOrder(db, someOrderID)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("unexpected error: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// ensure all expectations have been met
|
|
|
|
if err = mock.ExpectationsWereMet(); err != nil {
|
|
|
|
fmt.Printf("unmet expectation error: %s", err)
|
|
|
|
}
|
|
|
|
// Output:
|
|
|
|
}
|
|
|
|
|
2015-03-30 20:38:39 +02:00
|
|
|
func TestIssue14EscapeSQL(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2015-03-30 20:38:39 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
|
|
|
mock.ExpectExec("INSERT INTO mytable\\(a, b\\)").
|
2015-03-30 20:38:39 +02:00
|
|
|
WithArgs("A", "B").
|
|
|
|
WillReturnResult(NewResult(1, 1))
|
|
|
|
|
|
|
|
_, err = db.Exec("INSERT INTO mytable(a, b) VALUES (?, ?)", "A", "B")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected, while inserting a row", err)
|
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2015-03-30 20:38:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-21 18:21:28 +03:00
|
|
|
// test the case when db is not triggered and expectations
|
|
|
|
// are not asserted on close
|
|
|
|
func TestIssue4(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-04-21 18:21:28 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
mock.ExpectQuery("some sql query which will not be called").
|
2014-04-21 18:21:28 +03:00
|
|
|
WillReturnRows(NewRows([]string{"id"}))
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err == nil {
|
|
|
|
t.Errorf("was expecting an error since query was not triggered")
|
2014-04-21 18:21:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 17:21:07 +03:00
|
|
|
func TestMockQuery(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2014-02-14 01:14:32 +03:00
|
|
|
rs := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
|
2014-02-05 17:21:07 +03:00
|
|
|
WithArgs(5).
|
|
|
|
WillReturnRows(rs)
|
|
|
|
|
|
|
|
rows, err := db.Query("SELECT (.+) FROM articles WHERE id = ?", 5)
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected while retrieving mock rows", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
|
2015-03-30 21:32:57 +02:00
|
|
|
defer func() {
|
|
|
|
if er := rows.Close(); er != nil {
|
|
|
|
t.Error("Unexpected error while trying to close rows")
|
|
|
|
}
|
|
|
|
}()
|
2015-07-17 12:14:30 +02:00
|
|
|
|
2014-02-05 17:21:07 +03:00
|
|
|
if !rows.Next() {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Error("it must have had one row as result, but got empty result set instead")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var id int
|
|
|
|
var title string
|
|
|
|
|
|
|
|
err = rows.Scan(&id, &title)
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected while trying to scan row", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if id != 5 {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked id to be 5, but got %d instead", id)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if title != "hello world" {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked title to be 'hello world', but got '%s' instead", title)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-13 22:59:35 +03:00
|
|
|
func TestMockQueryTypes(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-13 22:59:35 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-13 22:59:35 +03:00
|
|
|
|
|
|
|
columns := []string{"id", "timestamp", "sold"}
|
|
|
|
|
|
|
|
timestamp := time.Now()
|
|
|
|
rs := NewRows(columns)
|
|
|
|
rs.AddRow(5, timestamp, true)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM sales WHERE id = ?").
|
2014-02-13 22:59:35 +03:00
|
|
|
WithArgs(5).
|
|
|
|
WillReturnRows(rs)
|
|
|
|
|
|
|
|
rows, err := db.Query("SELECT (.+) FROM sales WHERE id = ?", 5)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while retrieving mock rows", err)
|
|
|
|
}
|
2015-03-30 21:32:57 +02:00
|
|
|
defer func() {
|
|
|
|
if er := rows.Close(); er != nil {
|
|
|
|
t.Error("Unexpected error while trying to close rows")
|
|
|
|
}
|
|
|
|
}()
|
2014-02-13 22:59:35 +03:00
|
|
|
if !rows.Next() {
|
|
|
|
t.Error("it must have had one row as result, but got empty result set instead")
|
|
|
|
}
|
|
|
|
|
|
|
|
var id int
|
|
|
|
var time time.Time
|
|
|
|
var sold bool
|
|
|
|
|
|
|
|
err = rows.Scan(&id, &time, &sold)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while trying to scan row", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if id != 5 {
|
|
|
|
t.Errorf("expected mocked id to be 5, but got %d instead", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
if time != timestamp {
|
|
|
|
t.Errorf("expected mocked time to be %s, but got '%s' instead", timestamp, time)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sold != true {
|
|
|
|
t.Errorf("expected mocked boolean to be true, but got %v instead", sold)
|
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-13 22:59:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 17:21:07 +03:00
|
|
|
func TestTransactionExpectations(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
// begin and commit
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectBegin()
|
|
|
|
mock.ExpectCommit()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
tx, err := db.Begin()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when beginning a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = tx.Commit()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when commiting a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// begin and rollback
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectBegin()
|
|
|
|
mock.ExpectRollback()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
tx, err = db.Begin()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when beginning a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = tx.Rollback()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when rolling back a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// begin with an error
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectBegin().WillReturnError(fmt.Errorf("some err"))
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
tx, err = db.Begin()
|
|
|
|
if err == nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Error("an error was expected when beginning a transaction, but got none")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-24 23:05:15 +03:00
|
|
|
func TestPrepareExpectations(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-09-24 23:05:15 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
mock.ExpectPrepare("SELECT (.+) FROM articles WHERE id = ?")
|
2014-09-24 23:05:15 +03:00
|
|
|
|
|
|
|
stmt, err := db.Prepare("SELECT (.+) FROM articles WHERE id = ?")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while creating a prepared statement", err)
|
|
|
|
}
|
|
|
|
if stmt == nil {
|
|
|
|
t.Errorf("stmt was expected while creating a prepared statement")
|
|
|
|
}
|
|
|
|
|
|
|
|
// expect something else, w/o ExpectPrepare()
|
|
|
|
var id int
|
|
|
|
var title string
|
|
|
|
rs := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
|
2014-09-24 23:05:15 +03:00
|
|
|
WithArgs(5).
|
|
|
|
WillReturnRows(rs)
|
|
|
|
|
|
|
|
err = stmt.QueryRow(5).Scan(&id, &title)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while retrieving mock rows", err)
|
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectPrepare("SELECT (.+) FROM articles WHERE id = ?").
|
|
|
|
WillReturnError(fmt.Errorf("Some DB error occurred"))
|
2014-09-24 23:05:15 +03:00
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
stmt, err = db.Prepare("SELECT id FROM articles WHERE id = ?")
|
2014-09-24 23:05:15 +03:00
|
|
|
if err == nil {
|
|
|
|
t.Error("error was expected while creating a prepared statement")
|
|
|
|
}
|
|
|
|
if stmt != nil {
|
|
|
|
t.Errorf("stmt was not expected while creating a prepared statement returning error")
|
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-09-24 23:05:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-05 17:21:07 +03:00
|
|
|
func TestPreparedQueryExecutions(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
mock.ExpectPrepare("SELECT (.+) FROM articles WHERE id = ?")
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2014-02-14 01:14:32 +03:00
|
|
|
rs1 := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
|
2014-02-05 17:21:07 +03:00
|
|
|
WithArgs(5).
|
|
|
|
WillReturnRows(rs1)
|
|
|
|
|
2014-02-14 01:14:32 +03:00
|
|
|
rs2 := NewRows([]string{"id", "title"}).FromCSVString("2,whoop")
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
|
2014-02-05 17:21:07 +03:00
|
|
|
WithArgs(2).
|
|
|
|
WillReturnRows(rs2)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
stmt, err := db.Prepare("SELECT id, title FROM articles WHERE id = ?")
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected while creating a prepared statement", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var id int
|
|
|
|
var title string
|
|
|
|
err = stmt.QueryRow(5).Scan(&id, &title)
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected querying row from statement and scanning", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if id != 5 {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked id to be 5, but got %d instead", id)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if title != "hello world" {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked title to be 'hello world', but got '%s' instead", title)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = stmt.QueryRow(2).Scan(&id, &title)
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected querying row from statement and scanning", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if id != 2 {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked id to be 2, but got %d instead", id)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if title != "whoop" {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected mocked title to be 'whoop', but got '%s' instead", title)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUnexpectedOperations(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectPrepare("SELECT (.+) FROM articles WHERE id = ?")
|
|
|
|
stmt, err := db.Prepare("SELECT id, title FROM articles WHERE id = ?")
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected while creating a prepared statement", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var id int
|
|
|
|
var title string
|
|
|
|
|
|
|
|
err = stmt.QueryRow(5).Scan(&id, &title)
|
|
|
|
if err == nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Error("error was expected querying row, since there was no such expectation")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectRollback()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err == nil {
|
|
|
|
t.Errorf("was expecting an error since query was not triggered")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-07 17:52:26 +03:00
|
|
|
func TestWrongExpectations(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectBegin()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
2014-02-14 01:14:32 +03:00
|
|
|
rs1 := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
|
2014-02-05 17:21:07 +03:00
|
|
|
WithArgs(5).
|
|
|
|
WillReturnRows(rs1)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectCommit().WillReturnError(fmt.Errorf("deadlock occured"))
|
|
|
|
mock.ExpectRollback() // won't be triggered
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
var id int
|
|
|
|
var title string
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
err = db.QueryRow("SELECT id, title FROM articles WHERE id = ? FOR UPDATE", 5).Scan(&id, &title)
|
2014-02-05 17:21:07 +03:00
|
|
|
if err == nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Error("error was expected while querying row, since there begin transaction expectation is not fulfilled")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// lets go around and start transaction
|
|
|
|
tx, err := db.Begin()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when beginning a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
err = db.QueryRow("SELECT id, title FROM articles WHERE id = ? FOR UPDATE", 5).Scan(&id, &title)
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected while querying row, since transaction was started", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
err = tx.Commit()
|
|
|
|
if err == nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Error("a deadlock error was expected when commiting a transaction", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err == nil {
|
|
|
|
t.Errorf("was expecting an error since query was not triggered")
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExecExpectations(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-05 17:21:07 +03:00
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-05 17:21:07 +03:00
|
|
|
|
|
|
|
result := NewResult(1, 1)
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectExec("^INSERT INTO articles").
|
2014-02-05 17:21:07 +03:00
|
|
|
WithArgs("hello").
|
|
|
|
WillReturnResult(result)
|
|
|
|
|
|
|
|
res, err := db.Exec("INSERT INTO articles (title) VALUES (?)", "hello")
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected, while inserting a row", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
id, err := res.LastInsertId()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected, while getting a last insert id", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
affected, err := res.RowsAffected()
|
|
|
|
if err != nil {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("error '%s' was not expected, while getting affected rows", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if id != 1 {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected last insert id to be 1, but got %d instead", id)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if affected != 1 {
|
2014-02-08 18:51:58 +03:00
|
|
|
t.Errorf("expected affected rows to be 1, but got %d instead", affected)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-05 17:21:07 +03:00
|
|
|
}
|
|
|
|
}
|
2014-02-14 18:15:06 +03:00
|
|
|
|
|
|
|
func TestRowBuilderAndNilTypes(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-02-14 18:15:06 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-02-14 18:15:06 +03:00
|
|
|
|
|
|
|
rs := NewRows([]string{"id", "active", "created", "status"}).
|
|
|
|
AddRow(1, true, time.Now(), 5).
|
|
|
|
AddRow(2, false, nil, nil)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM sales").WillReturnRows(rs)
|
2014-02-14 18:15:06 +03:00
|
|
|
|
|
|
|
rows, err := db.Query("SELECT * FROM sales")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while retrieving mock rows", err)
|
|
|
|
}
|
2015-03-30 21:32:57 +02:00
|
|
|
defer func() {
|
|
|
|
if er := rows.Close(); er != nil {
|
|
|
|
t.Error("Unexpected error while trying to close rows")
|
|
|
|
}
|
|
|
|
}()
|
2014-02-14 18:15:06 +03:00
|
|
|
|
|
|
|
// NullTime and NullInt are used from stubs_test.go
|
|
|
|
var (
|
|
|
|
id int
|
|
|
|
active bool
|
|
|
|
created NullTime
|
|
|
|
status NullInt
|
|
|
|
)
|
|
|
|
|
|
|
|
if !rows.Next() {
|
|
|
|
t.Error("it must have had row in rows, but got empty result set instead")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = rows.Scan(&id, &active, &created, &status)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while trying to scan row", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if id != 1 {
|
|
|
|
t.Errorf("expected mocked id to be 1, but got %d instead", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !active {
|
|
|
|
t.Errorf("expected 'active' to be 'true', but got '%v' instead", active)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !created.Valid {
|
|
|
|
t.Errorf("expected 'created' to be valid, but it %+v is not", created)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !status.Valid {
|
|
|
|
t.Errorf("expected 'status' to be valid, but it %+v is not", status)
|
|
|
|
}
|
|
|
|
|
|
|
|
if status.Integer != 5 {
|
|
|
|
t.Errorf("expected 'status' to be '5', but got '%d'", status.Integer)
|
|
|
|
}
|
|
|
|
|
|
|
|
// test second row
|
|
|
|
if !rows.Next() {
|
|
|
|
t.Error("it must have had row in rows, but got empty result set instead")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = rows.Scan(&id, &active, &created, &status)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("error '%s' was not expected while trying to scan row", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if id != 2 {
|
|
|
|
t.Errorf("expected mocked id to be 2, but got %d instead", id)
|
|
|
|
}
|
|
|
|
|
|
|
|
if active {
|
|
|
|
t.Errorf("expected 'active' to be 'false', but got '%v' instead", active)
|
|
|
|
}
|
|
|
|
|
|
|
|
if created.Valid {
|
|
|
|
t.Errorf("expected 'created' to be invalid, but it %+v is not", created)
|
|
|
|
}
|
|
|
|
|
|
|
|
if status.Valid {
|
|
|
|
t.Errorf("expected 'status' to be invalid, but it %+v is not", status)
|
|
|
|
}
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
if err := mock.ExpectationsWereMet(); err != nil {
|
|
|
|
t.Errorf("there were unfulfilled expections: %s", err)
|
2014-02-14 18:15:06 +03:00
|
|
|
}
|
|
|
|
}
|
2014-08-16 12:48:11 +03:00
|
|
|
|
|
|
|
func TestArgumentReflectValueTypeError(t *testing.T) {
|
2015-07-17 12:14:30 +02:00
|
|
|
t.Parallel()
|
|
|
|
db, mock, err := New()
|
2014-08-16 12:48:11 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
|
|
|
|
}
|
2015-07-17 12:14:30 +02:00
|
|
|
defer db.Close()
|
2014-08-16 12:48:11 +03:00
|
|
|
|
|
|
|
rs := NewRows([]string{"id"}).AddRow(1)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
mock.ExpectQuery("SELECT (.+) FROM sales").WithArgs(5.5).WillReturnRows(rs)
|
2014-08-16 12:48:11 +03:00
|
|
|
|
|
|
|
_, err = db.Query("SELECT * FROM sales WHERE x = ?", 5)
|
|
|
|
if err == nil {
|
|
|
|
t.Error("Expected error, but got none")
|
|
|
|
}
|
|
|
|
}
|