This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
180 lines (148 loc) · 4.84 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
var util = require('util');
var events = require('events');
var test = require('tap').test;
var redub = require('./');
function TestTransport(delay) {
this.delay = delay;
}
util.inherits(TestTransport, events.EventEmitter);
TestTransport.prototype.send = function(msg) {
setTimeout(function() {
this.emit('message', msg);
}.bind(this), this.delay);
};
var tt1 = new TestTransport(0);
var tt2 = new TestTransport(50);
var tt3 = new TestTransport(200);
test('manipulate channels and transports', function(t) {
var channel;
channel = redub();
t.equal(channel.transports.length, 0,
'open a channel with no transports');
channel.end();
t.pass('close the channel');
channel = redub([]);
t.pass(channel.transports.length, 0,
'open a channel with no transports as an array');
channel.end();
t.pass('close the channel');
channel = redub(tt1);
t.equal(channel.transports.length, 1,
'open a channel with one transport');
channel.end();
t.pass('close the channel');
channel = redub(tt1, tt2, tt3);
t.equal(channel.transports.length, 3,
'open a channel with multiple transports');
channel.remove();
t.equal(channel.transports.length, 3,
'empty remove call');
channel.add();
t.equal(channel.transports.length, 3,
'empty add call');
channel.remove(tt2);
t.equal(channel.transports.length, 2,
'remove a single transport');
channel.remove(tt2);
t.equal(channel.transports.length, 2,
'try to remove a single already inactive transport');
channel.add(tt2);
t.equal(channel.transports.length, 3,
'add a single transport');
channel.add(tt2);
t.equal(channel.transports.length, 3,
'try to add a single already active transport');
channel.remove(tt1, tt3);
t.equal(channel.transports.length, 1,
'remove multiple transports');
channel.add(tt1, tt3);
t.equal(channel.transports.length, 3,
'add multiple transports');
channel.reset();
t.equal(channel.transports.length, 0,
'reset to no transports');
channel.reset(tt1, tt2);
t.equal(channel.transports.length, 2,
'reset to two transports');
channel.end();
t.pass('close the channel');
channel = redub([tt1, tt2, tt3]);
t.equal(channel.transports.length, 3,
'open a channel with multiple transports as an array');
channel.remove([]);
t.equal(channel.transports.length, 3,
'remove call with empty array');
channel.add([]);
t.equal(channel.transports.length, 3,
'add call with empty array');
channel.remove([tt2]);
t.equal(channel.transports.length, 2,
'remove a single transport as an array');
channel.remove([tt2]);
t.equal(channel.transports.length, 2,
'try to remove a single already inactive transport as an array');
channel.add([tt2]);
t.equal(channel.transports.length, 3,
'add a single transport as an array');
channel.add([tt2]);
t.equal(channel.transports.length, 3,
'try to add a single already active transport as an array');
channel.remove([tt1, tt3]);
t.equal(channel.transports.length, 1,
'remove multiple transports as an array');
channel.add([tt1, tt3]);
t.equal(channel.transports.length, 3,
'add multiple transports as an array');
channel.reset([]);
t.equal(channel.transports.length, 0,
'reset to no transports as array');
channel.reset([tt1, tt2]);
t.equal(channel.transports.length, 2,
'reset to two transports as array');
channel.end();
t.pass('close the channel');
t.end();
});
test('send and receive a message', function(t) {
t.plan(3);
var channel = redub(tt1, tt2, tt3);
channel.on('message', function(msg) {
t.equal(msg, 'bla', 'receive a message');
});
channel.send('bla');
t.pass('send a message');
setTimeout(function() {
channel.end();
t.pass('test end');
}, 250);
});
test('duplicate messages from low timeout', function(t) {
t.plan(4);
var channel = redub(tt1, tt2, tt3);
channel.timeout = 75;
channel.on('message', function(msg) {
t.equal(msg, 'bla', 'receive a message');
});
channel.send('bla');
t.pass('send a message');
setTimeout(function() {
channel.end();
t.pass('test end');
}, 250);
});
test('dropped messages from bad ID generator', function(t) {
t.plan(4);
var channel = redub(tt1, tt2, tt3);
channel.uid = function() { return 'foobar'; };
channel.on('message', function(msg) {
t.equal(msg, 'bla', 'receive a message');
});
channel.send('bla');
t.pass('send the first message');
channel.send('bla');
t.pass('send the second message');
setTimeout(function() {
channel.end();
t.pass('test end');
}, 250);
});