forked from rickyes/redis-url-plus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
110 lines (84 loc) · 2.55 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
const { test } = require('tap');
const parser = require('.');
test('Without password', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://localhost:6379/1');
t.equal(host, 'localhost');
t.equal(db, 1);
t.equal(password, '');
t.equal(port, 6379);
t.equal(host, 'localhost');
t.equal(cluster, undefined);
t.equal(nodes, undefined);
t.end();
});
test('Without db', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://localhost:6379');
t.equal(host, 'localhost');
t.equal(db, 0);
t.equal(password, '');
t.equal(port, 6379);
t.equal(host, 'localhost');
t.equal(cluster, undefined);
t.equal(nodes, undefined);
t.end();
});
test('With password and user', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://user:pass@localhost:6379');
t.equal(host, 'localhost');
t.equal(db, 0);
t.equal(password, 'pass');
t.equal(port, 6379);
t.equal(host, 'localhost');
t.equal(cluster, undefined);
t.equal(nodes, undefined);
t.end();
});
test('With password and user and db', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://user:pass@localhost:6379/1');
t.equal(host, 'localhost');
t.equal(db, 1);
t.equal(password, 'pass');
t.equal(port, 6379);
t.equal(host, 'localhost');
t.equal(cluster, undefined);
t.equal(nodes, undefined);
t.end();
});
test('With only password', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://:pass@localhost:6379/1');
t.equal(host, 'localhost');
t.equal(db, 1);
t.equal(password, 'pass');
t.equal(port, 6379);
t.equal(host, 'localhost');
t.equal(cluster, undefined);
t.equal(nodes, undefined);
t.end();
});
test('With cluster mode', t => {
const { host, db, password, port, cluster, nodes } = parser('redis://localhost:6379/0,redis://localhost:6378/0');
t.equal(host, undefined);
t.equal(db, undefined);
t.equal(password, undefined);
t.equal(port, undefined);
t.equal(host, undefined);
t.equal(cluster, true);
t.equal(nodes.length, 2);
t.equal(nodes[0].port, 6379);
t.equal(nodes[1].port, 6378);
for (const node of nodes) {
t.equal(node.host, 'localhost');
t.equal(node.db, 0);
t.equal(node.password, '');
t.equal(node.host, 'localhost');
t.equal(node.cluster, undefined);
t.equal(node.nodes, undefined);
}
t.end();
});
test('Without url', t => {
t.equal(parser(), undefined);
t.equal(parser(''), undefined);
t.throws(() => parser('1'), '[ERR_INVALID_REDIS_URL]: Invalid URL: 1');
t.end();
});