-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvalid-url.test.js
46 lines (39 loc) · 1.43 KB
/
valid-url.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
var test = require('tape')
var { validUrl, prependUrlProtocol } = require('../lib/url')
test('prependUrlProtocol assumes http without path', (t) => {
t.same(prependUrlProtocol('example.com'), 'http://example.com')
t.end()
})
test('prependUrlProtocol assumes http with path', (t) => {
t.same(prependUrlProtocol('example.com/foo/bar.html'), 'http://example.com/foo/bar.html')
t.end()
})
test('prependUrlProtocol doesn\'t change protocol if given', (t) => {
t.same(prependUrlProtocol('https://example.com/foo/bar.html'), 'https://example.com/foo/bar.html')
t.same(prependUrlProtocol('ftp://example.com/foo/bar.html'), 'ftp://example.com/foo/bar.html')
t.end()
})
test('validUrl returns false if url is not a string', (t) => {
t.notOk(validUrl())
t.notOk(validUrl(null))
t.notOk(validUrl({}))
t.notOk(validUrl(['foo']))
t.end()
})
test('validUrl returns false for rubbish strings', (t) => {
t.notOk(validUrl('f234324 ff43 f43f4 f43 '))
t.notOk(validUrl('company tax cuts will increase wages...'))
t.end()
})
test('validUrl returns false if url is not http/s', (t) => {
t.notOk(validUrl('ftp://ok.com'))
t.notOk(validUrl('ssh://this:[email protected]'))
t.notOk(validUrl('mailto:[email protected]'))
t.end()
})
test('validUrl returns true if url is http/s', (t) => {
t.ok(validUrl('http://theanarchistlibrary.org/'))
t.ok(validUrl('http://127.0.0.1:4000'))
t.ok(validUrl('https://en.wikipedia.org/wiki/S._R._Ranganathan'))
t.end()
})