-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.ts
276 lines (232 loc) · 5.05 KB
/
test.ts
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
import 'mocha';
import RWRes from './index';
const chai = require('chai');
const expect = chai.expect;
const debug = require('debug')('rw-resource');
function delay(time: number, value: any): Promise<any>
{
return new Promise((resolve, reject) => {
setTimeout(function() {
resolve(value);
}, time);
});
}
describe('RW Resources', () => {
before(function() {
this.timeout(0);
});
it('should allow a single writer', () => {
let Data = new RWRes({ val: 3 });
return Data.take(true)
.then((data) => {
expect(data.val).to.equal(3);
return delay(250, data);
})
.then((data) => {
Data.leave();
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should allow a single reader', () => {
let Data = new RWRes({ val: 3 });
return Data.take(false)
.then((data) => {
expect(data.val).to.equal(3);
return delay(250, data);
})
.then((data) => {
Data.leave();
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should allow multiple concurrent readers', () => {
let Data = new RWRes({ val: 3 });
return Promise.all([
Data.take(false),
Data.take(false),
Data.take(false)
])
.then((datas) => {
for (let data of datas) {
expect(data.val).to.equal(3);
Data.leave();
}
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should prevent writers while readers are active', () => {
let Data = new RWRes({ val: 3 });
return Promise.all([
Data.take(false)
.then((data) => { return delay(250, data); })
.then((data) => {
expect(data.val).to.equal(3);
Data.leave();
}),
Data.take(false)
.then((data) => { return delay(500, data); })
.then((data) => {
expect(data.val).to.equal(3);
Data.leave();
}),
Data.take(true)
.then((data) => {
data.val = 7;
expect(data.val).to.equal(7);
Data.leave();
})
])
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should prevent readers while a writer is active', () => {
let Data = new RWRes({ val: 3 });
return Promise.all([
Data.take(false)
.then((data) => { return delay(250, data); })
.then((data) => {
expect(data.val).to.equal(3);
Data.leave();
}),
Data.take(true)
.then((data) => { return delay(50, data); })
.then((data) => {
expect(data.val).to.equal(3);
data.val = 7;
expect(data.val).to.equal(7);
Data.leave();
}),
Data.take(false)
.then((data) => {
expect(data.val).to.equal(7);
Data.leave();
})
])
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should enforce writer order', () => {
let Data = new RWRes({ val: 1 });
return Promise.all([
Data.take(true)
.then((data) => { return delay(250, data); })
.then((data) => {
/*
All 4 promises should have attempted access by this point
because of the delay.
*/
expect(Data.check()).to.equal(4);
expect(data.val).to.equal(1);
data.val++;
Data.leave();
}),
Data.take(true)
.then((data) => { return delay(50, data); })
.then((data) => {
expect(data.val).to.equal(2);
data.val++;
Data.leave();
}),
Data.take(true)
.then((data) => { return delay(5, data); })
.then((data) => {
expect(data.val).to.equal(3);
data.val++;
Data.leave();
}),
Data.take(false)
.then((data) => {
expect(data.val).to.equal(4);
Data.leave();
})
])
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should throw on extra calls to leave', () => {
let Data = new RWRes({ val: 3 });
return Promise.all([
Data.take(false),
Data.take(false),
Data.take(false)
])
.then((datas) => {
for (let data of datas) {
Data.leave();
}
/* One extra call to .leave */
Data.leave();
})
.then(() => {
throw new Error('We should not get here');
})
.catch((err) => {
expect(err.name).to.equal('NotLockedError');
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should allow using lock with an unlock cb', () => {
let Data = new RWRes({ val: 3 });
let unlock;
return Data.lock(false)
.then((cb) => {
unlock = cb;
expect(Data.check()).to.equal(1);
return delay(250, null);
})
.then(() => {
unlock();
expect(Data.check()).to.equal(0);
return delay(250, null);
})
.then(() => {
unlock();
expect(Data.check()).to.equal(0);
return delay(250, null);
})
.then(() => {
unlock();
expect(Data.check()).to.equal(0);
return delay(250, null);
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
it('should allow the unlock callback with multiple consumers', () => {
let Data = new RWRes({ val: 3 });
return Promise.all([
Data.lock(false),
Data.lock(false),
Data.lock(false)
])
.then((cbs) => {
expect(Data.check()).to.equal(3);
for (let cb of cbs) {
cb();
}
return delay(250, cbs);
})
.then((cbs) => {
expect(Data.check()).to.equal(0);
for (let cb of cbs) {
cb();
}
return delay(250, null);
})
.then(() => {
expect(Data.check()).to.equal(0);
});
});
});