forked from js-cookie/js-cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.js
463 lines (398 loc) · 16.3 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
'use strict';
/*global lifecycle: true*/
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('percent character in cookie value mixed with encoded values', function (assert) {
assert.expect(1);
document.cookie = 'bad=foo%bar%22baz%bax%3D';
assert.strictEqual(Cookies.get('bad'), 'foo%bar"baz%bax=', 'should read the percent character');
});
// github.com/carhartl/jquery-cookie/pull/88
// github.com/carhartl/jquery-cookie/pull/117
QUnit.test('malformed cookie value in IE', function (assert) {
assert.expect(1);
var done = assert.async();
// Sandbox in an iframe so that we can poke around with document.cookie.
var iframe = document.createElement('iframe');
iframe.src = 'malformed_cookie.html';
addEvent(iframe, 'load', function () {
if (iframe.contentWindow.ok) {
assert.strictEqual(iframe.contentWindow.testValue, 'two', 'reads all cookie values, skipping duplicate occurences of "; "');
} else {
// Skip the test where we can't stub document.cookie using
// Object.defineProperty. Seems to work fine in
// Chrome, Firefox and IE 8+.
assert.ok(true, 'N/A');
}
done();
});
document.body.appendChild(iframe);
});
// github.com/js-cookie/js-cookie/pull/171
QUnit.test('missing leading semicolon', function (assert) {
assert.expect(1);
var done = assert.async();
// Sandbox in an iframe so that we can poke around with document.cookie.
var iframe = document.createElement('iframe');
var loadedSuccessfully = true;
iframe.src = 'missing_semicolon.html';
addEvent(iframe, 'load', function () {
iframe.contentWindow.onerror = function () {
loadedSuccessfully = false;
};
assert.strictEqual(loadedSuccessfully, true, 'can\'t throw Object is not a function error');
done();
});
document.body.appendChild(iframe);
});
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 = 'BS%BS=1';
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 = 'BS%BS=1; 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');
Cookies.withConverter(unescape).remove('invalid');
});
// 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');
});
// github.com/js-cookie/js-cookie/issues/238
QUnit.test('Call to read cookie when there is a window.json variable globally', function (assert) {
assert.expect(1);
window.json = true;
Cookies.set('boolean', true);
assert.strictEqual(typeof Cookies.get('boolean'), 'string', 'should not change the returned type');
// IE 6-8 throw an exception if trying to delete a window property
// See stackoverflow.com/questions/1073414/deleting-a-window-property-in-ie/1824228
try {
delete window.json;
} catch (e) {}
});
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) {
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 sevenDaysFromNow = new Date();
sevenDaysFromNow.setDate(sevenDaysFromNow.getDate() + 21);
var expected = 'expires=' + sevenDaysFromNow.toUTCString();
var actual = Cookies.set('c', 'v', { expires: 21 });
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('default path attribute', function (assert) {
assert.expect(1);
assert.ok(Cookies.set('c', 'v').match(/path=\//), 'should read the default path');
});
QUnit.test('API for changing defaults', function (assert) {
assert.expect(3);
Cookies.defaults.path = '/foo';
assert.ok(Cookies.set('c', 'v').match(/path=\/foo/), 'should use attributes from defaults');
Cookies.remove('c', { path: '/foo' });
assert.ok(Cookies.set('c', 'v', { path: '/bar' }).match(/path=\/bar/), 'attributes argument has precedence');
Cookies.remove('c', { path: '/bar' });
delete Cookies.defaults.path;
assert.ok(Cookies.set('c', 'v').match(/path=\//), 'should roll back to the default path');
});
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');
});
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 = { path: '/' };
Cookies.set('c', 'v', attributes);
Cookies.remove('c', attributes);
assert.deepEqual(attributes, { path: '/' }, 'won\'t alter attributes object');
});
QUnit.module('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(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(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(4);
var cookies = Cookies.withConverter(function (value, name) {
if (name === 'escaped') {
return unescape(value);
}
});
document.cookie = 'escaped=%u5317';
assert.strictEqual(cookies.get('escaped'), '北', 'should use a custom method for escaped cookie');
document.cookie = 'encoded=%E4%BA%AC';
assert.strictEqual(cookies.get('encoded'), '京', 'should use the default encoding for the rest');
assert.deepEqual(cookies.get(), {
escaped: '北',
encoded: '京'
}, 'should retrieve everything');
Object.keys(cookies.get()).forEach(function (name) {
cookies.remove(name, {
path: ''
});
});
assert.strictEqual(document.cookie, '', 'should remove everything');
});
// github.com/js-cookie/js-cookie/issues/70
QUnit.test('should be able to create 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 use read and write 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.module('JSON handling', lifecycle);
QUnit.test('Number', function (assert) {
assert.expect(2);
Cookies.set('c', 1);
assert.strictEqual(Cookies.getJSON('c'), 1, 'should handle a Number');
assert.strictEqual(Cookies.get('c'), '1', 'should return a String');
});
QUnit.test('Boolean', function (assert) {
assert.expect(2);
Cookies.set('c', true);
assert.strictEqual(Cookies.getJSON('c'), true, 'should handle a Boolean');
assert.strictEqual(Cookies.get('c'), 'true', 'should return a Boolean');
});
QUnit.test('Array Literal', function (assert) {
assert.expect(2);
Cookies.set('c', ['v']);
assert.deepEqual(Cookies.getJSON('c'), ['v'], 'should handle Array Literal');
assert.strictEqual(Cookies.get('c'), '["v"]', 'should return a String');
});
QUnit.test('Array Constructor', function (assert) {
/*jshint -W009 */
assert.expect(2);
var value = new Array();
value[0] = 'v';
Cookies.set('c', value);
assert.deepEqual(Cookies.getJSON('c'), ['v'], 'should handle Array Constructor');
assert.strictEqual(Cookies.get('c'), '["v"]', 'should return a String');
});
QUnit.test('Object Literal', function (assert) {
assert.expect(2);
Cookies.set('c', {k: 'v'});
assert.deepEqual(Cookies.getJSON('c'), {k: 'v'}, 'should handle Object Literal');
assert.strictEqual(Cookies.get('c'), '{"k":"v"}', 'should return a String');
});
QUnit.test('Object Constructor', function (assert) {
/*jshint -W010 */
assert.expect(2);
var value = new Object();
value.k = 'v';
Cookies.set('c', value);
assert.deepEqual(Cookies.getJSON('c'), {k: 'v'}, 'should handle Object Constructor');
assert.strictEqual(Cookies.get('c'), '{"k":"v"}', 'should return a String');
});
QUnit.test('Use String(value) for unsupported objects that do not stringify into JSON', function (assert) {
assert.expect(2);
Cookies.set('date', new Date(2015, 4, 13, 0, 0, 0, 0));
assert.strictEqual(Cookies.get('date').indexOf('"'), -1, 'should not quote the stringified Date object');
assert.strictEqual(Cookies.getJSON('date').indexOf('"'), -1, 'should not quote the stringified Date object');
});
QUnit.test('Call to read all cookies with mixed json', function (assert) {
Cookies.set('c', { foo: 'bar' });
Cookies.set('c2', 'v');
assert.deepEqual(Cookies.getJSON(), { c: { foo: 'bar' }, c2: 'v' }, 'returns JSON parsed cookies');
assert.deepEqual(Cookies.get(), { c: '{"foo":"bar"}', c2: 'v' }, 'returns unparsed cookies');
});
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;
});