-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
118 lines (110 loc) · 3.62 KB
/
test.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
'use strict'
const test = require('tap').test
const helpIs = require('./')
test('isDate', (t) => {
const is = helpIs.isDate
const d = (new Date()).toISOString()
t.equal(is(null), false)
t.equal(is(false), false)
t.equal(is('fadsfasdf'), false)
t.equal(is(d), true)
t.equal(is(new Date()), true)
t.equal(is({}), false)
t.equal(is({
toISOString() {
return {}
}
}), false)
t.equal(is(d.substring(0, d.length - 1)), false)
const a1 = '2017-01-27T16:19:34.798+00:00'
const a2 = '2017-01-27T16:19:34.798Z'
const a3 = '2017-01-27T16:19:34.79+00:00'
const a4 = '2017-01-27T16:19:34.7+00:00'
const a5 = '2017-02-22T14:50:20+00:00'
t.equal(is(a1), true)
t.equal(is(a2), true)
t.equal(is(a3), true)
t.equal(is(a4), true)
t.equal(is(a5), true)
t.end()
})
test('isEmail', (t) => {
const is = helpIs.isEmail
t.equal(is('biscuits'), false)
t.equal(is('[email protected]'), true)
t.equal(is('[email protected]'), false)
t.end()
})
test('isEmailAllowName', (t) => {
const is = helpIs.isEmailAllowName
t.equal(is(null), false)
t.equal(is('[email protected]'), true)
t.equal(is('Evan <[email protected]>'), true)
t.equal(is('Evan Lucas <[email protected]>'), true)
t.equal(is('\'Evan Lucas\' <[email protected]>'), true)
t.equal(is('"Evan Lucas" <[email protected]>'), true)
t.equal(is('"Evan" <[email protected]>'), true)
t.equal(is('Evan <[email protected]'), false)
t.equal(is('Help.com, LLC <[email protected]>'), true)
t.equal(is('"Help.com, LLC" <[email protected]>'), true)
t.equal(is('"Jane Doe (maiden name)" <[email protected]>'), true)
t.equal(is('Jane Doe (maiden name) <[email protected]>'), true)
t.equal(is(' <[email protected]>'), true)
t.equal(is('<[email protected]>'), true)
t.equal(
is('"[email protected]" <[email protected]>')
, true
)
t.equal(
is('[email protected] <[email protected]>')
, true
)
t.end()
})
test('isUUID', (t) => {
const is = helpIs.isUUID
t.equal(is('713ae7e3-cb32-45f9-adcb-7c4fa86b90c1'), true)
t.equal(is('625e63f3-58f5-40b7-83a1-a72ad31acffb'), true)
t.equal(is('57b73598-8764-4ad0-a76a-679bb6640eb1'), true)
t.equal(is('9c858901-8a57-4791-81fe-4c455b099bc9'), true)
t.equal(is('9c858901-8a57-7791-81fe-4c455b099bc9'), false)
t.equal(is('9c858901-8a57-7791-81fe-4c455b099bc'), false)
t.equal(is(1234), false)
t.end()
})
test('isUrl', (t) => {
const is = helpIs.isUrl
t.equal(is('http://foo.bar'), true)
t.equal(is('https://foo.bar/baz'), true)
t.equal(is('http://foo.bar.baz/buz'), true)
t.equal(is('http://foo.bar.baz.buz/bux'), true)
t.equal(is('http://foo.bar/baz?buz'), true)
t.equal(is('http://foo.bar/baz#buz'), true)
t.equal(is('http://foo.bar?baz#buz'), true)
t.equal(is('http://foo.bar/baz-buz+bux_bax.bex'), true)
t.equal(is('http://123.456.789.12/'), true)
t.equal(is('http://2001:0db8:85a3:0000:0000:8a2e:0370:7334/'), true)
t.equal(is('internal http://urls.are not allowed'), false)
t.equal(is('invalid://url'), false)
t.equal(is('not a url'), false)
t.equal(is(1234), false)
t.end()
})
test('isIpAllowCIDR', (t) => {
const is = helpIs.isIpAllowCIDR
t.equal(is('127.0.0.1/32'), true)
t.equal(is('2001:db8:abcd:8000::/50'), true)
t.equal(is('127.0.0.1/24'), true)
t.equal(is('192.168.100.0/22'), true)
t.equal(is('127.0.0.1/12'), true)
t.equal(is('127.0.0.1/8'), true)
t.equal(is('10.a.0.0'), false)
t.equal(is('204.0.113.4255'), false)
t.equal(is('hellohello'), false)
t.equal(is('69.89.31.226'), true)
t.equal(is(' '), false)
t.equal(is('2002:4559:1FE2::4559:1FE2'), true)
t.equal(is('SELECT\0x33:~;_-\\\\'), false)
t.equal(is(1234), false)
t.end()
})