-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsecurity.test
91 lines (57 loc) · 1.6 KB
/
security.test
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
// Warning coming out of koa-cors
// https://github.com/whatwg/misc-server/pull/76
// https://github.com/whatwg/misc-server/pull/70
// https://tools.ietf.org/html/rfc6797
// https://www.chromium.org/hsts
// https://hstspreload.org
const
{ test, Server, fetch }
= require ('snuggsi')
, { serve }
= (new Server)
console.log ('SNUGGSI', require ('..'))
test `calling next middlewaree`
test `X-XSS-Protection: 1; mode=block`
(async assert => {
const
flag = 1
, mode = 'block'
, test = [flag, `mode=${mode}`]
, expect = new RegExp ( test.join `; ` , 'g' )
, server = serve ``
, headers
= await fetch ('http://localhost:8181/').headers.get
assert
(expect.test (headers ('x-xss-protection')))
server.close ``
})
test `X-Frame-Options: deny`
(async assert => {
const
server = serve ``
, response = await fetch ('http://localhost:8181/')
assert
('deny' == response.headers.get ('x-frame-options'))
server.close ()
})
test `X-Content-Type-Options: nosniff`
(async assert => {
const
server = serve ``
, response = await fetch ('http://localhost:8181/')
assert
('nosniff' == response.headers.get ('x-content-type-options'))
server.close ()
})
test `Strict-Transport-Security`
(async assert => {
const
server = serve ``
, response = await fetch ('http://localhost:8181/')
, age = 60 * 60 * 24 * 365
, test = [`max-age=${age}`, 'includeSubDomains', 'preload']
, expected = new RegExp ( test.join `; ` , 'g')
assert
(expected.test (response.headers.get ('strict-transport-security')))
server.close ()
})