-
-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathcookie.js
More file actions
125 lines (105 loc) · 4.24 KB
/
cookie.js
File metadata and controls
125 lines (105 loc) · 4.24 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
var assert = require('assert')
var cookies = require('..')
describe('new Cookie(name, value, [options])', function () {
it('should have correct constructor', function () {
var cookie = new cookies.Cookie('foo', 'bar')
assert.equal(cookie.constructor, cookies.Cookie)
})
it('should throw on invalid name', function () {
assert.throws(function () {
new cookies.Cookie('foo\n', 'bar')
}, /argument name is invalid/)
})
it('should throw on invalid value', function () {
assert.throws(function () {
new cookies.Cookie('foo', 'bar\n')
}, /argument value is invalid/)
})
it('should throw on invalid path', function () {
assert.throws(function () {
new cookies.Cookie('foo', 'bar', { path: '/\n' })
}, /option path is invalid/)
})
it('should throw on invalid domain', function () {
assert.throws(function () {
new cookies.Cookie('foo', 'bar', { domain: 'example.com\n' })
}, /option domain is invalid/)
})
it('should throw on number value', function () {
assert.throws(function () {
new cookies.Cookie('foo', 0)
}, /argument value is not a string/)
})
it('should throw on boolean value', function () {
assert.throws(function () {
new cookies.Cookie('foo', false)
}, /argument value is not a string/)
})
describe('options', function () {
describe('maxage', function () {
it('should set the .maxAge property', function () {
var cookie = new cookies.Cookie('foo', 'bar', { maxage: 86400 })
assert.equal(cookie.maxAge, 86400)
})
it('should set the .maxage property', function () {
var cookie = new cookies.Cookie('foo', 'bar', { maxage: 86400 })
assert.equal(cookie.maxage, 86400)
})
})
describe('maxAge', function () {
it('should set the .maxAge property', function () {
var cookie = new cookies.Cookie('foo', 'bar', { maxAge: 86400 })
assert.equal(cookie.maxAge, 86400)
})
it('should set the .maxage property', function () {
var cookie = new cookies.Cookie('foo', 'bar', { maxAge: 86400 })
assert.equal(cookie.maxage, 86400)
})
})
describe('sameSite', function () {
it('should set the .sameSite property', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: true })
assert.equal(cookie.sameSite, true)
})
it('should default to false', function () {
var cookie = new cookies.Cookie('foo', 'bar')
assert.equal(cookie.sameSite, false)
})
it('should throw on invalid value', function () {
assert.throws(function () {
new cookies.Cookie('foo', 'bar', { sameSite: 'foo' })
}, /option sameSite is invalid/)
})
describe('when set to "false"', function () {
it('should not set "samesite" attribute in header', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: false })
assert.equal(cookie.toHeader(), 'foo=bar; path=/; httponly')
})
})
describe('when set to "true"', function () {
it('should set "samesite=strict" attribute in header', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: true })
assert.equal(cookie.toHeader(), 'foo=bar; path=/; samesite=strict; httponly')
})
})
describe('when set to "lax"', function () {
it('should set "samesite=lax" attribute in header', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: 'lax' })
assert.equal(cookie.toHeader(), 'foo=bar; path=/; samesite=lax; httponly')
})
})
describe('when set to "strict"', function () {
it('should set "samesite=strict" attribute in header', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: 'strict' })
assert.equal(cookie.toHeader(), 'foo=bar; path=/; samesite=strict; httponly')
})
})
describe('when set to "STRICT"', function () {
it('should set "samesite=strict" attribute in header', function () {
var cookie = new cookies.Cookie('foo', 'bar', { sameSite: 'STRICT' })
assert.equal(cookie.toHeader(), 'foo=bar; path=/; samesite=strict; httponly')
})
})
})
})
})