-
Notifications
You must be signed in to change notification settings - Fork 16
/
postgres_test.go
139 lines (123 loc) · 2.44 KB
/
postgres_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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
package polluter
import (
"bytes"
"database/sql"
"fmt"
"log"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func Test_postgresEngine_build(t *testing.T) {
tests := []struct {
name string
input []byte
expect commands
}{
{
name: "example input",
input: []byte(`{"users":[{"id":1,"name":"Roman"},{"id":2,"name":"Dmitry"}],"roles":[{"id":2,"role_ids":[1,2]}]}`),
expect: commands{
command{
q: `INSERT INTO "users" ("id", "name") VALUES ($1, $2);`,
args: []interface{}{
float64(1),
"Roman",
},
},
command{
q: `INSERT INTO "users" ("id", "name") VALUES ($1, $2);`,
args: []interface{}{
float64(2),
"Dmitry",
},
},
command{
q: `INSERT INTO "roles" ("id", "role_ids") VALUES ($1, $2);`,
args: []interface{}{
float64(2),
[]interface{}{
float64(1),
float64(2),
},
},
},
},
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
obj, err := jsonParser{}.parse(bytes.NewReader(tt.input))
if err != nil {
assert.Nil(t, err)
}
e := postgresEngine{}
got, err := e.build(obj)
assert.Nil(t, err)
assert.Equal(t, tt.expect, got)
})
}
}
func Test_postgresEngine_exec(t *testing.T) {
if testing.Short() {
t.Skip("skipping test in short mode")
}
tests := []struct {
name string
args []command
wantErr bool
}{
{
name: "valid query",
args: []command{
command{
q: `INSERT INTO "users" ("id", "name") VALUES ($1, $2);`,
args: []interface{}{
1,
"Roman",
},
},
},
},
{
name: "invalid query",
args: []command{
command{
q: `INSERT INTO "roles" ("id", "name") VALUES ($1, $2);`,
args: []interface{}{
1,
"User",
},
},
},
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
db, teardown := preparePostgresDB(t)
defer teardown()
e := postgresEngine{db}
err := e.exec(tt.args)
if tt.wantErr && err == nil {
assert.NotNil(t, err)
return
}
if !tt.wantErr && err != nil {
assert.Nil(t, err)
}
})
}
}
func preparePostgresDB(t *testing.T) (db *sql.DB, teardown func() error) {
dbName := fmt.Sprintf("db_%d", time.Now().UnixNano())
db, err := sql.Open("pgsqltx", dbName)
if err != nil {
log.Fatalf("open mysql connection: %s", err)
}
return db, db.Close
}