-
Notifications
You must be signed in to change notification settings - Fork 45
/
index.js
570 lines (509 loc) · 16.8 KB
/
index.js
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
import genie from '../'
beforeEach(prepForTest)
describe('#', () => {
beforeEach(prepForTest)
test('should register with an object', () => {
genie({
magicWords: 'magicWord',
action() {},
})
const wishData = {
name: 'value',
}
const maximalObject = genie({
id: 'coolId',
context: ['gandpa', 'child', 'grandchild'],
data: wishData,
magicWords: ['magic', 'word'],
action() {},
})
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(2)
expect(maximalObject.id).toBe('coolId')
expect(maximalObject.context.any).toHaveLength(3)
expect(maximalObject.data).toBe(wishData)
expect(maximalObject.magicWords).toHaveLength(2)
})
test('should register with an array', () => {
genie([
{
magicWords: 'wish1',
action() {},
},
{
magicWords: 'wish2',
action() {},
},
{
magicWords: 'wish3',
action() {},
},
])
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(3)
})
test('should overwrite wish with duplicateId', () => {
const wishOne = genie(
fillInWish({
id: 'id',
}),
)
const wishTwo = genie(
fillInWish({
id: 'id',
}),
)
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(1)
expect(wishTwo).toBe(allWishes[0])
expect(wishOne).not.toBe(allWishes[0])
})
test('should not have any wishes registered prior to registration', () => {
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(0)
})
test('should have one wish registered upon registration and zero upon deregistration', () => {
const wish = genie(fillInWish())
let allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(1)
genie.deregisterWish(wish)
allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(0)
})
test('should make the last wish registered without giving magic words', () => {
genie(fillInWish())
const wishToBeMade = genie(fillInWish())
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(2)
const madeWish = genie.makeWish()
expect(wishToBeMade.data.timesMade.total).toBe(1)
expect(madeWish).toBe(wishToBeMade)
})
test('should return empty object and not register a wish when genie is disabled', () => {
genie.enabled(false)
const emptyObject = genie(fillInWish())
expect(Object.keys(emptyObject)).toHaveLength(0)
let allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(0)
genie.enabled(true)
genie.returnOnDisabled(false)
genie.enabled(false)
const nullObject = genie(fillInWish())
expect(nullObject).toBeNull()
allWishes = genie.getMatchingWishes()
expect(allWishes).toBeNull()
})
describe('special wish types', () => {
describe('navigation wish type', () => {
test('should navigate when a wish is made whose action is a string', () => {
const destination = `${window.location.href}#success`
const moveToSuccess = genie({
magicWords: 'Add success hash',
action: destination,
})
genie.makeWish(moveToSuccess)
expect(window.location.href).toBe(destination)
// Cannot really test the new tab action, but if I could, it would look like this:
// wish = genie({
// magicWords: 'Open GenieJS repo',
// action: {
// destination: 'http://www.github.com/kentcdodds/genie',
// openNewTab: true
// }
// });
// genie.makeWish(wish);
})
})
})
})
describe('#reset', () => {
beforeEach(prepForTest)
test('should reset all options', () => {
const originalOptions = genie.options()
const wish = genie(fillInWish())
genie.makeWish(wish)
expect(genie.options()).not.toBe(originalOptions)
genie.reset()
})
})
// End registration
describe('#deregisterWish #deregisterWishesWithContex', () => {
beforeEach(prepForTest)
const allWishCount = 5
let wish1, allWishes
beforeEach(done => {
wish1 = genie(fillInWish())
genie(
fillInWish({
context: 'context1',
}),
)
genie(
fillInWish({
context: 'context1',
}),
)
genie(
fillInWish({
context: 'context2',
}),
)
genie(
fillInWish({
context: 'context2',
}),
)
done()
})
test('should have one less wish when a wish is deregistered', () => {
allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(allWishCount)
genie.deregisterWish(wish1)
allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(allWishCount - 1)
})
test('should remove only wishes in a given context (excluding the default context) when deregisterWishesWithContext is called', () => {
allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(allWishCount)
genie.deregisterWishesWithContext('context1')
allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(allWishCount - 2)
})
})
// End #deregisterWish #deregisterWishesWithContex
describe('#context #addContext #removeContext', () => {
beforeEach(prepForTest)
let defaultContextWish, complexContextNone
beforeEach(done => {
defaultContextWish = genie(fillInWish())
genie(
fillInWish({
context: 'context1',
}),
)
genie(
fillInWish({
context: 'context2',
}),
)
genie(
fillInWish({
context: ['context3'],
}),
)
genie(
fillInWish({
context: ['context1', 'context2', 'context3'],
}),
)
genie(
fillInWish({
context: {
all: ['context1', 'context2', 'context3'],
},
}),
)
genie(
fillInWish({
context: {
any: ['context1', 'context3', 'context5'],
},
}),
)
complexContextNone = genie(
fillInWish({
context: {
none: ['context1', 'context2'],
},
}),
)
genie(
fillInWish({
context: {
all: ['context1', 'context3'],
any: ['context4', 'context5'],
none: ['context2'],
},
}),
)
done()
})
test('should have all wishes when genie.context is default', () => {
expect(genie.getMatchingWishes()).toHaveLength(9)
})
test('should have only wishes with default context when genie.context is not default', () => {
genie.context('different-context')
const matchingWishes = genie.getMatchingWishes()
expect(matchingWishes).toHaveLength(2)
expect(matchingWishes[0]).toBe(complexContextNone)
expect(matchingWishes[1]).toBe(defaultContextWish)
})
test('should have only in context wishes (including default context wishes) when genie.context is not default', () => {
genie.context('context1')
expect(genie.getMatchingWishes()).toHaveLength(4)
})
test('should be able to have multiple contexts', () => {
genie.context(['context1', 'context2'])
expect(genie.getMatchingWishes()).toHaveLength(5)
})
test('should be able to add a string context', () => {
genie.context('context1')
genie.addContext('context2')
expect(genie.getMatchingWishes()).toHaveLength(5)
})
test('should be able to add an array of contexts', () => {
genie.context('context1')
genie.addContext(['context2', 'context3'])
expect(genie.getMatchingWishes()).toHaveLength(7)
})
test('should be able to remove string context', () => {
genie.context(['context1', 'context2'])
expect(genie.getMatchingWishes()).toHaveLength(5)
genie.removeContext('context1')
expect(genie.getMatchingWishes()).toHaveLength(3)
})
test('should be able to remove an array of contexts', () => {
genie.context(['context1', 'context2', 'context3'])
expect(genie.getMatchingWishes()).toHaveLength(7)
genie.removeContext(['context1', 'context2'])
expect(genie.getMatchingWishes()).toHaveLength(5)
})
test('should be able to manage complex contexts', () => {
genie.context(['context1', 'context3', 'context5'])
const allWishes = genie.getMatchingWishes()
expect(allWishes).toHaveLength(6)
})
}) // end #context #addContext #removeContext
describe('#getMatchingWishes', () => {
beforeEach(prepForTest)
let wishes, wishesArray
beforeEach(() => {
wishes = {}
wishesArray = []
wishes.equal = genie(
fillInWish({
magicWords: 'tTOtc', // equal
}),
)
wishesArray.push(wishes.equal)
wishes.equal2 = genie(
fillInWish({
magicWords: ['First Magic Word', 'tTOtc'], // equal 2nd magic word
}),
)
wishesArray.push(wishes.equal2)
wishes.contains = genie(
fillInWish({
magicWords: 'The ttotc container', // contains
}),
)
wishesArray.push(wishes.contains)
wishes.contains2 = genie(
fillInWish({
magicWords: ['First Magic Word', 'The ttotc container'], // contains 2nd magic word
}),
)
wishesArray.push(wishes.contains2)
wishes.acronym = genie(
fillInWish({
magicWords: 'The Tail of Two Cities', // acronym
}),
)
wishesArray.push(wishes.acronym)
wishes.acronym2 = genie(
fillInWish({
magicWords: ['First Magic Word', 'The Tail of Two Cities'], // acronym 2nd magic word
}),
)
wishesArray.push(wishes.acronym2)
wishes.match = genie(
fillInWish({
magicWords: 'The Tail of Forty Cities', // match
}),
)
wishesArray.push(wishes.match)
wishes.match2 = genie(
fillInWish({
magicWords: ['First Magic Word', 'The Tail of Forty Cities'], // match 2nd magic word
}),
)
wishesArray.push(wishes.match2)
wishes.noMatch = genie(
fillInWish({
magicWords: 'no match',
}),
)
wishesArray.push(wishes.noMatch)
})
test('should return wishes in order of most recently registered when not given any params', () => {
const allWishes = genie.getMatchingWishes()
let j = wishesArray.length - 1
for (let i = 0; i < allWishes.length && j >= 0; i++, j--) {
expect(allWishes[i]).toBe(wishesArray[j])
}
})
test('should match equal, contains, acronym, and then match with the second magic word match coming after the first', () => {
const ttotcAcronym = 'ttotc'
// Even though they were registered in reverse order, the matching should follow this pattern
const matchingWishes = genie.getMatchingWishes(ttotcAcronym)
expect(matchingWishes).toHaveLength(wishesArray.length - 1)
expect(matchingWishes[0]).toBe(wishes.equal)
expect(matchingWishes[1]).toBe(wishes.equal2)
expect(matchingWishes[2]).toBe(wishes.contains)
expect(matchingWishes[3]).toBe(wishes.contains2)
expect(matchingWishes[4]).toBe(wishes.acronym)
expect(matchingWishes[5]).toBe(wishes.acronym2)
expect(matchingWishes[6]).toBe(wishes.match)
expect(matchingWishes[7]).toBe(wishes.match2)
})
// eslint-disable-next-line max-statements
test('should match entered magic words before anything else', () => {
genie.makeWish(wishes.contains, 'tt')
// This shouldn't affect the results of a search with more text
genie.makeWish(wishes.match, 'ttot')
let matchingWishes = genie.getMatchingWishes('ttot')
expect(matchingWishes).toHaveLength(wishesArray.length - 1)
expect(matchingWishes[0]).toBe(wishes.match)
expect(matchingWishes[1]).toBe(wishes.equal) // starts with (not equal) in this case
expect(matchingWishes[2]).toBe(wishes.equal2) // starts with 2 in this case
expect(matchingWishes[3]).toBe(wishes.contains)
expect(matchingWishes[4]).toBe(wishes.contains2)
expect(matchingWishes[5]).toBe(wishes.acronym)
expect(matchingWishes[6]).toBe(wishes.acronym2)
expect(matchingWishes[7]).toBe(wishes.match2)
genie.makeWish(wishes.match2, 'ttotc')
matchingWishes = genie.getMatchingWishes('ttot')
expect(matchingWishes).toHaveLength(wishesArray.length - 1)
expect(matchingWishes[0]).toBe(wishes.match)
expect(matchingWishes[1]).toBe(wishes.match2)
expect(matchingWishes[2]).toBe(wishes.equal) // starts with in this case
expect(matchingWishes[3]).toBe(wishes.equal2) // starts with 2 in this case
expect(matchingWishes[4]).toBe(wishes.contains)
expect(matchingWishes[5]).toBe(wishes.contains2)
expect(matchingWishes[6]).toBe(wishes.acronym)
expect(matchingWishes[7]).toBe(wishes.acronym2)
matchingWishes = genie.getMatchingWishes('ttotc')
expect(matchingWishes).toHaveLength(wishesArray.length - 1)
expect(matchingWishes[0]).toBe(wishes.match2)
expect(matchingWishes[1]).toBe(wishes.equal)
expect(matchingWishes[2]).toBe(wishes.equal2)
expect(matchingWishes[3]).toBe(wishes.contains)
expect(matchingWishes[4]).toBe(wishes.contains2)
expect(matchingWishes[5]).toBe(wishes.acronym)
expect(matchingWishes[6]).toBe(wishes.acronym2)
expect(matchingWishes[7]).toBe(wishes.match)
})
test('should follow the rules with "on deck" and "king of the hill"', () => {
const fred = wishes.contains2
const ethel = wishes.acronym2
const lucy = wishes.match2
const wordToGet = 'magic'
// In opposite order of their registration
let mertzMatch = genie.getMatchingWishes(wordToGet)
expect(mertzMatch[0]).toBe(lucy)
expect(mertzMatch[1]).toBe(ethel)
expect(mertzMatch[2]).toBe(fred)
// In order of called then opposite registration
genie.makeWish(ethel, wordToGet)
mertzMatch = genie.getMatchingWishes(wordToGet)
expect(mertzMatch[0]).toBe(ethel)
expect(mertzMatch[1]).toBe(lucy)
expect(mertzMatch[2]).toBe(fred)
/*
* More complicated here. A specific wish must be called
* twice in a row for a specific magic word for it to
* be lucy if that magic word already has a wish
* associated with it. So lucy must be called with
* 'mertz' twice in a row before she can take the
* top spot.
*/
genie.makeWish(lucy, wordToGet)
mertzMatch = genie.getMatchingWishes(wordToGet)
expect(mertzMatch[0]).toBe(ethel)
expect(mertzMatch[1]).toBe(lucy)
expect(mertzMatch[2]).toBe(fred)
/*
* Lucy is now king of the hill.
* Ethel is second, and fred isn't
* even on the hill at all...
*/
genie.makeWish(lucy, wordToGet)
mertzMatch = genie.getMatchingWishes(wordToGet)
expect(mertzMatch[0]).toBe(lucy)
expect(mertzMatch[1]).toBe(ethel)
expect(mertzMatch[2]).toBe(fred)
/*
* De-registering lucy and making a
* wish with fred will place ethel as
* king of the hill and fred as second
*/
genie.deregisterWish(lucy)
genie.makeWish(fred, wordToGet)
mertzMatch = genie.getMatchingWishes(wordToGet)
expect(mertzMatch).toHaveLength(3)
expect(mertzMatch[0]).toBe(ethel)
expect(mertzMatch[1]).toBe(fred)
})
})
describe('#enabled', () => {
describe('returnOnDisabled behavior when disabled', () => {
beforeEach(prepForTest)
test('should cause functions to return a reasonable empty return when enabled', () => {
genie.enabled(false)
expect(genie()).toEqual({})
expect(genie.getMatchingWishes()).toEqual([])
expect(genie.makeWish()).toEqual({})
expect(genie.options()).toEqual({})
expect(genie.deregisterWish()).toEqual({})
expect(genie.reset()).toEqual({})
expect(genie.context()).toEqual([])
expect(genie.revertContext()).toEqual([])
expect(genie.restoreContext()).toEqual([])
expect(genie.enabled()).toBe(false)
expect(genie.returnOnDisabled()).toBe(true)
})
test('should cause functions to return a reasonable empty return when disabled', () => {
genie.returnOnDisabled(false)
genie.enabled(false)
expect(genie()).toBeNull()
expect(genie.getMatchingWishes()).toBeNull()
expect(genie.makeWish()).toBeNull()
expect(genie.options()).toBeNull()
expect(genie.deregisterWish()).toBeNull()
expect(genie.reset()).toBeNull()
expect(genie.context()).toBeNull()
expect(genie.revertContext()).toBeNull()
expect(genie.restoreContext()).toBeNull()
expect(genie.enabled()).toBe(false) // Special case. Enabled always runs.
expect(genie.returnOnDisabled()).toBeNull()
})
})
})
// UTIL FUNCTIONS
function fillInWish(defaults) {
defaults = defaults || {}
if (typeof defaults === 'string') {
defaults = {
magicWords: defaults,
}
}
return createWishWithDefaults(defaults)
}
function createWishWithDefaults(defaults) {
return {
id: defaults.id,
context: defaults.context,
data: defaults.data,
magicWords: defaults.magicWords || 'magicWords',
action: defaults.action || function defaultAction() {},
}
}
function prepForTest(done) {
genie.reset()
genie.restoreContext()
genie.enabled(true)
genie.returnOnDisabled(true)
if (done) {
done()
}
}