forked from XiaoMi/soar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv_test.go
298 lines (275 loc) · 9.61 KB
/
env_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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
* Copyright 2018 Xiaomi, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package env
import (
"flag"
"fmt"
"os"
"path/filepath"
"runtime"
"testing"
"github.com/XiaoMi/soar/common"
"github.com/XiaoMi/soar/database"
"github.com/go-sql-driver/mysql"
"github.com/kr/pretty"
)
var update = flag.Bool("update", false, "update .golden files")
var vEnv *VirtualEnv
var rEnv *database.Connector
func TestMain(m *testing.M) {
// 初始化 init
if common.DevPath == "" {
_, file, _, _ := runtime.Caller(0)
common.DevPath, _ = filepath.Abs(filepath.Dir(filepath.Join(file, ".."+string(filepath.Separator))))
}
common.BaseDir = common.DevPath
err := common.ParseConfig("")
common.LogIfError(err, "init ParseConfig")
common.Log.Debug("env_test init")
vEnv, rEnv = BuildEnv()
if _, err = vEnv.Version(); err != nil {
fmt.Println(err.Error(), ", By pass all advisor test cases")
os.Exit(0)
}
if _, err := rEnv.Version(); err != nil {
fmt.Println(err.Error(), ", By pass all advisor test cases")
os.Exit(0)
}
// 分割线
flag.Parse()
m.Run()
// 环境清理
vEnv.CleanUp()
}
func TestNewVirtualEnv(t *testing.T) {
common.Log.Debug("Entering function: %s", common.GetFunctionName())
testSQL := []string{
"use sakila",
"select frm syntaxError",
"create table t(id int,c1 varchar(20),PRIMARY KEY (id));",
"alter table t add index `idx_c1`(c1);",
"select * from city where country_id = 44;",
"select * from address where address2 is not null;",
"select * from address where address2 is null;",
"select * from address where address2 >= 44;",
"select * from city where country_id between 44 and 107;",
"select * from city where city like 'Ad%';",
"select * from city where city = 'Aden' and country_id = 107;",
"select * from city where country_id > 31 and city = 'Aden';",
"select * from address where address_id > 8 and city_id < 400 and district = 'Nantou';",
"select * from address where address_id > 8 and city_id < 400;",
"select * from actor where last_update='2006-02-15 04:34:33' and last_name='CHASE' group by first_name;",
"select * from address where last_update >='2014-09-25 22:33:47' group by district;",
"select * from address group by address,district;",
"select * from address where last_update='2014-09-25 22:30:27' group by district,(address_id+city_id);",
"select * from customer where active=1 order by last_name limit 10;",
"select * from customer order by last_name limit 10;",
"select * from customer where address_id > 224 order by address_id limit 10;",
"select * from customer where address_id < 224 order by address_id limit 10;",
"select * from customer where active=1 order by last_name;",
"select * from customer where address_id > 224 order by address_id;",
"select * from customer where address_id in (224,510) order by last_name;",
"select city from city where country_id = 44;",
"select city,city_id from city where country_id = 44 and last_update='2006-02-15 04:45:25';",
"select city from city where country_id > 44 and last_update > '2006-02-15 04:45:25';",
"select * from city where country_id=1 and city='Kabul' order by last_update;",
"select * from city where country_id>1 and city='Kabul' order by last_update;",
"select * from city where city_id>251 order by last_update; ",
"select * from city i inner join country o on i.country_id=o.country_id;",
"select * from city i left join country o on i.city_id=o.country_id;",
"select * from city i right join country o on i.city_id=o.country_id;",
"select * from city i left join country o on i.city_id=o.country_id where o.country_id is null;",
"select * from city i right join country o on i.city_id=o.country_id where i.city_id is null;",
"select * from city i left join country o on i.city_id=o.country_id union select * from city i right join country o on i.city_id=o.country_id;",
"select * from city i left join country o on i.city_id=o.country_id where o.country_id is null union select * from city i right join country o on i.city_id=o.country_id where i.city_id is null;",
"select first_name,last_name,email from customer natural left join address;",
"select first_name,last_name,email from customer natural left join address;",
"select first_name,last_name,email from customer natural right join address;",
"select first_name,last_name,email from customer STRAIGHT_JOIN address on customer.address_id=address.address_id;",
"select ID,name from (select address from customer_list where SID=1 order by phone limit 50,10) a join customer_list l on (a.address=l.address) join city c on (c.city=l.city) order by phone desc;",
}
err := common.GoldenDiff(func() {
for _, sql := range testSQL {
vEnv.BuildVirtualEnv(rEnv, sql)
switch err := vEnv.Error.(type) {
case nil:
pretty.Println(sql, "OK")
case error:
// unexpected EOF
// 测试环境无法访问,或者被Disable的时候会进入这个分支
pretty.Println(sql, err)
case *mysql.MySQLError:
if err.Number != 1061 {
t.Error(err)
}
default:
t.Error(err)
}
}
}, t.Name(), update)
if err != nil {
t.Error(err)
}
common.Log.Debug("Exiting function: %s", common.GetFunctionName())
}
func TestCleanupTestDatabase(t *testing.T) {
common.Log.Debug("Entering function: %s", common.GetFunctionName())
if common.Config.TestDSN.Disable {
common.Log.Warn("common.Config.TestDSN.Disable=true, by pass TestCleanupTestDatabase")
return
}
vEnv.Query("drop database if exists optimizer_060102150405_xxxxxxxxxxxxxxxx")
_, err := vEnv.Query("create database optimizer_060102150405_xxxxxxxxxxxxxxxx")
if err != nil {
t.Error(err)
}
vEnv.CleanupTestDatabase()
_, err = vEnv.Query("show create database optimizer_060102150405_xxxxxxxxxxxxxxxx")
if err == nil {
t.Error("optimizer_060102150405_xxxxxxxxxxxxxxxx exist, should be dropped")
}
vEnv.Query("drop database if exists optimizer_060102150405")
_, err = vEnv.Query("create database optimizer_060102150405")
if err != nil {
t.Error(err)
}
vEnv.CleanupTestDatabase()
_, err = vEnv.Query("drop database optimizer_060102150405")
if err != nil {
t.Error("optimizer_060102150405 not exist, should not be dropped")
}
common.Log.Debug("Exiting function: %s", common.GetFunctionName())
}
func TestGenTableColumns(t *testing.T) {
common.Log.Debug("Entering function: %s", common.GetFunctionName())
pretty.Println(common.Config.TestDSN.Disable)
if common.Config.TestDSN.Disable {
common.Log.Warn("common.Config.TestDSN.Disable=true, by pass TestGenTableColumns")
return
}
// 只能对sakila数据库进行测试
if rEnv.Database == "sakila" {
testSQL := []string{
"select * from city where country_id = 44;",
"select country_id from city where country_id = 44;",
"select country_id from city where country_id > 44;",
}
metaList := []common.Meta{
{
"": &common.DB{
Table: map[string]*common.Table{
"city": common.NewTable("city"),
},
},
},
{
"sakila": &common.DB{
Table: map[string]*common.Table{
"city": common.NewTable("city"),
},
},
},
{
"sakila": &common.DB{
Table: map[string]*common.Table{
"city": {
TableName: "city",
Column: map[string]*common.Column{
"country_id": {
Name: "country_id",
},
},
},
},
},
},
}
for i, sql := range testSQL {
vEnv.BuildVirtualEnv(rEnv, sql)
tFlag := false
columns := vEnv.GenTableColumns(metaList[i])
if _, ok := columns["sakila"]; ok {
if _, okk := columns["sakila"]["city"]; okk {
if length := len(columns["sakila"]["city"]); length >= 1 {
tFlag = true
}
}
}
if !tFlag {
t.Errorf("columns: \n%s", pretty.Sprint(columns))
}
}
}
common.Log.Debug("Exiting function: %s", common.GetFunctionName())
}
func TestCreateTable(t *testing.T) {
common.Log.Debug("Entering function: %s", common.GetFunctionName())
orgSamplingCondition := common.Config.SamplingCondition
common.Config.SamplingCondition = "LIMIT 1"
orgREnvDatabase := rEnv.Database
rEnv.Database = "sakila"
tables := []string{
"actor",
"address",
"category",
"city",
"country",
"customer",
"film",
"film_actor",
"film_category",
"film_text",
"inventory",
"language",
"payment",
"rental",
"staff",
"store",
"staff_list",
"customer_list",
"actor_info",
"sales_by_film_category",
"sales_by_store",
"nicer_but_slower_film_list",
"film_list",
}
for _, table := range tables {
err := vEnv.createTable(rEnv, table)
if err != nil {
t.Error(err)
}
}
common.Config.SamplingCondition = orgSamplingCondition
rEnv.Database = orgREnvDatabase
common.Log.Debug("Exiting function: %s", common.GetFunctionName())
}
func TestCreateDatabase(t *testing.T) {
common.Log.Debug("Entering function: %s", common.GetFunctionName())
orgREnvDatabase := rEnv.Database
rEnv.Database = "sakila"
err := vEnv.createDatabase(rEnv)
if err != nil {
t.Error(err)
}
if vEnv.DBHash("sakila") == "sakila" {
t.Errorf("database: sakila rehashed failed!")
}
if vEnv.DBHash("not_exist_db") != "not_exist_db" {
t.Errorf("database: not_exist_db rehashed!")
}
rEnv.Database = orgREnvDatabase
common.Log.Debug("Exiting function: %s", common.GetFunctionName())
}