-
Notifications
You must be signed in to change notification settings - Fork 22
/
users_test.go
614 lines (557 loc) · 23.4 KB
/
users_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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
package uaa_test
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/http/httptest"
"testing"
uaa "github.com/cloudfoundry-community/go-uaa"
. "github.com/onsi/gomega"
"github.com/sclevine/spec"
)
const userResponse string = `{
"id" : "00000000-0000-0000-0000-000000000001",
"externalID" : "marcus-user",
"meta" : {
"version" : 1,
"created" : "2017-01-15T16:54:15.677Z",
"lastModified" : "2017-08-15T16:54:15.677Z"
},
"userName" : "[email protected]",
"name" : {
"familyName" : "Aurelius",
"givenName" : "Marcus"
},
"emails" : [ {
"value" : "[email protected]",
"primary" : false
} ],
"groups" : [ {
"value" : "ac2ab20e-0a2d-4b68-82e4-817ee6b258b4",
"display" : "philosophy.read",
"type" : "DIRECT"
}, {
"value" : "110b2434-4a30-439b-b5fc-f4cf47fc04f0",
"display" : "philosophy.write",
"type" : "DIRECT"
}],
"approvals" : [ {
"userID" : "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70",
"clientID" : "shinyclient",
"scope" : "philosophy.read",
"status" : "APPROVED",
"lastUpdatedAt" : "2017-08-15T16:54:15.765Z",
"expiresAt" : "2017-08-15T16:54:25.765Z"
}, {
"userID" : "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70",
"clientID" : "identity",
"scope" : "uaa.user",
"status" : "APPROVED",
"lastUpdatedAt" : "2017-08-15T16:54:45.767Z",
"expiresAt" : "2017-08-15T16:54:45.767Z"
} ],
"phoneNumbers" : [ {
"value" : "5555555555"
} ],
"active" : true,
"verified" : true,
"origin" : "uaa",
"zoneID" : "uaa",
"passwordLastModified" : "2017-08-15T16:54:15.000Z",
"previousLogonTime" : 1502816055768,
"lastLogonTime" : 1502816055768,
"schemas" : [ "urn:scim:schemas:core:1.0" ]
}`
var userListResponse = fmt.Sprintf(PaginatedResponseTmpl, MarcusUserResponse, DrSeussUserResponse)
var testUserValue uaa.User = uaa.User{
ID: "00000000-0000-0000-0000-000000000001",
Username: "[email protected]",
Active: newTrueP(),
Name: &uaa.UserName{GivenName: "Marcus", FamilyName: "Aurelius"},
}
var testUserJSON string = `{ "id": "00000000-0000-0000-0000-000000000001", "userName": "[email protected]", "active": true, "name" : { "familyName" : "Aurelius", "givenName" : "Marcus" }}`
func newTrueP() *bool {
b := true
return &b
}
func newFalseP() *bool {
b := false
return &b
}
func testUsers(t *testing.T, when spec.G, it spec.S) {
var (
s *httptest.Server
handler http.Handler
called int
a *uaa.API
)
it.Before(func() {
RegisterTestingT(t)
called = 0
s = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
called = called + 1
Expect(handler).NotTo(BeNil())
handler.ServeHTTP(w, req)
}))
a, _ = uaa.New(s.URL, uaa.WithNoAuthentication())
})
it.After(func() {
if s != nil {
s.Close()
}
})
when("GetUserByUsername()", func() {
when("no username is specified", func() {
it("returns an error", func() {
u, err := a.GetUserByUsername("", "", "")
Expect(err).To(HaveOccurred())
Expect(u).To(BeNil())
Expect(err.Error()).To(Equal("username cannot be blank"))
})
})
when("an origin is specified", func() {
it("looks up a user with SCIM filter", func() {
user := uaa.User{Username: "marcus", Origin: "uaa"}
response := PaginatedResponse(user)
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus" and origin eq "uaa"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(response))
Expect(err).NotTo(HaveOccurred())
})
u, err := a.GetUserByUsername("marcus", "uaa", "")
Expect(err).NotTo(HaveOccurred())
Expect(u.Username).To(Equal("marcus"))
})
it("returns an error when request fails", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus" and origin eq "uaa"`))
w.WriteHeader(http.StatusInternalServerError)
})
_, err := a.GetUserByUsername("marcus", "uaa", "")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("An error"))
})
it("returns an error if no results are found", func() {
response := PaginatedResponse()
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus" and origin eq "uaa"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(response))
Expect(err).NotTo(HaveOccurred())
})
_, err := a.GetUserByUsername("marcus", "uaa", "")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal(`user marcus not found in origin uaa`))
})
when("attributes are specified", func() {
it("adds them to the GET request", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus" and origin eq "uaa"`))
Expect(req.URL.Query().Get("attributes")).To(Equal(`userName,emails`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(PaginatedResponse(uaa.User{Username: "marcus", Origin: "uaa"})))
Expect(err).NotTo(HaveOccurred())
})
_, err := a.GetUserByUsername("marcus", "uaa", "userName,emails")
Expect(err).NotTo(HaveOccurred())
})
})
})
when("no origin is specified", func() {
it("looks up a user with a SCIM filter", func() {
user := uaa.User{Username: "marcus", Origin: "uaa"}
response := PaginatedResponse(user)
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(response))
Expect(err).NotTo(HaveOccurred())
})
u, err := a.GetUserByUsername("marcus", "", "")
Expect(err).NotTo(HaveOccurred())
Expect(u.Username).To(Equal("marcus"))
})
it("returns an error when request fails", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus"`))
w.WriteHeader(http.StatusInternalServerError)
})
_, err := a.GetUserByUsername("marcus", "", "")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("An error"))
})
it("returns an error when no users are found", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(PaginatedResponse()))
Expect(err).NotTo(HaveOccurred())
})
_, err := a.GetUserByUsername("marcus", "", "")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal(`user marcus not found`))
})
it("returns an error when username found in multiple origins", func() {
user1 := uaa.User{Username: "marcus", Origin: "uaa"}
user2 := uaa.User{Username: "marcus", Origin: "ldap"}
user3 := uaa.User{Username: "marcus", Origin: "okta"}
response := PaginatedResponse(user1, user2, user3)
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(response))
Expect(err).NotTo(HaveOccurred())
})
_, err := a.GetUserByUsername("marcus", "", "")
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(Equal(`Found users with username marcus in multiple origins [uaa, ldap, okta].`))
})
when("attributes are specified", func() {
it("adds them to the GET request", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("filter")).To(Equal(`userName eq "marcus"`))
Expect(req.URL.Query().Get("attributes")).To(Equal(`userName,emails`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(PaginatedResponse(uaa.User{Username: "marcus", Origin: "uaa"})))
Expect(err).NotTo(HaveOccurred())
})
_, err := a.GetUserByUsername("marcus", "", "userName,emails")
Expect(err).NotTo(HaveOccurred())
})
})
})
})
when("ListAllUsers()", func() {
it("can return multiple pages", func() {
page1 := MultiPaginatedResponse(1, 1, 2, uaa.User{Username: "marcus", Origin: "uaa"})
page2 := MultiPaginatedResponse(2, 1, 2, uaa.User{Username: "drseuss", Origin: "uaa"})
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
w.WriteHeader(http.StatusOK)
if called == 1 {
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
_, err := w.Write([]byte(page1))
Expect(err).NotTo(HaveOccurred())
} else {
Expect(req.URL.Query().Get("startIndex")).To(Equal("2"))
Expect(req.URL.Query().Get("count")).To(Equal("1"))
_, err := w.Write([]byte(page2))
Expect(err).NotTo(HaveOccurred())
}
})
users, err := a.ListAllUsers("", "", "", "")
Expect(err).NotTo(HaveOccurred())
Expect(users[0].Username).To(Equal("marcus"))
Expect(users[1].Username).To(Equal("drseuss"))
Expect(called).To(Equal(2))
})
})
when("ListUsers()", func() {
var userListResponse = fmt.Sprintf(PaginatedResponseTmpl, MarcusUserResponse, DrSeussUserResponse)
it("can accept a filter query to limit results", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`, "", "", "", 1, 100)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("does not include the filter param if no filter exists", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(""))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers("", "", "", "", 1, 100)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("can accept an attributes list", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`))
Expect(req.URL.Query().Get("attributes")).To(Equal(`userName,emails`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`, "", "userName,emails", "", 1, 100)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("can accept sortBy", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(""))
Expect(req.URL.Query().Get("attributes")).To(Equal(""))
Expect(req.URL.Query().Get("sortBy")).To(Equal("userName"))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers("", "userName", "", "", 1, 100)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("can accept sort order ascending/descending", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(""))
Expect(req.URL.Query().Get("attributes")).To(Equal(""))
Expect(req.URL.Query().Get("sortBy")).To(Equal(""))
Expect(req.URL.Query().Get("sortOrder")).To(Equal("ascending"))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers("", "", "", uaa.SortAscending, 1, 100)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("uses a startIndex of 1 if 0 is supplied", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte(userListResponse))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers("", "", "", "", 0, 0)
Expect(err).NotTo(HaveOccurred())
Expect(userList[0].Username).To(Equal("[email protected]"))
Expect(userList[1].Username).To(Equal("[email protected]"))
})
it("returns an error when /Users doesn't respond", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`))
w.WriteHeader(http.StatusInternalServerError)
})
userList, _, err := a.ListUsers(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`, "", "", "", 1, 100)
Expect(err).To(HaveOccurred())
Expect(userList).To(BeNil())
})
it("returns an error when response is unparseable", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.URL.Path).To(Equal("/Users"))
Expect(req.URL.Query().Get("count")).To(Equal("100"))
Expect(req.URL.Query().Get("startIndex")).To(Equal("1"))
Expect(req.URL.Query().Get("filter")).To(Equal(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`))
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte("{unparsable}"))
Expect(err).NotTo(HaveOccurred())
})
userList, _, err := a.ListUsers(`id eq "fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"`, "", "", "", 1, 100)
Expect(err).To(HaveOccurred())
Expect(userList).To(BeNil())
})
})
when("ActivateUser()", func() {
it("returns an error when the userID is empty", func() {
err := a.ActivateUser("", 10)
Expect(err).To(HaveOccurred())
Expect(called).To(Equal(0))
})
it("activates the user using the userID", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.Header.Get("Content-Type")).To(Equal("application/json"))
Expect(req.Header.Get("If-Match")).To(Equal("10"))
Expect(req.Method).To(Equal(http.MethodPatch))
Expect(req.URL.Path).To(Equal("/Users/fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70"))
defer req.Body.Close()
body, _ := ioutil.ReadAll(req.Body)
Expect(body).To(MatchJSON(`{ "active": true }`))
w.WriteHeader(http.StatusOK)
})
err := a.ActivateUser("fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70", 10)
Expect(err).NotTo(HaveOccurred())
Expect(called).To(Equal(1))
})
it("returns a helpful error the request fails", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.Header.Get("Content-Type")).To(Equal("application/json"))
Expect(req.Header.Get("If-Match")).To(Equal("0"))
Expect(req.Method).To(Equal(http.MethodPatch))
Expect(req.URL.Path).To(Equal("/Users/fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"))
defer req.Body.Close()
body, _ := ioutil.ReadAll(req.Body)
Expect(body).To(MatchJSON(`{ "active": true }`))
w.WriteHeader(http.StatusInternalServerError)
})
err := a.ActivateUser("fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7", 0)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("An error occurred while calling"))
Expect(called).To(Equal(1))
})
})
when("DeactivateUser()", func() {
it("returns an error when the userID is empty", func() {
err := a.DeactivateUser("", 10)
Expect(err).To(HaveOccurred())
Expect(called).To(Equal(0))
})
it("deactivates the user using the userID", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.Header.Get("Content-Type")).To(Equal("application/json"))
Expect(req.Header.Get("If-Match")).To(Equal("10"))
Expect(req.Method).To(Equal(http.MethodPatch))
Expect(req.URL.Path).To(Equal("/Users/fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70"))
defer req.Body.Close()
body, _ := ioutil.ReadAll(req.Body)
Expect(body).To(MatchJSON(`{ "active": false }`))
w.WriteHeader(http.StatusOK)
})
err := a.DeactivateUser("fb5f32e1-5cb3-49e6-93df-6df9c8c8bd70", 10)
Expect(err).NotTo(HaveOccurred())
Expect(called).To(Equal(1))
})
it("returns a helpful error the request fails", func() {
handler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
Expect(req.Header.Get("Accept")).To(Equal("application/json"))
Expect(req.Header.Get("Content-Type")).To(Equal("application/json"))
Expect(req.Header.Get("If-Match")).To(Equal("0"))
Expect(req.Method).To(Equal(http.MethodPatch))
Expect(req.URL.Path).To(Equal("/Users/fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7"))
defer req.Body.Close()
body, _ := ioutil.ReadAll(req.Body)
Expect(body).To(MatchJSON(`{ "active": false }`))
w.WriteHeader(http.StatusInternalServerError)
})
err := a.DeactivateUser("fb5f32e1-5cb3-49e6-93df-6df9c8c8bd7", 0)
Expect(err).To(HaveOccurred())
Expect(err.Error()).To(ContainSubstring("An error occurred while calling"))
Expect(called).To(Equal(1))
})
})
when("using user structs", func() {
when("verified", func() {
it("correctly shows false boolean values", func() {
user := uaa.User{Verified: newFalseP()}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"verified": false}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Verified).To(BeFalse())
})
it("correctly shows true values", func() {
user := uaa.User{Verified: newTrueP()}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"verified": true}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Verified).To(BeTrue())
})
it("correctly hides unset values", func() {
user := uaa.User{}
err := json.Unmarshal([]byte("{}"), &user)
Expect(err).NotTo(HaveOccurred())
Expect(user.Verified).To(BeNil())
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{}`))
})
})
when("emails", func() {
it("correctly shows false boolean values", func() {
user := uaa.User{}
email := uaa.Email{Value: "[email protected]", Primary: newFalseP()}
user.Emails = []uaa.Email{email}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"emails": [ { "value": "[email protected]", "primary": false } ]}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Emails[0].Primary).To(BeFalse())
})
it("correctly shows true values", func() {
user := uaa.User{}
email := uaa.Email{Value: "[email protected]", Primary: newTrueP()}
user.Emails = []uaa.Email{email}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"emails": [ { "value": "[email protected]", "primary": true } ]}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Emails[0].Primary).To(BeTrue())
})
})
when("active", func() {
it("correctly shows false boolean values", func() {
user := uaa.User{Active: newFalseP()}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"active": false}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Active).To(BeFalse())
})
it("correctly shows true values", func() {
user := uaa.User{Active: newTrueP()}
userBytes, _ := json.Marshal(&user)
Expect(string(userBytes)).To(MatchJSON(`{"active": true}`))
newUser := uaa.User{}
err := json.Unmarshal([]byte(userBytes), &newUser)
Expect(err).NotTo(HaveOccurred())
Expect(*newUser.Active).To(BeTrue())
})
})
})
}