1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-12 21:47:29 +02:00

- apply stripQuery before assigning query expectation

- remove unused function
This commit is contained in:
Ahmad Muzakki
2017-02-04 18:09:50 +07:00
parent 9758862a89
commit 1fd67a1762
4 changed files with 23 additions and 29 deletions

View File

@ -3,17 +3,17 @@ package sqlmock
import (
"database/sql"
"fmt"
"strconv"
"sync"
"testing"
"time"
"github.com/golang/go/src/pkg/strconv"
)
func cancelOrder(db *sql.DB, orderID int) error {
tx, _ := db.Begin()
_, _ = tx.Query("SELECT * FROM orders {0} FOR UPDATE", orderID)
err := tx.Rollback()
if (err != nil) {
if err != nil {
return err
}
return nil
@ -892,8 +892,8 @@ func TestPrepareExec(t *testing.T) {
defer db.Close()
mock.ExpectBegin()
ep := mock.ExpectPrepare("INSERT INTO ORDERS\\(ID, STATUS\\) VALUES \\(\\?, \\?\\)")
for i:=0; i < 3; i++ {
ep.ExpectExec().WillReturnResult(NewResult(1,1))
for i := 0; i < 3; i++ {
ep.ExpectExec().WillReturnResult(NewResult(1, 1))
}
mock.ExpectCommit()
tx, _ := db.Begin()
@ -902,8 +902,8 @@ func TestPrepareExec(t *testing.T) {
t.Fatal(err)
}
defer stmt.Close()
for i:=0; i < 3; i++ {
_, err := stmt.Exec(i, "Hello" + strconv.Itoa(i))
for i := 0; i < 3; i++ {
_, err := stmt.Exec(i, "Hello"+strconv.Itoa(i))
if err != nil {
t.Fatal(err)
}
@ -938,8 +938,8 @@ func TestPrepareQuery(t *testing.T) {
}
defer rows.Close()
for rows.Next() {
var(
id int
var (
id int
status string
)
if rows.Scan(&id, &status); id != 101 || status != "Hello" {
@ -995,4 +995,4 @@ func TestExpectedBeginOrder(t *testing.T) {
if err := db.Close(); err == nil {
t.Error("an error was expected when calling close, but got none")
}
}
}