forked from js-cookie/js-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.js
663 lines (587 loc) · 17.5 KB
/
tests.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
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
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
/* global Cookies, QUnit, lifecycle, quoted */
/* eslint-disable no-var */
QUnit.module('setup', lifecycle)
QUnit.test('api instance creation', function (assert) {
assert.expect(4)
var api
api = Cookies.withAttributes({ path: '/bar' })
assert.ok(
api.set('c', 'v').match(/c=v; path=\/bar/),
'should set up default cookie attributes'
)
api = Cookies.withAttributes({ sameSite: 'Lax' })
assert.notOk(
api.set('c', 'v').match(/c=v; path=\/bar/),
'should set up cookie attributes each time from original'
)
api = Cookies.withConverter({
write: function (value, name) {
return value.toUpperCase()
}
}).withAttributes({ path: '/foo' })
assert.ok(
api.set('c', 'v').match(/c=V; path=\/foo/),
'should allow setting up converters followed by default cookie attributes'
)
api = Cookies.withAttributes({ path: '/foo' }).withConverter({
write: function (value, name) {
return value.toUpperCase()
}
})
assert.ok(
api.set('c', 'v').match(/c=V; path=\/foo/),
'should allow setting up default cookie attributes followed by converter'
)
})
QUnit.test('api instance with attributes', function (assert) {
assert.expect(3)
// Create a new instance so we don't affect remaining tests...
var api = Cookies.withAttributes({ path: '/' })
delete api.attributes
assert.ok(api.attributes, "won't allow to delete property")
api.attributes = {}
assert.ok(api.attributes.path, "won't allow to reassign property")
api.attributes.path = '/foo'
assert.equal(
api.attributes.path,
'/',
"won't allow to reassign contained properties"
)
})
QUnit.test('api instance with converter', function (assert) {
assert.expect(3)
var readConverter = function (value) {
return value.toUpperCase()
}
// Create a new instance so we don't affect remaining tests...
var api = Cookies.withConverter({
read: readConverter
})
delete api.converter
assert.ok(api.converter, "won't allow to delete property")
api.converter = {}
assert.ok(api.converter.read, "won't allow to reassign property")
api.converter.read = function () {}
assert.equal(
api.converter.read.toString(),
readConverter.toString(),
"won't allow to reassign contained properties"
)
})
// github.com/js-cookie/js-cookie/pull/171
QUnit.test('missing leading semicolon', function (assert) {
assert.expect(1)
var done = assert.async()
var iframe = document.createElement('iframe')
iframe.src = 'missing_semicolon.html'
iframe.addEventListener('load', function () {
assert.ok(
iframe.contentWindow.__ok,
'concatenate with 3rd party script without error'
)
done()
})
document.body.appendChild(iframe)
})
QUnit.module('read', lifecycle)
QUnit.test('simple value', function (assert) {
assert.expect(1)
document.cookie = 'c=v'
assert.strictEqual(Cookies.get('c'), 'v', 'should return value')
})
QUnit.test('empty value', function (assert) {
assert.expect(1)
// IE saves cookies with empty string as "c; ", e.g. without "=" as opposed to EOMB, which
// resulted in a bug while reading such a cookie.
Cookies.set('c', '')
assert.strictEqual(Cookies.get('c'), '', 'should return value')
})
QUnit.test('not existing', function (assert) {
assert.expect(1)
assert.strictEqual(Cookies.get('whatever'), undefined, 'return undefined')
})
// github.com/carhartl/jquery-cookie/issues/50
QUnit.test('equality sign in cookie value', function (assert) {
assert.expect(1)
Cookies.set('c', 'foo=bar')
assert.strictEqual(
Cookies.get('c'),
'foo=bar',
'should include the entire value'
)
})
// github.com/carhartl/jquery-cookie/issues/215
QUnit.test('percent character in cookie value', function (assert) {
assert.expect(1)
document.cookie = 'bad=foo%'
assert.strictEqual(
Cookies.get('bad'),
'foo%',
'should read the percent character'
)
})
QUnit.test(
'unencoded percent character in cookie value mixed with encoded values not permitted',
function (assert) {
assert.expect(1)
document.cookie = 'bad=foo%bar%22baz%qux'
assert.strictEqual(Cookies.get('bad'), undefined, 'should skip reading')
document.cookie = 'bad=foo; expires=Thu, 01 Jan 1970 00:00:00 GMT'
}
)
QUnit.test('lowercase percent character in cookie value', function (assert) {
assert.expect(1)
document.cookie = 'c=%d0%96'
assert.strictEqual(
Cookies.get('c'),
'Ж',
'should decode percent characters case insensitive'
)
})
QUnit.test('Call to read all when there are cookies', function (assert) {
Cookies.set('c', 'v')
Cookies.set('foo', 'bar')
assert.deepEqual(
Cookies.get(),
{ c: 'v', foo: 'bar' },
'returns object containing all cookies'
)
})
QUnit.test(
'Call to read all when there are no cookies at all',
function (assert) {
assert.deepEqual(Cookies.get(), {}, 'returns empty object')
}
)
QUnit.test(
'RFC 6265 - reading cookie-octet enclosed in DQUOTE',
function (assert) {
assert.expect(1)
document.cookie = 'c="v"'
assert.strictEqual(
Cookies.get('c'),
'v',
'should simply ignore quoted strings'
)
}
)
// github.com/js-cookie/js-cookie/issues/196
QUnit.test(
'Call to read cookie when there is another unrelated cookie with malformed encoding in the name',
function (assert) {
assert.expect(2)
document.cookie = '%A1=foo'
document.cookie = 'c=v'
assert.strictEqual(
Cookies.get('c'),
'v',
'should not throw a URI malformed exception when retrieving a single cookie'
)
assert.deepEqual(
Cookies.get(),
{ c: 'v' },
'should not throw a URI malformed exception when retrieving all cookies'
)
document.cookie = '%A1=foo; expires=Thu, 01 Jan 1970 00:00:00 GMT'
}
)
// github.com/js-cookie/js-cookie/pull/62
QUnit.test(
'Call to read cookie when there is another unrelated cookie with malformed encoding in the value',
function (assert) {
assert.expect(2)
document.cookie = 'invalid=%A1'
document.cookie = 'c=v'
assert.strictEqual(
Cookies.get('c'),
'v',
'should not throw a URI malformed exception when retrieving a single cookie'
)
assert.deepEqual(
Cookies.get(),
{ c: 'v' },
'should not throw a URI malformed exception when retrieving all cookies'
)
document.cookie = 'invalid=foo; expires=Thu, 01 Jan 1970 00:00:00 GMT'
}
)
// github.com/js-cookie/js-cookie/issues/145
QUnit.test(
'Call to read cookie when passing an Object Literal as the second argument',
function (assert) {
assert.expect(1)
Cookies.get('name', { path: '' })
assert.strictEqual(document.cookie, '', 'should not create a cookie')
}
)
QUnit.test('Passing `undefined` first argument', function (assert) {
assert.expect(1)
Cookies.set('foo', 'bar')
assert.strictEqual(
Cookies.get(undefined),
undefined,
'should not attempt to retrieve all cookies'
)
})
QUnit.test('Passing `null` first argument', function (assert) {
assert.expect(1)
Cookies.set('foo', 'bar')
assert.strictEqual(
Cookies.get(null),
undefined,
'should not attempt to retrieve all cookies'
)
})
QUnit.module('write', lifecycle)
QUnit.test('String primitive', function (assert) {
assert.expect(1)
Cookies.set('c', 'v')
assert.strictEqual(Cookies.get('c'), 'v', 'should write value')
})
QUnit.test('String object', function (assert) {
/* eslint-disable no-new-wrappers */
assert.expect(1)
Cookies.set('c', new String('v'))
assert.strictEqual(Cookies.get('c'), 'v', 'should write value')
})
QUnit.test('value "[object Object]"', function (assert) {
assert.expect(1)
Cookies.set('c', '[object Object]')
assert.strictEqual(Cookies.get('c'), '[object Object]', 'should write value')
})
QUnit.test('number', function (assert) {
assert.expect(1)
Cookies.set('c', 1234)
assert.strictEqual(Cookies.get('c'), '1234', 'should write value')
})
QUnit.test('null', function (assert) {
assert.expect(1)
Cookies.set('c', null)
assert.strictEqual(Cookies.get('c'), 'null', 'should write value')
})
QUnit.test('undefined', function (assert) {
assert.expect(1)
Cookies.set('c', undefined)
assert.strictEqual(Cookies.get('c'), 'undefined', 'should write value')
})
QUnit.test('expires option as days from now', function (assert) {
assert.expect(1)
var days = 200
var expires = new Date(new Date().valueOf() + days * 24 * 60 * 60 * 1000)
var expected = 'expires=' + expires.toUTCString()
var actual = Cookies.set('c', 'v', { expires: days })
assert.ok(
actual.indexOf(expected) !== -1,
quoted(actual) + ' includes ' + quoted(expected)
)
})
// github.com/carhartl/jquery-cookie/issues/246
QUnit.test('expires option as fraction of a day', function (assert) {
assert.expect(1)
var findValueForAttributeName = function (createdCookie, attributeName) {
var pairs = createdCookie.split('; ')
var foundAttributeValue
pairs.forEach(function (pair) {
if (pair.split('=')[0] === attributeName) {
foundAttributeValue = pair.split('=')[1]
}
})
return foundAttributeValue
}
var now = new Date()
var stringifiedDate = findValueForAttributeName(
Cookies.set('c', 'v', { expires: 0.5 }),
'expires'
)
var expires = new Date(stringifiedDate)
// When we were using Date.setDate() fractions have been ignored
// and expires resulted in the current date. Allow 1000 milliseconds
// difference for execution time because new Date() can be different,
// even when it's run synchronously.
// See https://github.com/js-cookie/js-cookie/commit/ecb597b65e4c477baa2b30a2a5a67fdaee9870ea#commitcomment-20146048.
var assertion = expires.getTime() > now.getTime() + 1000
var message =
quoted(expires.getTime()) +
' should be greater than ' +
quoted(now.getTime())
assert.ok(assertion, message)
})
QUnit.test('expires option as Date instance', function (assert) {
assert.expect(1)
var sevenDaysFromNow = new Date()
sevenDaysFromNow.setDate(sevenDaysFromNow.getDate() + 7)
var expected = 'expires=' + sevenDaysFromNow.toUTCString()
var actual = Cookies.set('c', 'v', { expires: sevenDaysFromNow })
assert.ok(
actual.indexOf(expected) !== -1,
quoted(actual) + ' includes ' + quoted(expected)
)
})
QUnit.test('return value', function (assert) {
assert.expect(1)
var expected = 'c=v'
var actual = Cookies.set('c', 'v').substring(0, expected.length)
assert.strictEqual(actual, expected, 'should return written cookie string')
})
QUnit.test('predefined path attribute', function (assert) {
assert.expect(1)
assert.ok(
Cookies.set('c', 'v').match(/path=\/$/),
'should use root path when not configured otherwise'
)
})
QUnit.test('API for changing defaults', function (assert) {
assert.expect(3)
var api
api = Cookies.withAttributes({ path: '/foo' })
assert.ok(
api.set('c', 'v').match(/path=\/foo/),
'should use attributes from defaults'
)
assert.ok(
api.set('c', 'v', { path: '/baz' }).match(/path=\/baz/),
'attributes argument has precedence'
)
api = Cookies.withAttributes({ path: undefined })
assert.notOk(api.set('c', 'v').match(/path=/), 'should not set any path')
Cookies.remove('c')
})
QUnit.test('true secure value', function (assert) {
assert.expect(1)
var expected = 'c=v; path=/; secure'
var actual = Cookies.set('c', 'v', { secure: true })
assert.strictEqual(actual, expected, 'should add secure attribute')
})
// github.com/js-cookie/js-cookie/pull/54
QUnit.test('false secure value', function (assert) {
assert.expect(1)
var expected = 'c=v; path=/'
var actual = Cookies.set('c', 'v', { secure: false })
assert.strictEqual(
actual,
expected,
'false should not modify path in cookie string'
)
})
// github.com/js-cookie/js-cookie/issues/276
QUnit.test('unofficial attribute', function (assert) {
assert.expect(1)
var expected = 'c=v; path=/; unofficial=anything'
var actual = Cookies.set('c', 'v', {
unofficial: 'anything'
})
assert.strictEqual(
expected,
actual,
'should write the cookie string with unofficial attribute'
)
})
QUnit.test('undefined attribute value', function (assert) {
assert.expect(5)
assert.strictEqual(
Cookies.set('c', 'v', {
expires: undefined
}),
'c=v; path=/',
'should not write undefined expires attribute'
)
assert.strictEqual(
Cookies.set('c', 'v', {
path: undefined
}),
'c=v',
'should not write undefined path attribute'
)
assert.strictEqual(
Cookies.set('c', 'v', {
domain: undefined
}),
'c=v; path=/',
'should not write undefined domain attribute'
)
assert.strictEqual(
Cookies.set('c', 'v', {
secure: undefined
}),
'c=v; path=/',
'should not write undefined secure attribute'
)
assert.strictEqual(
Cookies.set('c', 'v', {
unofficial: undefined
}),
'c=v; path=/',
'should not write undefined unofficial attribute'
)
})
// github.com/js-cookie/js-cookie/issues/396
QUnit.test(
'sanitization of attributes to prevent XSS from untrusted input',
function (assert) {
assert.expect(1)
assert.strictEqual(
Cookies.set('c', 'v', {
path: '/;domain=sub.domain.com',
domain: 'site.com;remove_this',
customAttribute: 'value;;remove_this'
}),
'c=v; path=/; domain=site.com; customAttribute=value',
'should not allow semicolon in a cookie attribute'
)
}
)
QUnit.module('remove', lifecycle)
QUnit.test('deletion', function (assert) {
assert.expect(1)
Cookies.set('c', 'v')
Cookies.remove('c')
assert.strictEqual(document.cookie, '', 'should delete the cookie')
})
QUnit.test('with attributes', function (assert) {
assert.expect(1)
var attributes = { path: '/' }
Cookies.set('c', 'v', attributes)
Cookies.remove('c', attributes)
assert.strictEqual(document.cookie, '', 'should delete the cookie')
})
QUnit.test('passing attributes reference', function (assert) {
assert.expect(1)
var attributes = {}
Cookies.remove('foo', attributes)
assert.deepEqual(attributes, {}, "won't alter attributes object")
})
QUnit.module('Custom converters', lifecycle)
// github.com/carhartl/jquery-cookie/pull/166
QUnit.test(
'provide a way for decoding characters encoded by the escape function',
function (assert) {
assert.expect(1)
document.cookie = 'c=%u5317%u4eac'
assert.strictEqual(
Cookies.withConverter({ read: unescape }).get('c'),
'北京',
'should convert chinese characters correctly'
)
}
)
QUnit.test(
'should decode a malformed char that matches the decodeURIComponent regex',
function (assert) {
assert.expect(1)
document.cookie = 'c=%E3'
var cookies = Cookies.withConverter({ read: unescape })
assert.strictEqual(
cookies.get('c'),
'ã',
'should convert the character correctly'
)
cookies.remove('c', {
path: ''
})
}
)
QUnit.test(
'should be able to conditionally decode a single malformed cookie',
function (assert) {
assert.expect(2)
var cookies = Cookies.withConverter({
read: function (value, name) {
if (name === 'escaped') {
return unescape(value)
}
}
})
document.cookie = 'escaped=%u5317'
assert.strictEqual(
cookies.get('escaped'),
'北',
'should use custom read converter when retrieving single cookies'
)
assert.deepEqual(
cookies.get(),
{
escaped: '北'
},
'should use custom read converter when retrieving all cookies'
)
}
)
// github.com/js-cookie/js-cookie/issues/70
QUnit.test('should be able to set up a write decoder', function (assert) {
assert.expect(1)
Cookies.withConverter({
write: function (value) {
return value.replace('+', '%2B')
}
}).set('c', '+')
assert.strictEqual(
document.cookie,
'c=%2B',
'should call the write converter'
)
})
QUnit.test('should be able to set up a read decoder', function (assert) {
assert.expect(1)
document.cookie = 'c=%2B'
var cookies = Cookies.withConverter({
read: function (value) {
return value.replace('%2B', '+')
}
})
assert.strictEqual(cookies.get('c'), '+', 'should call the read converter')
})
QUnit.test('should be able to extend read decoder', function (assert) {
assert.expect(1)
document.cookie = 'c=A%23'
var cookies = Cookies.withConverter({
read: function (value) {
var decoded = value.replace('A', 'a')
return Cookies.converter.read(decoded)
}
})
assert.strictEqual(cookies.get('c'), 'a#', 'should call both read converters')
})
QUnit.test('should be able to extend write decoder', function (assert) {
assert.expect(1)
Cookies.withConverter({
write: function (value) {
var encoded = value.replace('a', 'A')
return Cookies.converter.write(encoded)
}
}).set('c', 'a%')
assert.strictEqual(
document.cookie,
'c=A%25',
'should call both write converters'
)
})
QUnit.test(
'should be able to convert incoming, non-String values',
function (assert) {
assert.expect(1)
Cookies.withConverter({
write: function (value) {
return JSON.stringify(value)
}
}).set('c', { foo: 'bar' })
assert.strictEqual(
document.cookie,
'c={"foo":"bar"}',
'should convert object as JSON string'
)
}
)
QUnit.module('noConflict', lifecycle)
QUnit.test('do not conflict with existent globals', function (assert) {
assert.expect(2)
var Cookies = window.Cookies.noConflict()
Cookies.set('c', 'v')
assert.strictEqual(Cookies.get('c'), 'v', 'should work correctly')
assert.strictEqual(
window.Cookies,
'existent global',
'should restore the original global'
)
window.Cookies = Cookies
})
/* eslint-enable no-var */