| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- // Required for exposing test results to the Sauce Labs API.
- // Can be removed when the following issue is fixed:
- // https://github.com/axemclion/grunt-saucelabs/issues/84
- QUnit.done(function (details) {
- window.global_test_results = details;
- });
-
-
- var lifecycle = {
- teardown: function () {
- $.cookie.defaults = {};
- delete $.cookie.raw;
- delete $.cookie.json;
- $.each($.cookie(), $.removeCookie);
- }
- };
-
-
- module('read', lifecycle);
-
- test('simple value', function () {
- expect(1);
- document.cookie = 'c=v';
- strictEqual($.cookie('c'), 'v', 'should return value');
- });
-
- test('empty value', function () {
- 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.
- $.cookie('c', '');
- strictEqual($.cookie('c'), '', 'should return value');
- });
-
- test('not existing', function () {
- expect(1);
- strictEqual($.cookie('whatever'), undefined, 'return undefined');
- });
-
- test('RFC 2068 quoted string', function () {
- expect(1);
- document.cookie = 'c="v@address.com\\"\\\\\\""';
- strictEqual($.cookie('c'), 'v@address.com"\\"', 'should decode RFC 2068 quoted string');
- });
-
- test('decode', function () {
- expect(1);
- document.cookie = encodeURIComponent(' c') + '=' + encodeURIComponent(' v');
- strictEqual($.cookie(' c'), ' v', 'should decode key and value');
- });
-
- test('decode pluses to space for server side written cookie', function () {
- expect(1);
- document.cookie = 'c=foo+bar';
- strictEqual($.cookie('c'), 'foo bar', 'should convert pluses back to space');
- });
-
- test('raw = true', function () {
- expect(2);
- $.cookie.raw = true;
-
- document.cookie = 'c=%20v';
- strictEqual($.cookie('c'), '%20v', 'should not decode value');
-
- // see https://github.com/carhartl/jquery-cookie/issues/50
- $.cookie('c', 'foo=bar');
- strictEqual($.cookie('c'), 'foo=bar', 'should include the entire value');
- });
-
- test('json = true', function () {
- expect(1);
-
- if ('JSON' in window) {
- $.cookie.json = true;
- $.cookie('c', { foo: 'bar' });
- deepEqual($.cookie('c'), { foo: 'bar' }, 'should parse JSON');
- } else {
- ok(true);
- }
- });
-
- test('not existing with json = true', function () {
- expect(1);
-
- if ('JSON' in window) {
- $.cookie.json = true;
- strictEqual($.cookie('whatever'), undefined, "won't throw exception");
- } else {
- ok(true);
- }
- });
-
- test('string with json = true', function () {
- expect(1);
-
- if ('JSON' in window) {
- $.cookie.json = true;
- $.cookie('c', 'v');
- strictEqual($.cookie('c'), 'v', 'should return value');
- } else {
- ok(true);
- }
- });
-
- test('invalid JSON string with json = true', function () {
- expect(1);
-
- if ('JSON' in window) {
- $.cookie('c', 'v');
- $.cookie.json = true;
- strictEqual($.cookie('c'), undefined, "won't throw exception, returns undefined");
- } else {
- ok(true);
- }
- });
-
- test('invalid URL encoding', function () {
- expect(1);
- document.cookie = 'bad=foo%';
- strictEqual($.cookie('bad'), undefined, "won't throw exception, returns undefined");
- // Delete manually here because it requires raw === true...
- $.cookie.raw = true;
- $.removeCookie('bad');
- });
-
- asyncTest('malformed cookie value in IE (#88, #117)', function () {
- expect(1);
- // Sandbox in an iframe so that we can poke around with document.cookie.
- var iframe = $('<iframe src="malformed_cookie.html"></iframe>')[0];
- $(iframe).on('load', function () {
- start();
- if (iframe.contentWindow.ok) {
- 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+.
- ok(true, 'N/A');
- }
- });
- document.body.appendChild(iframe);
- });
-
- test('Call to read all when there are cookies', function () {
- $.cookie('c', 'v');
- $.cookie('foo', 'bar');
- deepEqual($.cookie(), { c: 'v', foo: 'bar' }, 'returns object containing all cookies');
- });
-
- test('Call to read all when there are no cookies at all', function () {
- deepEqual($.cookie(), {}, 'returns empty object');
- });
-
- test('Call to read all with json: true', function () {
- $.cookie.json = true;
- $.cookie('c', { foo: 'bar' });
- deepEqual($.cookie(), { c: { foo: 'bar' } }, 'returns JSON parsed cookies');
- });
-
- test('Call to read all with a badly encoded cookie', function () {
- expect(1);
- document.cookie = 'bad=foo%';
- document.cookie = 'good=foo';
- deepEqual($.cookie(), { good: 'foo' }, 'returns object containing all decodable cookies');
- // Delete manually here because it requires raw === true...
- $.cookie.raw = true;
- $.removeCookie('bad');
- });
-
-
- module('write', lifecycle);
-
- test('String primitive', function () {
- expect(1);
- $.cookie('c', 'v');
- strictEqual($.cookie('c'), 'v', 'should write value');
- });
-
- test('String object', function () {
- expect(1);
- $.cookie('c', new String('v'));
- strictEqual($.cookie('c'), 'v', 'should write value');
- });
-
- test('value "[object Object]"', function () {
- expect(1);
- $.cookie('c', '[object Object]');
- strictEqual($.cookie('c'), '[object Object]', 'should write value');
- });
-
- test('number', function () {
- expect(1);
- $.cookie('c', 1234);
- strictEqual($.cookie('c'), '1234', 'should write value');
- });
-
- test('null', function () {
- expect(1);
- $.cookie('c', null);
- strictEqual($.cookie('c'), 'null', 'should write value');
- });
-
- test('undefined', function () {
- expect(1);
- $.cookie('c', undefined);
- strictEqual($.cookie('c'), 'undefined', 'should write value');
- });
-
- test('expires option as days from now', function () {
- expect(1);
- var sevenDaysFromNow = new Date();
- sevenDaysFromNow.setDate(sevenDaysFromNow.getDate() + 21);
- strictEqual($.cookie('c', 'v', { expires: 21 }), 'c=v; expires=' + sevenDaysFromNow.toUTCString(),
- 'should write the cookie string with expires');
- });
-
- test('expires option as fraction of a day', function () {
- expect(1);
-
- var now = new Date().getTime();
- var expires = Date.parse($.cookie('c', 'v', { expires: 0.5 }).replace(/.+expires=/, ''));
-
- // When we were using Date.setDate() fractions have been ignored
- // and expires resulted in the current date. Allow 1000 milliseconds
- // difference for execution time.
- ok(expires > now + 1000, 'should write expires attribute with the correct date');
- });
-
- test('expires option as Date instance', function () {
- expect(1);
- var sevenDaysFromNow = new Date();
- sevenDaysFromNow.setDate(sevenDaysFromNow.getDate() + 7);
- strictEqual($.cookie('c', 'v', { expires: sevenDaysFromNow }), 'c=v; expires=' + sevenDaysFromNow.toUTCString(),
- 'should write the cookie string with expires');
- });
-
- test('return value', function () {
- expect(1);
- strictEqual($.cookie('c', 'v'), 'c=v', 'should return written cookie string');
- });
-
- test('defaults', function () {
- expect(2);
- $.cookie.defaults.path = '/foo';
- ok($.cookie('c', 'v').match(/path=\/foo/), 'should use options from defaults');
- ok($.cookie('c', 'v', { path: '/bar' }).match(/path=\/bar/), 'options argument has precedence');
- });
-
- test('raw = true', function () {
- expect(1);
- $.cookie.raw = true;
- strictEqual($.cookie('c[1]', 'v[1]'), 'c[1]=v[1]', 'should not encode');
- // Delete manually here because it requires raw === true...
- $.removeCookie('c[1]');
- });
-
- test('json = true', function () {
- expect(1);
- $.cookie.json = true;
-
- if ('JSON' in window) {
- $.cookie('c', { foo: 'bar' });
- strictEqual(document.cookie, 'c=' + encodeURIComponent(JSON.stringify({ foo: 'bar' })), 'should stringify JSON');
- } else {
- ok(true);
- }
- });
-
-
- module('removeCookie', lifecycle);
-
- test('deletion', function () {
- expect(1);
- $.cookie('c', 'v');
- $.removeCookie('c');
- strictEqual(document.cookie, '', 'should delete the cookie');
- });
-
- test('when sucessfully deleted', function () {
- expect(1);
- $.cookie('c', 'v');
- strictEqual($.removeCookie('c'), true, 'returns true');
- });
-
- test('when cookie does not exist', function () {
- expect(1);
- strictEqual($.removeCookie('c'), true, 'returns true');
- });
-
- test('when deletion failed', function () {
- expect(1);
- $.cookie('c', 'v');
-
- var originalCookie = $.cookie;
- $.cookie = function () {
- // Stub deletion...
- if (arguments.length === 1) {
- return originalCookie.apply(null, arguments);
- }
- };
-
- strictEqual($.removeCookie('c'), false, 'returns false');
-
- $.cookie = originalCookie;
- });
-
- test('with options', function () {
- expect(1);
- var options = { path: '/' };
- $.cookie('c', 'v', options);
- $.removeCookie('c', options);
- strictEqual(document.cookie, '', 'should delete the cookie');
- });
-
- test('passing options reference', function () {
- expect(1);
- var options = { path: '/' };
- $.cookie('c', 'v', options);
- $.removeCookie('c', options);
- deepEqual(options, { path: '/' }, "won't alter options object");
- });
-
- test('[] used in name', function () {
- expect(1);
- $.cookie.raw = true;
- document.cookie = 'c[1]=foo';
- $.removeCookie('c[1]');
- strictEqual(document.cookie, '', 'delete the cookie');
- });
-
-
- module('conversion', lifecycle);
-
- test('read converter', function() {
- expect(1);
- $.cookie('c', '1');
- strictEqual($.cookie('c', Number), 1, 'converts read value');
- });
-
- test('read converter with raw = true', function() {
- expect(1);
- $.cookie.raw = true;
- $.cookie('c', '1');
- strictEqual($.cookie('c', Number), 1, 'does not decode, but converts read value');
- });
|