-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_test.go
61 lines (51 loc) · 1.11 KB
/
db_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
package db
import (
"fmt"
"github.com/sirupsen/logrus"
"testing"
"time"
)
type TestTable struct {
Id int `json:"id" orm:""`
Name string `json:"name"`
}
func TestDB(t *testing.T) {
conn, err := Dial("127.0.0.1:3301", "myusername", "mysecretpassword")
if err != nil {
t.Error(err)
}
defer conn.Close()
err = conn.Execute(`
CREATE TABLE test (
ID INTEGER,
NAME VARCHAR (255),
PRIMARY KEY (ID)
);
`, []interface{}{})
if err != nil {
logrus.Error(err)
}
err = conn.Execute(fmt.Sprintf(`INSERT INTO test(ID,NAME)VALUES(%d,'%s');`, 14, "nihao"), []interface{}{})
if err != nil {
logrus.Error(err)
}
rows, err := conn.Query(`select ID,NAME from test;`, []interface{}{})
if err != nil {
t.Error(err)
}
for key := range rows {
var id int
var name string
rows[key].Scan(&id, &name)
logrus.Info(id, " ", name)
}
re, err := conn.Query2Map("test", "", "ID", "NAME")
logrus.Info(re, err)
}
func TestGetFieldName(t *testing.T) {
res := GetFieldName(&TestTable{Id: 1, Name: "hello"})
logrus.Info(res)
}
func TestGetTableName(t *testing.T) {
logrus.Info(GetTableName(&TestTable{}))
}