-
Notifications
You must be signed in to change notification settings - Fork 93
/
builder_standard_test.go
183 lines (155 loc) · 5.85 KB
/
builder_standard_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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// Copyright 2016 Qiang Xue. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package dbx
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestStandardBuilder_Quote(t *testing.T) {
b := getStandardBuilder()
assert.Equal(t, b.Quote(`abc`), `'abc'`, "t1")
assert.Equal(t, b.Quote(`I'm`), `'I''m'`, "t2")
assert.Equal(t, b.Quote(``), `''`, "t3")
}
func TestStandardBuilder_QuoteSimpleTableName(t *testing.T) {
b := getStandardBuilder()
assert.Equal(t, b.QuoteSimpleTableName(`abc`), `"abc"`, "t1")
assert.Equal(t, b.QuoteSimpleTableName(`"abc"`), `"abc"`, "t2")
assert.Equal(t, b.QuoteSimpleTableName(`{{abc}}`), `"{{abc}}"`, "t3")
assert.Equal(t, b.QuoteSimpleTableName(`a.bc`), `"a.bc"`, "t4")
}
func TestStandardBuilder_QuoteSimpleColumnName(t *testing.T) {
b := getStandardBuilder()
assert.Equal(t, b.QuoteSimpleColumnName(`abc`), `"abc"`, "t1")
assert.Equal(t, b.QuoteSimpleColumnName(`"abc"`), `"abc"`, "t2")
assert.Equal(t, b.QuoteSimpleColumnName(`{{abc}}`), `"{{abc}}"`, "t3")
assert.Equal(t, b.QuoteSimpleColumnName(`a.bc`), `"a.bc"`, "t4")
assert.Equal(t, b.QuoteSimpleColumnName(`*`), `*`, "t5")
}
func TestStandardBuilder_Insert(t *testing.T) {
b := getStandardBuilder()
q := b.Insert("users", Params{
"name": "James",
"age": 30,
})
assert.Equal(t, q.SQL(), `INSERT INTO "users" ("age", "name") VALUES ({:p0}, {:p1})`, "t1")
assert.Equal(t, q.Params()["p0"], 30, "t2")
assert.Equal(t, q.Params()["p1"], "James", "t3")
q = b.Insert("users", Params{})
assert.Equal(t, q.SQL(), `INSERT INTO "users" DEFAULT VALUES`, "t2")
}
func TestStandardBuilder_Upsert(t *testing.T) {
b := getStandardBuilder()
q := b.Upsert("users", Params{
"name": "James",
"age": 30,
})
assert.NotEqual(t, q.LastError, nil, "t1")
}
func TestStandardBuilder_Update(t *testing.T) {
b := getStandardBuilder()
q := b.Update("users", Params{
"name": "James",
"age": 30,
}, NewExp("id=10"))
assert.Equal(t, q.SQL(), `UPDATE "users" SET "age"={:p0}, "name"={:p1} WHERE id=10`, "t1")
assert.Equal(t, q.Params()["p0"], 30, "t2")
assert.Equal(t, q.Params()["p1"], "James", "t3")
q = b.Update("users", Params{
"name": "James",
"age": 30,
}, nil)
assert.Equal(t, q.SQL(), `UPDATE "users" SET "age"={:p0}, "name"={:p1}`, "t2")
}
func TestStandardBuilder_Delete(t *testing.T) {
b := getStandardBuilder()
q := b.Delete("users", NewExp("id=10"))
assert.Equal(t, q.SQL(), `DELETE FROM "users" WHERE id=10`, "t1")
q = b.Delete("users", nil)
assert.Equal(t, q.SQL(), `DELETE FROM "users"`, "t2")
}
func TestStandardBuilder_CreateTable(t *testing.T) {
b := getStandardBuilder()
q := b.CreateTable("users", map[string]string{
"id": "int primary key",
"name": "varchar(255)",
}, "ON DELETE CASCADE")
assert.Equal(t, q.SQL(), "CREATE TABLE \"users\" (\"id\" int primary key, \"name\" varchar(255)) ON DELETE CASCADE", "t1")
}
func TestStandardBuilder_RenameTable(t *testing.T) {
b := getStandardBuilder()
q := b.RenameTable("users", "user")
assert.Equal(t, q.SQL(), `RENAME TABLE "users" TO "user"`, "t1")
}
func TestStandardBuilder_DropTable(t *testing.T) {
b := getStandardBuilder()
q := b.DropTable("users")
assert.Equal(t, q.SQL(), `DROP TABLE "users"`, "t1")
}
func TestStandardBuilder_TruncateTable(t *testing.T) {
b := getStandardBuilder()
q := b.TruncateTable("users")
assert.Equal(t, q.SQL(), `TRUNCATE TABLE "users"`, "t1")
}
func TestStandardBuilder_AddColumn(t *testing.T) {
b := getStandardBuilder()
q := b.AddColumn("users", "age", "int")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" ADD "age" int`, "t1")
}
func TestStandardBuilder_DropColumn(t *testing.T) {
b := getStandardBuilder()
q := b.DropColumn("users", "age")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" DROP COLUMN "age"`, "t1")
}
func TestStandardBuilder_RenameColumn(t *testing.T) {
b := getStandardBuilder()
q := b.RenameColumn("users", "name", "username")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" RENAME COLUMN "name" TO "username"`, "t1")
}
func TestStandardBuilder_AlterColumn(t *testing.T) {
b := getStandardBuilder()
q := b.AlterColumn("users", "name", "int")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" CHANGE "name" "name" int`, "t1")
}
func TestStandardBuilder_AddPrimaryKey(t *testing.T) {
b := getStandardBuilder()
q := b.AddPrimaryKey("users", "pk", "id1", "id2")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" ADD CONSTRAINT "pk" PRIMARY KEY ("id1", "id2")`, "t1")
}
func TestStandardBuilder_DropPrimaryKey(t *testing.T) {
b := getStandardBuilder()
q := b.DropPrimaryKey("users", "pk")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" DROP CONSTRAINT "pk"`, "t1")
}
func TestStandardBuilder_AddForeignKey(t *testing.T) {
b := getStandardBuilder()
q := b.AddForeignKey("users", "fk", []string{"p1", "p2"}, []string{"f1", "f2"}, "profile", "opt")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" ADD CONSTRAINT "fk" FOREIGN KEY ("p1", "p2") REFERENCES "profile" ("f1", "f2") opt`, "t1")
}
func TestStandardBuilder_DropForeignKey(t *testing.T) {
b := getStandardBuilder()
q := b.DropForeignKey("users", "fk")
assert.Equal(t, q.SQL(), `ALTER TABLE "users" DROP CONSTRAINT "fk"`, "t1")
}
func TestStandardBuilder_CreateIndex(t *testing.T) {
b := getStandardBuilder()
q := b.CreateIndex("users", "idx", "id1", "id2")
assert.Equal(t, q.SQL(), `CREATE INDEX "idx" ON "users" ("id1", "id2")`, "t1")
}
func TestStandardBuilder_CreateUniqueIndex(t *testing.T) {
b := getStandardBuilder()
q := b.CreateUniqueIndex("users", "idx", "id1", "id2")
assert.Equal(t, q.SQL(), `CREATE UNIQUE INDEX "idx" ON "users" ("id1", "id2")`, "t1")
}
func TestStandardBuilder_DropIndex(t *testing.T) {
b := getStandardBuilder()
q := b.DropIndex("users", "idx")
assert.Equal(t, q.SQL(), `DROP INDEX "idx" ON "users"`, "t1")
}
func getStandardBuilder() Builder {
db := getDB()
b := NewStandardBuilder(db, db.sqlDB)
db.Builder = b
return b
}