-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaddTenant.go
317 lines (285 loc) · 7.4 KB
/
addTenant.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
package main
import (
"fmt"
"testing"
"time"
log "github.com/platinasystems/go-common/logs"
pcc "github.com/platinasystems/pcc-blackbox/lib"
"github.com/platinasystems/pcc-blackbox/models"
"github.com/platinasystems/pcc-models/security"
"github.com/platinasystems/test"
)
func addTenant(t *testing.T) {
t.Run("addTenant", addTenantA)
}
func addTenantA(t *testing.T) {
test.SkipIfDryRun(t)
res := models.InitTestResult(runID)
defer res.CheckTestAndSave(t, time.Now())
CheckDependencies(t, res, Env.CheckServers, Env.CheckPccIp)
assert := test.Assert{t}
var (
tenants []security.Tenant
tenant security.Tenant
tenant2 security.Tenant
addReq security.Tenant
addReq2 security.Tenant
err error
)
log.AuctaLogger.Infof("assign all nodes to ROOT")
var nodes []uint64
for _, i := range Env.Servers {
nodes = append(nodes, NodebyHostIP[i.HostIp])
}
err = Pcc.AssignTenantNodes(1, nodes)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("Delete existing tenants")
tenants, err = Pcc.GetTenants()
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
for _, t := range tenants {
log.AuctaLogger.Infof("delete tenant %v", t.Name)
Pcc.DelTenant(t.ID)
}
addReq = security.Tenant{}
addReq.Name = "cust-a"
addReq.Description = "a tenant of ROOT"
log.AuctaLogger.Infof("add tenant %v", addReq.Name)
_, err = Pcc.AddTenant(addReq)
if err != nil {
msg := fmt.Sprintf("Failed to add tenant %v: %v", addReq.Name, err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("find tenant %v", addReq.Name)
tenant, err = Pcc.FindTenant(addReq.Name)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("tenant %v, id %v", tenant.Name, tenant.ID)
addReq2.Name = "cust-b"
addReq2.Description = "a tenant of cust-b"
addReq2.Parent = tenant.ID
log.AuctaLogger.Infof("add tenant %v", addReq.Name)
_, err = Pcc.AddTenant(addReq2)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("find tenant %v", addReq2.Name)
tenant2, err = Pcc.FindTenant(addReq2.Name)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("tenant %v, id %v", tenant2.Name, tenant2.ID)
log.AuctaLogger.Infof("deleting tenant %v", tenant2.Name)
err = Pcc.DelTenant(tenant2.ID)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
} else {
}
_, err = Pcc.FindTenant(addReq2.Name)
if err != nil {
log.AuctaLogger.Infof("FindTenant failed as expected on deleted tenant")
} else {
msg := fmt.Sprintf("%v", "Expecting failure, but didn't")
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("assign servers to tenant %v", addReq.Name)
for _, i := range Env.Servers {
nodes = append(nodes, NodebyHostIP[i.HostIp])
}
err = Pcc.AssignTenantNodes(tenant.ID, nodes)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
source := fmt.Sprintf("https://%v:7654/setPass", Env.PccIp)
// remove existing users
if users, err := Pcc.GetUsers(); err != nil {
msg := fmt.Sprintf("Failed to get users: %v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
} else {
for _, u := range users {
if u.UserName == "admin" {
continue
}
err = Pcc.DelUser(u.UserName)
if err != nil {
msg := fmt.Sprintf("Failed to delete user %v: %v",
u.UserName, err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
}
addUser := pcc.User{
UserName: "[email protected]",
FirstName: "Bart",
LastName: "Simpson",
Email: "[email protected]",
Password: "lisasux",
Active: true,
Protect: false,
RoleId: 1,
TenantId: tenant.ID,
Source: source,
}
_, err = Pcc.AddUser(addUser)
if err != nil {
msg := fmt.Sprintf("Failed to add user %v: %v", addUser.UserName,
err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
addUser2 := pcc.User{
UserName: "[email protected]",
FirstName: "Lisa",
LastName: "Simpson",
Email: "[email protected]",
Password: "bartsux",
Active: true,
Protect: false,
RoleId: 1,
TenantId: tenant.ID,
Source: source,
}
if _, err = Pcc.AddUser(addUser2); err != nil {
msg := fmt.Sprintf("Failed to add user %v: %v", addUser2.UserName,
err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
log.AuctaLogger.Infof("Try change firstname of user %v ", addUser.UserName)
newName := "Mr Bart"
addUser.FirstName = newName
if err = Pcc.UpdateUser(addUser); err != nil {
msg := fmt.Sprintf("Failed to update user %v: %v", newName, err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
if users, err := Pcc.GetUsers(); err == nil {
found := false
for _, u := range users {
if u.UserName == addUser.UserName {
log.AuctaLogger.Infof("Found updated user %v", u)
if u.Profile.FirstName == newName {
log.AuctaLogger.Infof("user update worked")
found = true
} else {
msg := fmt.Sprintf("user update failed")
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
}
if !found {
msg := fmt.Sprintf("user update failed and not found")
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
} else {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
err = Pcc.DelUser(addUser.UserName)
if err != nil {
msg := fmt.Sprintf("%v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
func delAllTenants(t *testing.T) {
test.SkipIfDryRun(t)
res := models.InitTestResult(runID)
defer res.CheckTestAndSave(t, time.Now())
assert := test.Assert{t}
var (
tenants []security.Tenant
err error
)
if tenants, err = Pcc.GetTenants(); err == nil {
for _, t := range tenants {
if t.Protect {
continue
}
id := t.ID
if err = Pcc.DelTenant(id); err != nil {
msg := fmt.Sprintf("Failed to DelTenant %v: %v", id, err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
} else {
msg := fmt.Sprintf("Failed to GetTenants: %v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
func delAllUsers(t *testing.T) {
test.SkipIfDryRun(t)
res := models.InitTestResult(runID)
defer res.CheckTestAndSave(t, time.Now())
assert := test.Assert{t}
var (
users []pcc.User
err error
)
if users, err = Pcc.GetUsers(); err == nil {
for _, u := range users {
if u.Protect {
continue
}
username := u.UserName
if err = Pcc.DelUser(username); err != nil {
msg := fmt.Sprintf("failed to Delete user %v: %v", username, err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}
} else {
msg := fmt.Sprintf("Failed to GetUsers: %v", err)
res.SetTestFailure(msg)
log.AuctaLogger.Error(msg)
assert.FailNow()
}
}