-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstmt_test.go
73 lines (52 loc) · 1.28 KB
/
stmt_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package asql_test
import (
"testing"
"github.com/danielgatis/go-asql"
_ "github.com/mattn/go-sqlite3"
"github.com/stretchr/testify/assert"
)
func TestStmtExec(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
query := `insert into test_table (id, name) values (3, "jack")`
stmt, _ := db.Prepare(query)
rc, _ := stmt.Exec()
result := <-rc
actual, _ := result.RowsAffected()
assert.EqualValues(t, 1, actual)
}
func TestStmtQuery(t *testing.T) {
t.Parallel()
type TestTable struct {
ID int
Name string
}
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
stmt, _ := db.Prepare(`select * from test_table`)
rc, _ := stmt.Query()
rows := <-rc
records := make([]TestTable, 0)
for rows.Next() {
var record TestTable
rows.Scan(&record.ID, &record.Name)
records = append(records, record)
}
expected := []TestTable{
{1, "alice"},
{2, "bob"},
}
assert.EqualValues(t, expected, records)
}
func TestStmtQueryRow(t *testing.T) {
t.Parallel()
db, _ := asql.Open("sqlite3", "file::memory:")
db.Load("testdata/schema.sql")
stmt, _ := db.Prepare(`select count(*) from test_table`)
rc, _ := stmt.QueryRow()
row := <-rc
var count int
row.Scan(&count)
assert.Equal(t, count, 2)
}