1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2024-11-30 08:56:44 +02:00
go-sqlmock/sqlmock_test.go

321 lines
8.0 KiB
Go
Raw Normal View History

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"
"time"
2014-02-05 17:21:07 +03:00
)
func TestMockQuery(t *testing.T) {
db, err := sql.Open("mock", "")
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
}
rs := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
2014-02-05 17:21:07 +03:00
ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
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
}
defer rows.Close()
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
}
if err = db.Close(); err != nil {
2014-02-08 18:51:58 +03:00
t.Errorf("error '%s' was not expected while closing the database", err)
2014-02-05 17:21:07 +03:00
}
}
func TestMockQueryTypes(t *testing.T) {
db, err := sql.Open("mock", "")
if err != nil {
t.Errorf("an error '%s' was not expected when opening a stub database connection", err)
}
columns := []string{"id", "timestamp", "sold"}
timestamp := time.Now()
rs := NewRows(columns)
rs.AddRow(5, timestamp, true)
ExpectQuery("SELECT (.+) FROM sales WHERE id = ?").
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)
}
defer rows.Close()
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)
}
if err = db.Close(); err != nil {
t.Errorf("error '%s' was not expected while closing the database", err)
}
}
2014-02-05 17:21:07 +03:00
func TestTransactionExpectations(t *testing.T) {
db, err := sql.Open("mock", "")
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
}
// begin and commit
ExpectBegin()
ExpectCommit()
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
ExpectBegin()
ExpectRollback()
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
2014-02-08 18:51:58 +03:00
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
}
if err = db.Close(); err != nil {
2014-02-08 18:51:58 +03:00
t.Errorf("error '%s' was not expected while closing the database", err)
2014-02-05 17:21:07 +03:00
}
}
func TestPreparedQueryExecutions(t *testing.T) {
db, err := sql.Open("mock", "")
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
}
rs1 := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
2014-02-05 17:21:07 +03:00
ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
WithArgs(5).
WillReturnRows(rs1)
rs2 := NewRows([]string{"id", "title"}).FromCSVString("2,whoop")
2014-02-05 17:21:07 +03:00
ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
WithArgs(2).
WillReturnRows(rs2)
stmt, err := db.Prepare("SELECT (.+) FROM articles WHERE id = ?")
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
}
if err = db.Close(); err != nil {
2014-02-08 18:51:58 +03:00
t.Errorf("error '%s' was not expected while closing the database", err)
2014-02-05 17:21:07 +03:00
}
}
func TestUnexpectedOperations(t *testing.T) {
db, err := sql.Open("mock", "")
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
}
stmt, err := db.Prepare("SELECT (.+) FROM articles WHERE id = ?")
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
}
ExpectRollback()
err = db.Close()
if err == nil {
2014-02-08 18:51:58 +03:00
t.Error("error was expected while closing the database, expectation was not fulfilled", err)
2014-02-05 17:21:07 +03:00
}
}
2014-02-07 17:52:26 +03:00
func TestWrongExpectations(t *testing.T) {
2014-02-05 17:21:07 +03:00
db, err := sql.Open("mock", "")
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
}
ExpectBegin()
rs1 := NewRows([]string{"id", "title"}).FromCSVString("5,hello world")
2014-02-05 17:21:07 +03:00
ExpectQuery("SELECT (.+) FROM articles WHERE id = ?").
WithArgs(5).
WillReturnRows(rs1)
2014-02-08 18:51:58 +03:00
ExpectCommit().WillReturnError(fmt.Errorf("deadlock occured"))
2014-02-05 17:21:07 +03:00
ExpectRollback() // won't be triggered
stmt, err := db.Prepare("SELECT (.+) FROM articles WHERE id = ? FOR UPDATE")
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 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
}
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 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
}
err = db.Close()
if err == nil {
2014-02-08 18:51:58 +03:00
t.Error("error was expected while closing the database, expectation was not fulfilled", err)
2014-02-05 17:21:07 +03:00
}
}
func TestExecExpectations(t *testing.T) {
db, err := sql.Open("mock", "")
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
}
result := NewResult(1, 1)
ExpectExec("^INSERT INTO articles").
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
}
if err = db.Close(); err != nil {
2014-02-08 18:51:58 +03:00
t.Errorf("error '%s' was not expected while closing the database", err)
2014-02-05 17:21:07 +03:00
}
}