-
Notifications
You must be signed in to change notification settings - Fork 3
/
version_test.go
472 lines (415 loc) · 17.9 KB
/
version_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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
//version 版本配置增删改查
package main
import (
"github.com/kataras/iris/httptest"
"github.com/muxiyun/Mae/model"
"testing"
//"fmt"
"time"
)
func TestCreateApplyUnapplyVersion(t *testing.T) {
time.Sleep(5*time.Second)
e := httptest.New(t, newApp(), httptest.URL("http://127.0.0.1:8080"))
defer model.DB.RWdb.DropTableIfExists("users")
defer model.DB.RWdb.DropTableIfExists("casbin_rule")
defer model.DB.RWdb.DropTableIfExists("apps")
defer model.DB.RWdb.DropTableIfExists("services")
defer model.DB.RWdb.DropTableIfExists("versions")
// create a user and get his token
CreateUserForTest(e, "andrew", "andrew123", "andrewpqc@mails.ccnu.edu.cn")
andrew_token := GetTokenForTest(e, "andrew", "andrew123", 60*60)
// create an admin user and get his token
CreateAdminForTest(e, "andrewadmin", "admin123", "andrewadmin@gamil.com")
admin_token := GetTokenForTest(e, "andrewadmin", "admin123", 60*60)
//create an app
e.POST("/api/v1.0/app").WithJSON(map[string]interface{}{
"app_name": "xueer",
"app_desc": "华师课程挖掘机",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a service which belongs to 华师匣子 app
e.POST("/api/v1.0/service").WithJSON(map[string]interface{}{
"app_id": 1,
"svc_name": "xueer_be",
"svc_desc": "the backend part of xueer",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a namespace mae-test-d
e.POST("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-d").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// Anonymous to create a version
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v1",
"version_desc": "xueer be version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v1-deployment",
"name_space": "mae-test-d",
"replicas": 1,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v1-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v1-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).Expect().Status(httptest.StatusForbidden)
// normal user to create a version which belongs to xueer_be
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v1",
"version_desc": "xueer be version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v1-deployment",
"name_space": "mae-test-d",
"replicas": 1,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v1-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v1-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
//Anonymous to apply xueer-be-v1
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v1").
Expect().Status(httptest.StatusForbidden)
// a normal user to apply xueer-be-v1
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// an admin user create another version which belongs to xueer_be
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v2",
"version_desc": "xueer be version 2",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v2-deployment",
"name_space": "mae-test-d",
"replicas": 2,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v2-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v2-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).WithBasicAuth(admin_token, "").Expect().Body().Contains("OK")
// an admin user to apply xueer-be-v2
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v2").
WithBasicAuth(admin_token, "").Expect().Body().Contains("OK")
// Anonymous to unapply xueer-be-v2
e.GET("/api/v1.0/version/unapply").WithQuery("version_name", "xueer-be-v2").
Expect().Status(httptest.StatusForbidden)
// a normal user to unapply xueer-be-v2
e.GET("/api/v1.0/version/unapply").WithQuery("version_name", "xueer-be-v2").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// a admin user to delete mae-test namespace to clear the test context.
e.DELETE("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-d").WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
}
func TestDeleteVersion(t *testing.T) {
time.Sleep(5*time.Second)
e := httptest.New(t, newApp(), httptest.URL("http://127.0.0.1:8080"))
defer model.DB.RWdb.DropTableIfExists("users")
defer model.DB.RWdb.DropTableIfExists("casbin_rule")
defer model.DB.RWdb.DropTableIfExists("apps")
defer model.DB.RWdb.DropTableIfExists("services")
defer model.DB.RWdb.DropTableIfExists("versions")
// create a normal user and get his token
CreateUserForTest(e, "andrew", "andrew123", "andrewpqc@mails.ccnu.edu.cn")
andrew_token := GetTokenForTest(e, "andrew", "andrew123", 60*60)
// create an admin user and delete namespace xueer
CreateAdminForTest(e, "andrewadmin", "admin123", "andrewadmin@gamil.com")
admin_token := GetTokenForTest(e, "andrewadmin", "admin123", 60*60)
//create an app
e.POST("/api/v1.0/app").WithJSON(map[string]interface{}{
"app_name": "xueer",
"app_desc": "华师课程挖掘机",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a service which belongs to 华师匣子 app
e.POST("/api/v1.0/service").WithJSON(map[string]interface{}{
"app_id": 1,
"svc_name": "xueer_be",
"svc_desc": "the backend part of xueer",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a namespace mae-test-e
e.POST("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-e").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a version which belongs to xueer_be
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v1",
"version_desc": "xueer be version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v1-deployment",
"name_space": "mae-test-e",
"replicas": 1,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v1-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v1-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// apply the version xueer-be-v1
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create another version xueer-be-v2 which belongs to service xueer-be
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v2",
"version_desc": "xueer be version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v2-deployment",
"name_space": "mae-test-e",
"replicas": 1,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v2-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v2-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// apply xueer-be-v2
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v2").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// anonymous to delete an undeployed version(just to delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 1).Expect().Status(httptest.StatusForbidden)
// a normal user to delete an undeployed version(just to delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 1).WithBasicAuth(andrew_token, "").
Expect().Status(httptest.StatusForbidden)
// an admin user to delete an undeployed version(just to delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 1).WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
// anonymous to delete a deployed version(delete the deployment,service in cluster and delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 1).Expect().Status(httptest.StatusForbidden)
// a normal user to delete a deployed version(delete the deployment,service in cluster and delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 2).WithBasicAuth(andrew_token, "").
Expect().Status(httptest.StatusForbidden)
// an admin user to delete a deployed version(delete the deployment,service in cluster and delete the database record)
e.DELETE("/api/v1.0/version/{id}").WithPath("id", 2).WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
// delete namespace mae-test to clear the test context
e.DELETE("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-e").WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
}
func TestGetVersionAndGetVersionList(t *testing.T) {
time.Sleep(5*time.Second)
e := httptest.New(t, newApp(), httptest.URL("http://127.0.0.1:8080"))
defer model.DB.RWdb.DropTableIfExists("users")
defer model.DB.RWdb.DropTableIfExists("casbin_rule")
defer model.DB.RWdb.DropTableIfExists("apps")
defer model.DB.RWdb.DropTableIfExists("services")
defer model.DB.RWdb.DropTableIfExists("versions")
// create a normal user and get his token
CreateUserForTest(e, "andrew", "andrew123", "andrewpqc@mails.ccnu.edu.cn")
andrew_token := GetTokenForTest(e, "andrew", "andrew123", 60*60)
// create a admin user and get his token
CreateAdminForTest(e, "andrewadmin", "admin123", "andrewadmin@gamil.com")
admin_token := GetTokenForTest(e, "andrewadmin", "admin123", 60*60)
//create an app
e.POST("/api/v1.0/app").WithJSON(map[string]interface{}{
"app_name": "xueer",
"app_desc": "华师课程挖掘机",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a service 'xueer_be' which belongs to 华师匣子 app
e.POST("/api/v1.0/service").WithJSON(map[string]interface{}{
"app_id": 1,
"svc_name": "xueer_be",
"svc_desc": "the backend part of xueer",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
//create a service 'xueer_fe' which belongs to 华师匣子 app
e.POST("/api/v1.0/service").WithJSON(map[string]interface{}{
"app_id": 1,
"svc_name": "xueer_fe",
"svc_desc": "the frontend part of xueer",
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// create a namespace mae-test-f
e.POST("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-f").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
//create a version which belongs to service xueer_be
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 1,
"version_name": "xueer-be-v1",
"version_desc": "xueer be version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-be-v1-deployment",
"name_space": "mae-test-f",
"replicas": 1,
"labels": map[string]string{"run": "xueer-be"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-be-v1-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-be-v1-service",
"selector": map[string]string{"run": "xueer-be"},
"labels": map[string]string{"run": "xueer-be"},
},
},
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
//apply version "xueer-be-v1"
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-be-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
//create a version which belongs to service xueer_fe
e.POST("/api/v1.0/version").WithJSON(map[string]interface{}{
"svc_id": 2,
"version_name": "xueer-fe-v1",
"version_desc": "xueer fe version 1",
"version_conf": map[string]interface{}{
"deployment": map[string]interface{}{
"deploy_name": "xueer-fe-v1-deployment",
"name_space": "mae-test-f",
"replicas": 1,
"labels": map[string]string{"run": "xueer-fe"},
"containers": [](map[string]interface{}){
map[string]interface{}{
"ctr_name": "xueer-fe-v1-ct",
"image_url": "pqcsdockerhub/kube-test",
"start_cmd": []string{"gunicorn", "app:app", "-b", "0.0.0.0:8080", "--log-level", "DEBUG"},
"ports": [](map[string]interface{}){
map[string]interface{}{
"image_port": 8080,
"target_port": 8090,
"protocol": "TCP",
},
},
},
},
},
"svc": map[string]interface{}{
"svc_name": "xueer-fe-v1-service",
"selector": map[string]string{"run": "xueer-fe"},
"labels": map[string]string{"run": "xueer-fe"},
},
},
}).WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// apply version 'xueer-fe-v1'
e.GET("/api/v1.0/version/apply").WithQuery("version_name", "xueer-fe-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// anonymous get a single version's information
e.GET("/api/v1.0/version/{version_name}").WithPath("version_name", "xueer-be-v1").
Expect().Status(httptest.StatusForbidden)
// a normal user to get a single version's information
e.GET("/api/v1.0/version/{version_name}").WithBasicAuth(andrew_token, "").
WithPath("version_name", "xueer-be-v1").Expect().Body().Contains("OK")
// an admin user to get a single version's information
e.GET("/api/v1.0/version/{version_name}").WithBasicAuth(admin_token, "").
WithPath("version_name", "xueer-be-v1").Expect().Body().Contains("OK")
//anonymous get all the versions which are belongs to service xueer_be
e.GET("/api/v1.0/version").WithQuery("service_id", 1).
Expect().Status(httptest.StatusForbidden)
// a normal user to get all the versions which are belongs to service xueer_be
e.GET("/api/v1.0/version").WithQuery("service_id", 1).WithBasicAuth(andrew_token, "").
Expect().Body().Contains("OK")
// an admin user to get all the versions which are belongs to service xueer_be
e.GET("/api/v1.0/version").WithQuery("service_id", 1).WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
// anonymous get all the versions in database
e.GET("/api/v1.0/version").Expect().Status(httptest.StatusForbidden)
// a normal user to get all the versions in the database
e.GET("/api/v1.0/version").WithBasicAuth(andrew_token, "").Expect().Status(httptest.StatusForbidden)
// an admin user to get all the versions in the database
e.GET("/api/v1.0/version").WithBasicAuth(admin_token, "").Expect().Body().Contains("OK")
// to unapply xueer-be-v1 (that is to delete the deploy and svc of xueer-be-v1 in the cluster)
e.GET("/api/v1.0/version/unapply").WithQuery("version_name", "xueer-be-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// to unapply xueer-fe-v1 (that is to delete the deploy and svc of xueer-fe-v1 in the cluster)
e.GET("/api/v1.0/version/unapply").WithQuery("version_name", "xueer-fe-v1").
WithBasicAuth(andrew_token, "").Expect().Body().Contains("OK")
// delete namespace mae-test to clear the test context
e.DELETE("/api/v1.0/ns/{ns}").WithPath("ns", "mae-test-f").WithBasicAuth(admin_token, "").
Expect().Body().Contains("OK")
}