forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpeoplePicker.test.ts
More file actions
523 lines (521 loc) · 17.1 KB
/
Copy pathpeoplePicker.test.ts
File metadata and controls
523 lines (521 loc) · 17.1 KB
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
import { silenceDebugMessages } from '../helpers/debugger'
// SHARON IS WORKING ON THIS FILE
// NOT DOING ANYTHING FOR NOW AS SHE WILL CLEAN IT UP LATER
silenceDebugMessages()
it.skip('only here to make tests run', () => null)
// import * as RdfLib from 'rdflib'
// import { JSDOM } from 'jsdom'
//
// import {
// PeoplePicker,
// GroupPicker,
// Group,
// GroupBuilder,
// Person
// } from '../../../src/widgets/peoplePicker'
// import ns from '../../../src/ns'
// jest.mock('rdflib')
// const kb = require('../../../src/store')
// const fetcher = kb.fetcher
//
// const dom = new JSDOM('<!DOCTYPE html><p>Hello world</p>').window.document
// const element = dom.createElement('div')
//
// describe('FindAddressBook', () => {
// it('exists', () => {
// expect(new PeoplePicker().findAddressBook).toBeInstanceOf(Function)
// })
// it('runs', () => {
// expect(new PeoplePicker().findAddressBook('typeIndex')).toMatchObject({})
// })
//
// it.skip('should call kb.any and spy load when callback is successful ', () => {
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
//
// const spyAny = jest
// .spyOn(kb, 'any')
// .mockReturnValueOnce('book')
// .mockReturnValueOnce('book')
// const spyLoad = jest.spyOn(fetcher, 'load').mockResolvedValue('book')
// new PeoplePicker().findAddressBook('typeIndex')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
//
// callback(null, undefined)
//
// expect(spyOnNowOrWhenFetched).toBeCalled()
// expect(spyAny).toBeCalled()
// expect(spyLoad).toBeCalled()
// })
// it('should return an error if it is not okay', () => {
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
// const spyAny = jest
// .spyOn(kb, 'any')
// .mockReturnValue('book')
// .mockReturnValueOnce('book')
// const spyLoad = jest.spyOn(fetcher, 'load').mockResolvedValue('book')
// new PeoplePicker().findAddressBook('typeIndex')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// // expect(spyOnNowOrWhenFetched).toThrowError()
// })
// it('should return an error if it does not return a book registration', () => {
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
// const spyAny = jest
// .spyOn(kb, 'any')
// .mockReturnValueOnce(null)
// .mockReturnValueOnce('book')
// const spyLoad = jest.spyOn(fetcher, 'load').mockResolvedValue('book')
// new PeoplePicker().findAddressBook('typeIndex')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// // expect(spyOnNowOrWhenFetched).toThrowError()
// })
//
// it('should throw an error when there is no book', () => {
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
// const spyAny = jest
// .spyOn(kb, 'any')
// .mockReturnValueOnce('bookregs')
// .mockReturnValueOnce(null)
// const spyLoad = jest.spyOn(fetcher, 'load').mockResolvedValue('book')
// new PeoplePicker().findAddressBook('typeIndex')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// // expect(spyOnNowOrWhenFetched).toThrowError()
// })
// it('should throw an error when there an error with the load', () => {
// // this was working before I changed the above to mockReturnValueOnce
// // which I needed to do in order to get that test to take affect...
// // need to research
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
// const spyAny = jest
// .spyOn(kb, 'any')
// .mockReturnValue('book')
// .mockReturnValue('book')
// const spyLoad = jest.spyOn(fetcher, 'load').mockRejectedValue(new Error())
// new PeoplePicker().findAddressBook('typeIndex')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// // expect(spyOnNowOrWhenFetched).toThrowError()
// })
// })
// describe('PeoplePicker.createNewGroup', () => {
// it('exists', () => {
// expect(new PeoplePicker().createNewGroup).toBeInstanceOf(Function)
// })
// // @@ TODO something about doc within the function has a problem
// it.skip('runs', () => {
// expect(new PeoplePicker().createNewGroup(RdfLib.sym('book'))).toMatchSnapshot()
// })
// })
// describe('PeoplePicker', () => {
// it('exists', () => {
// expect(new PeoplePicker()).toBeInstanceOf(PeoplePicker)
// })
// })
// describe('PeoplePicker.render', () => {
// it('exists', () => {
// expect(new PeoplePicker().render).toBeInstanceOf(Function)
// })
//
// it('runs', () => {
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = { selectedGroup: false }
// const element = document.createElement('p')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// expect(peoplePicker.render()).toMatchSnapshot()
// })
//
// it('.. type index ...', () => {
// const typeIndex = 'publicTypeIndex'
// const groupPickedCb = () => { }
// const options = { selectedGroup: {} }
// const element = document.createElement('p')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// jest.clearAllMocks()
// const spyOnNowOrWhenFetched = jest
// .spyOn(fetcher, 'nowOrWhenFetched')
// .mockImplementationOnce(() => {
// return Promise.resolve('book')
// })
//
// peoplePicker.render()
// // expect(spyOnNowOrWhenFetched).toBeCalled()
// // expect(spyOnNowOrWhenFetched).toReturnWith('book')
// expect(spyOnNowOrWhenFetched).toBeCalledTimes(1)
// // expect(spyAny).toBeCalled() // not getting called.
// // expect(spySecondAny).toBeCalled()
// // expect(spyLoad).toBeCalled()
//
// expect(peoplePicker.render()).toMatchSnapshot()
// })
//
// it('create Element is called .. ', () => {
// jest.clearAllMocks()
// const spy = jest.spyOn(document, 'createElement')
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = { selectedGroup: true }
// const element = document.createElement('button')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// peoplePicker.render()
// expect(spy).toHaveBeenCalledTimes(2)
// })
// // skipping snapshots for now until decision is made about prettier
// it('runs 2', () => {
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = { selectedGroup: true }
// const element = document.createElement('p')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// expect(peoplePicker.render()).toMatchSnapshot()
// })
// it('mocking kb any for book', () => {
// const mockKbAny: jest.SpyInstance = require('../../../src/store').any
// mockKbAny.mockReturnValueOnce(null)
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = { selectedGroup: true }
// const element = document.createElement('p')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// expect(peoplePicker.render()).toMatchSnapshot()
// })
// })
//
// describe('PeoplePicker.findAddressBook', () => {
// it.skip('exists', () => {
// expect(new PeoplePicker().findAddressBook).toBeInstanceOf(Function)
// })
// it.skip('runs', () => {
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = {}
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// expect(peoplePicker.findAddressBook()).toBeTruthy()
// })
// })
//
// describe('PeoplePicker.onSelectGroup', () => {
// it('exists', () => {
// expect(new PeoplePicker().onSelectGroup).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const typeIndex = {}
// const groupPickedCb = () => { }
// const options = {}
// const element = document.createElement('p')
// const peoplePicker = new PeoplePicker(
// element,
// typeIndex,
// groupPickedCb,
// options
// )
// expect(peoplePicker.onSelectGroup(RdfLib.sym(''))).toEqual(undefined)
// })
// })
//
// describe('GroupPicker', () => {
// it('exists', () => {
// expect(new GroupPicker()).toBeInstanceOf(GroupPicker)
// })
// })
//
// describe('GroupPicker.render', () => {
// it('exists', () => {
// expect(new GroupPicker().render).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const container = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupPicker = new GroupPicker(container, book, handler)
// expect(groupPicker.render()).toBeTruthy()
// })
// })
//
// describe('GroupPicker.loadGroups', () => {
// it('exists', () => {
// expect(new GroupPicker().loadGroups).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const container = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupPicker = new GroupPicker(container, book, handler)
// expect(groupPicker.loadGroups()).toBeTruthy()
// })
// it.skip('should call nowOrWhenFetched and Each', () => {
// const container = RdfLib.sym('')
// const book = RdfLib.sym('book')
// const handler = () => { }
// const groupPicker = new GroupPicker(container, book, handler)
// jest.clearAllMocks() // have to clear otherwise not the correct indices below
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
// const spyEach = jest.spyOn(kb, 'each').mockResolvedValue(['group1'])
//
// groupPicker.loadGroups()
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
//
// expect(spyOnNowOrWhenFetched).toBeCalled()
// expect(spyEach).toBeCalled()
// })
// it('should error if not okay', () => {
// const container = RdfLib.sym('')
// const book = RdfLib.sym('book')
// const handler = () => { }
// const groupPicker = new GroupPicker(container, book, handler)
// jest.clearAllMocks() // have to clear otherwise not the correct indices below
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
//
// groupPicker.loadGroups()
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// // @@ TODO need to figure out how to properly test for errors
// // expect(callback(null, undefined)).toThrowError()
// })
// })
//
// describe('GroupPicker.handleClickGroup', () => {
// it('exists', () => {
// expect(new GroupPicker().handleClickGroup).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const container = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupPicker = new GroupPicker(container, book, handler)
// const event = groupPicker.handleClickGroup()
// expect(groupPicker.handleClickGroup()).toBeTruthy()
// // @@ TODO this works below, but feel like it should be a better test
// // not just undefined.. will look at again
// expect(event()).toBe(undefined)
// })
// })
//
// describe('Group', () => {
// it('exists', () => {
// expect(new Group()).toBeInstanceOf(Group)
// })
// })
//
// describe('Group.render', () => {
// it('exists', () => {
// expect(new Group().render).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const groupArg = RdfLib.sym('')
// const element = document.createElement('p')
// const group = new Group(element, groupArg)
// expect(group.render()).toBeTruthy()
// })
// })
//
// describe('GroupBuilder', () => {
// it('exists', () => {
// expect(new GroupBuilder()).toBeInstanceOf(GroupBuilder)
// })
// })
//
// describe('GroupBuilder.render', () => {
// it('exists', () => {
// expect(new GroupBuilder().render).toBeInstanceOf(Function)
// })
//
// it.skip('runs', () => {
// jest.clearAllMocks()
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const element = document.createElement('p')
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// // @@ TODO just trying to touch the code at this point. I want
// // to make the test better than toBe(undefined)
// expect(groupBuilder.onGroupChanged()).toBe(undefined)
// expect(groupBuilder.render()).toMatchSnapshot()
// })
// })
//
// describe('GroupBuilder.refresh', () => {
// it('exists', () => {
// expect(new GroupBuilder().refresh).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// expect(groupBuilder.refresh()).toEqual(undefined)
// })
// })
//
// describe('GroupBuilder.add', () => {
// it('exists', () => {
// expect(new GroupBuilder().add).toBeInstanceOf(Function)
// })
// it('runs', () => {
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// expect(groupBuilder.add()).toMatchSnapshot()
// })
// // need to to nowOrWhenFetched
// it('not okay it returns an error -- callback false', () => {
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
//
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
//
// groupBuilder.add('webId')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// expect(spyOnNowOrWhenFetched).toBeCalled()
// // expect .. an error
// })
// // an error is happening with kb.any doesn't seem to be mocked..
// it.skip('not okay it returns an error', () => {
// jest.clearAllMocks()
// const spyOnNowOrWhenFetched = jest.spyOn(fetcher, 'nowOrWhenFetched')
//
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// // the spy doesn't seem to be working
// const spyAny = jest.spyOn(kb, 'any').mockReturnValueOnce(ns.foaf('Person'))
// groupBuilder.add('webId')
// const callback: any = spyOnNowOrWhenFetched.mock.calls[0][1]
// callback(null, undefined)
// expect(spyOnNowOrWhenFetched).toBeCalled()
// expect(spyAny).toBeCalled()
// // expect .. an error
// })
// })
//
// describe('GroupBuilder.handleRemove', () => {
// it('exists', () => {
// expect(new GroupBuilder().handleRemove).toBeInstanceOf(Function)
// })
//
// it('runs', () => {
// const groupArg = RdfLib.sym('')
// const book = RdfLib.sym('')
// const handler = () => { }
// const element = document.createElement('p')
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// expect(groupBuilder.handleRemove()).toMatchSnapshot()
// })
// })
//
// describe('GroupBuilder.setGroupName', () => {
// it('exists', () => {
// expect(new GroupBuilder().setGroupName).toBeInstanceOf(Function)
// })
// // @@ TODO once I added the code for findAddressBook, a namedGraph
// // error is popping up on line 392 Need to look into this
// // think groupArg may need to be adjusted
// it.skip('runs', () => {
// const groupArg = RdfLib.sym('testing')
// const book = RdfLib.sym('')
// const handler = () => { }
// const element = document.createElement('p')
// const groupBuilder = new GroupBuilder(
// element,
// book,
// groupArg,
// handler,
// handler
// )
// expect(groupBuilder.setGroupName()).toMatchSnapshot()
// })
// })
//
// describe('Person', () => {
// it('exists', () => {
// expect(new Person()).toBeInstanceOf(Person)
// })
// })
// describe('Person.render', () => {
// it('exists', () => {
// expect(new Person().render).toBeInstanceOf(Function)
// })
//
// it.skip('runs', () => {
// // @@ TODO Ask Michiel or Vince about what a proper WebIdNode should be
// const webIdNode = document.createElement('div')
// const element = document.createElement('div')
// const handleRemove = true
// const person = new Person(webIdNode, element, handleRemove)
// expect(person.render()).toMatchSnapshot()
// })
// })