2014-08-14 20:35:18 +03:00
|
|
|
package sqlmock
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2015-07-17 12:14:30 +02:00
|
|
|
// used for examples
|
|
|
|
var mock = &Sqlmock{}
|
|
|
|
|
|
|
|
func ExampleNewErrorResult() {
|
2015-07-22 15:17:35 +02:00
|
|
|
db, mock, _ := New()
|
2015-07-17 12:14:30 +02:00
|
|
|
result := NewErrorResult(fmt.Errorf("some error"))
|
|
|
|
mock.ExpectExec("^INSERT (.+)").WillReturnResult(result)
|
2015-07-22 15:17:35 +02:00
|
|
|
res, _ := db.Exec("INSERT something")
|
|
|
|
_, err := res.LastInsertId()
|
|
|
|
fmt.Println(err)
|
|
|
|
// Output: some error
|
2015-07-17 12:14:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ExampleNewResult() {
|
|
|
|
var lastInsertID, affected int64
|
|
|
|
result := NewResult(lastInsertID, affected)
|
|
|
|
mock.ExpectExec("^INSERT (.+)").WillReturnResult(result)
|
2015-07-22 15:17:35 +02:00
|
|
|
fmt.Println(mock.ExpectationsWereMet())
|
|
|
|
// Output: there is a remaining expectation *sqlmock.ExpectedExec which was not matched yet
|
2015-07-17 12:14:30 +02:00
|
|
|
}
|
|
|
|
|
2014-08-14 20:35:18 +03:00
|
|
|
func TestShouldReturnValidSqlDriverResult(t *testing.T) {
|
|
|
|
result := NewResult(1, 2)
|
|
|
|
id, err := result.LastInsertId()
|
|
|
|
if 1 != id {
|
|
|
|
t.Errorf("Expected last insert id to be 1, but got: %d", id)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("expected no error, but got: %s", err)
|
|
|
|
}
|
|
|
|
affected, err := result.RowsAffected()
|
|
|
|
if 2 != affected {
|
|
|
|
t.Errorf("Expected affected rows to be 2, but got: %d", affected)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("expected no error, but got: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestShouldReturnErroeSqlDriverResult(t *testing.T) {
|
|
|
|
result := NewErrorResult(fmt.Errorf("some error"))
|
|
|
|
_, err := result.LastInsertId()
|
|
|
|
if err == nil {
|
|
|
|
t.Error("expected error, but got none")
|
|
|
|
}
|
|
|
|
_, err = result.RowsAffected()
|
|
|
|
if err == nil {
|
|
|
|
t.Error("expected error, but got none")
|
|
|
|
}
|
|
|
|
}
|