-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtest-client.js
453 lines (408 loc) · 9.97 KB
/
test-client.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
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/*global describe:true, it:true, before:true, after:true */
var
demand = require('must'),
fivebeans = require('../index'),
fs = require('fs'),
semver = require('semver')
;
var host = '127.0.0.1';
var port = 11300;
var tube = 'testtube';
function readTestImage()
{
return fs.readFileSync('./test/test.png');
}
describe('FiveBeansClient', function()
{
var producer, consumer, testjobid;
var version;
before(function()
{
producer = new fivebeans.client(host);
consumer = new fivebeans.client(host, port);
});
describe('#FiveBeansClient()', function()
{
it('creates a client with the passed-in options', function()
{
producer.host.must.equal(host);
producer.port.must.equal(port);
});
});
describe('#connect()', function()
{
it('creates and saves a connection', function(done)
{
producer.on('connect', function()
{
producer.stream.must.exist();
done();
}).on('error', function(err)
{
throw(err);
});
producer.connect();
});
});
describe('job producer:', function()
{
it('#use() connects to a specific tube', function(done)
{
producer.use(tube, function(err, response)
{
demand(err).not.exist();
response.must.equal(tube);
done();
});
});
it('#list_tube_used() returns the tube used by a producer', function(done)
{
producer.list_tube_used(function(err, response)
{
demand(err).not.exist();
response.must.equal(tube);
done();
});
});
it('#put() submits a job', function(done)
{
var data = { type: 'test', payload: 'the explosive energy of the warhead of a missile or of the bomb load of an aircraft' };
producer.put(0, 0, 60, JSON.stringify(data), function(err, jobid)
{
demand(err).not.exist();
jobid.must.exist();
done();
});
});
after(function(done)
{
producer.stats(function(err, response)
{
demand(err).not.exist();
if (response.version)
version = response.version + '.0';
done();
});
});
});
describe('job consumer:', function()
{
it('#watch() watches a tube', function(done)
{
consumer.on('connect', function()
{
consumer.watch(tube, function(err, response)
{
demand(err).not.exist();
response.must.equal('2');
done();
});
}).on('error', function(err)
{
throw(err);
});
consumer.connect();
});
it('#ignore() ignores a tube', function(done)
{
consumer.ignore('default', function(err, response)
{
demand(err).not.exist();
response.must.equal('1');
done();
});
});
it('#list_tubes_watched() returns the tubes the consumer watches', function(done)
{
consumer.list_tubes_watched(function(err, response)
{
demand(err).not.exist();
response.length.must.equal(1);
response.indexOf(tube).must.equal(0);
done();
});
});
it('#peek_ready() peeks ahead at jobs', function(done)
{
this.timeout(4000);
producer.peek_ready(function(err, jobid, payload)
{
demand(err).not.exist();
jobid.must.exist();
testjobid = jobid;
var parsed = JSON.parse(payload);
parsed.must.have.property('type');
parsed.type.must.equal('test');
done();
});
});
it('#stats_job() returns job stats', function(done)
{
consumer.stats_job(testjobid, function(err, response)
{
demand(err).not.exist();
response.must.be.an.object();
response.must.have.property('id');
response.id.must.equal(parseInt(testjobid, 10));
response.tube.must.equal(tube);
done();
});
});
it('consumer can run stats_job() while a job is reserved', function(done)
{
consumer.reserve(function(err, jobid, payload)
{
demand(err).not.exist();
consumer.stats_job(jobid, function(err, res)
{
demand(err).not.exist();
res.must.be.an.object();
res.must.have.property('id');
res.id.must.equal(parseInt(jobid, 10));
res.state.must.equal('reserved');
consumer.release(jobid, 1, 1, function(err)
{
demand(err).not.exist();
done();
});
});
});
});
it('#reserve() returns a job', function(done)
{
consumer.reserve(function(err, jobid, payload)
{
demand(err).not.exist();
jobid.must.equal(testjobid);
var parsed = JSON.parse(payload);
parsed.must.have.property('type');
parsed.type.must.equal('test');
done();
});
});
it('#touch() informs the server the client is still working', function(done)
{
consumer.touch(testjobid, function(err)
{
demand(err).not.exist();
done();
});
});
it('#release() releases a job', function(done)
{
consumer.release(testjobid, 1, 1, function(err)
{
demand(err).not.exist();
done();
});
});
it('jobs can contain binary data', function(done)
{
var payload = readTestImage();
var ptr = 0;
producer.put(0, 0, 60, payload, function(err, jobid)
{
demand(err).not.exist();
jobid.must.exist();
consumer.reserve(function(err, returnID, returnPayload)
{
demand(err).not.exist();
returnID.must.equal(jobid);
// we should get back exactly the same bytes we put in
returnPayload.length.must.equal(payload.length);
while (ptr < returnPayload.length)
{
returnPayload[ptr].must.equal(payload[ptr]);
ptr++;
}
consumer.destroy(returnID, function(err)
{
demand(err).not.exist();
done();
});
});
});
});
it('jobs can contain utf8 data', function(done)
{
var payload = 'Many people like crème brûlée.';
var returnString;
producer.put(0, 0, 60, payload, function(err, jobid)
{
demand(err).not.exist();
jobid.must.exist();
consumer.reserve(function(err, returnID, returnPayload)
{
demand(err).not.exist();
returnID.must.equal(jobid);
// we should get back exactly the same bytes we put in
returnString = returnPayload.toString();
returnString.must.equal(payload);
consumer.destroy(returnID, function(err)
{
demand(err).not.exist();
done();
});
});
});
});
it('#peek_delayed() returns data for a delayed job', function(done)
{
producer.peek_delayed(function(err, jobid, payload)
{
demand(err).not.exist();
jobid.must.equal(testjobid);
done();
});
});
it('#bury() buries a job (> 1sec expected)', function(done)
{
// this takes a second because of the minumum delay enforced by release() above
this.timeout(3000);
consumer.reserve(function(err, jobid, payload)
{
demand(err).not.exist();
consumer.bury(jobid, fivebeans.LOWEST_PRIORITY, function(err)
{
demand(err).not.exist();
done();
});
});
});
it('#peek_buried() returns data for a buried job', function(done)
{
producer.peek_buried(function(err, jobid, payload)
{
demand(err).not.exist();
jobid.must.equal(testjobid);
done();
});
});
it('#kick() un-buries jobs in the producer\'s used queue', function(done)
{
producer.kick(10, function(err, count)
{
demand(err).not.exist();
count.must.equal('1');
done();
});
});
it('#kick_job() kicks a specific job id', function(done)
{
// Skip the test if the version of beanstalkd doesn't have this command.
// Beanstalkd does not have semver-compliant version numbers, however.
if (version.match(/\d+\.\d+\.\d+\.\d+/))
{
version = version.replace(/\.\d+$/, '');
}
if (!semver.satisfies(version, '>= 1.8.0'))
return done();
consumer.reserve(function(err, jobid, payload)
{
demand(err).not.exist();
consumer.bury(testjobid, fivebeans.LOWEST_PRIORITY, function(err)
{
demand(err).not.exist();
producer.kick_job(testjobid, function(err)
{
demand(err).not.exist();
done();
});
});
});
});
it('#pause_tube() suspends new job reservations (> 1sec expected)', function(done)
{
consumer.pause_tube(tube, 3, function(err)
{
demand(err).not.exist();
consumer.reserve_with_timeout(1, function(err, jobid, payload)
{
err.must.equal('TIMED_OUT');
done();
});
});
});
it('#destroy() deletes a job (nearly 2 sec expected)', function(done)
{
// this takes a couple of seconds because of the minumum delay enforced by pause_tube() above
this.timeout(5000);
consumer.reserve(function(err, jobid, payload)
{
demand(err).not.exist();
consumer.destroy(jobid, function(err)
{
demand(err).not.exist();
done();
});
});
});
it('#reserve_with_timeout() times out when no jobs are waiting (> 1sec expected)', function(done)
{
this.timeout(3000);
consumer.reserve_with_timeout(1, function(err, jobid, payload)
{
err.must.equal('TIMED_OUT');
done();
});
});
});
describe('server statistics', function()
{
it('#stats() returns a hash of server stats', function(done)
{
consumer.stats(function(err, response)
{
demand(err).not.exist();
response.must.be.an.object();
response.must.have.property('pid');
response.must.have.property('version');
done();
});
});
it('#list_tubes() returns a list of tubes', function(done)
{
consumer.list_tubes(function(err, response)
{
demand(err).not.exist();
response.length.must.be.above(0);
response.indexOf(tube).must.be.above(-1);
done();
});
});
it('#stats_tube() returns a hash of tube stats', function(done)
{
consumer.stats_tube(tube, function(err, response)
{
demand(err).not.exist();
response.must.be.an.object();
done();
});
});
it('#stats_tube() returns not found for non-existent tubes', function(done)
{
consumer.stats_tube('i-dont-exist', function(err, response)
{
err.must.be.a.string();
err.must.equal('NOT_FOUND');
done();
});
});
});
describe('concurrent commands', function()
{
it('can be handled', function(done)
{
var concurrency = 10;
var replied = 0;
var handleResponse = function(err, response)
{
demand(err).not.exist();
if (++replied >= concurrency)
done();
};
for (var i = 0; i < 10; ++i)
consumer.stats_tube(tube, handleResponse);
});
});
});