forked from 3rd-Eden/memcached
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemcached-parser.test.js
67 lines (55 loc) · 1.84 KB
/
memcached-parser.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
'use strict';
/**
* Test dependencies
*/
var assert = require('assert')
, fs = require('fs')
, common = require('./common')
, Memcached = require('../');
global.testnumbers = global.testnumbers || +(Math.random(10) * 1000000).toFixed();
/**
* Expresso test suite for all `parser` related
* memcached commands
*/
describe('Memcached parser', function() {
it('chunked response', function (done) {
var memcached = new Memcached(common.servers.single)
, message = common.alphabet(256)
, chunks = []
, chunk = 'VALUE tests::#{key} 2 {length}'
, chunkJSON = JSON.stringify({
lines: []
, message: message
, id: null
})
, testnr = ++global.testnumbers
, callbacks = 0;
// Build up our tests
var S = {
responseBuffer: ''
, bufferArray: []
, metaData: []
, streamID: 0
};
// Build up our chunk data
chunks.push(chunk.replace('{key}', 1).replace('{length}', chunkJSON.length));
chunks.push(chunkJSON);
chunks.push(chunk.replace('{key}', 2).replace('{length}', chunkJSON.length));
// Insert first chunk
memcached.buffer(S, chunks.join('\r\n') +'\r\n');
// We check for bufferArray length otherwise it will crash on 'SyntaxError: Unexpected token V'
assert.equal(S.bufferArray.length, 3);
// Now add the value of the last response key in previous chunk
chunks.unshift(chunkJSON);
// Add it for the second chunk also
chunks.push(chunkJSON);
// Insert second chunk
memcached.buffer(S, chunks.join('\r\n') + '\r\nEND\r\n');
// Check if everything is cleared up nicely.
assert.equal(S.responseBuffer.length, 0);
assert.equal(S.bufferArray.length, 0);
assert.equal(S.metaData.length, 0);
memcached.end();
done();
});
});