2010-09-29 12:18:46 +08:00
|
|
|
require(__dirname+'/test-helper');
|
2010-09-29 15:46:10 +08:00
|
|
|
|
2010-10-01 13:19:44 +08:00
|
|
|
var PARSE = function(buffer) {
|
|
|
|
return new Parser(buffer).parse();
|
|
|
|
};
|
2010-10-01 12:13:50 +08:00
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
var authOkBuffer = new BufferList()
|
|
|
|
.addInt32(8)
|
|
|
|
.join(true, 'R');
|
|
|
|
|
|
|
|
var paramStatusBuffer = new BufferList()
|
|
|
|
.addCString("client_encoding")
|
|
|
|
.addCString("UTF8")
|
|
|
|
.join(true, 'S');
|
|
|
|
|
|
|
|
var backendKeyDataBuffer = new BufferList()
|
|
|
|
.addInt32(1)
|
|
|
|
.addInt32(2)
|
|
|
|
.join(true,'K');
|
|
|
|
|
|
|
|
var readyForQueryBuffer = new BufferList()
|
|
|
|
.add(Buffer('I'))
|
|
|
|
.join(true,'Z');
|
|
|
|
|
|
|
|
var expectedAuthenticationOkayMessage = {
|
|
|
|
name: 'AuthenticationOk',
|
|
|
|
id: 'R',
|
|
|
|
length: 8
|
|
|
|
};
|
|
|
|
|
|
|
|
var expectedParameterStatusMessage = {
|
|
|
|
name: 'ParameterStatus',
|
|
|
|
id: 'S',
|
|
|
|
length: 25,
|
|
|
|
parameterName: 'client_encoding',
|
|
|
|
parameterValue: 'UTF8'
|
|
|
|
};
|
|
|
|
|
|
|
|
var expectedBackendKeyDataMessage = {
|
|
|
|
name: 'BackendKeyData',
|
|
|
|
id: 'K',
|
|
|
|
processID: 1,
|
|
|
|
secretKey: 2
|
|
|
|
};
|
|
|
|
|
|
|
|
var expectedReadyForQueryMessage = {
|
|
|
|
name: 'ReadyForQuery',
|
|
|
|
id: 'Z',
|
|
|
|
length: 5,
|
|
|
|
status: 'I'
|
|
|
|
};
|
2010-09-29 15:46:10 +08:00
|
|
|
|
2010-09-30 13:14:41 +08:00
|
|
|
|
2010-10-01 12:13:50 +08:00
|
|
|
test('Parser on single messages', function() {
|
2010-09-30 13:36:07 +08:00
|
|
|
test('parses AuthenticationOk message', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(authOkBuffer)[0];
|
2010-09-30 13:36:07 +08:00
|
|
|
assert.same(result, expectedAuthenticationOkayMessage);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('parses ParameterStatus message', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(paramStatusBuffer)[0];
|
2010-09-30 13:36:07 +08:00
|
|
|
assert.same(result, expectedParameterStatusMessage);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('parses BackendKeyData message', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(backendKeyDataBuffer)[0];
|
2010-09-30 13:36:07 +08:00
|
|
|
assert.same(result, expectedBackendKeyDataMessage);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('parses ReadyForQuery message', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(readyForQueryBuffer)[0];
|
2010-09-30 13:36:07 +08:00
|
|
|
assert.same(result, expectedReadyForQueryMessage);
|
2010-09-30 13:14:41 +08:00
|
|
|
});
|
|
|
|
|
2010-09-29 14:01:52 +08:00
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
var commandCompleteBuffer = new BufferList()
|
|
|
|
.addCString("SELECT 3")
|
|
|
|
.join(true,'C');
|
2010-09-29 14:01:52 +08:00
|
|
|
test('parses CommandComplete message', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(commandCompleteBuffer)[0];
|
2010-09-29 14:01:52 +08:00
|
|
|
assert.same(result, {
|
|
|
|
length: 13,
|
|
|
|
id: 'C',
|
|
|
|
text: "SELECT 3"
|
|
|
|
});
|
|
|
|
});
|
2010-09-29 13:20:10 +08:00
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
var emptyRowDescriptionBuffer = new BufferList()
|
|
|
|
.addInt16(0) //number of fields
|
|
|
|
.join(true,'T');
|
2010-09-29 15:46:10 +08:00
|
|
|
test('parses RowDescriptions', function() {
|
|
|
|
|
|
|
|
test('parses empty row description', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(emptyRowDescriptionBuffer)[0];
|
2010-09-29 15:46:10 +08:00
|
|
|
assert.same(result, {
|
|
|
|
name: 'RowDescription',
|
|
|
|
id: 'T',
|
|
|
|
length: 6,
|
2010-09-30 14:26:32 +08:00
|
|
|
fieldCount: 0
|
|
|
|
});
|
|
|
|
assert.equal(result.fields.length, 0);
|
|
|
|
});
|
|
|
|
|
2010-10-01 12:13:50 +08:00
|
|
|
var addRow = function(bufferList, name, offset) {
|
|
|
|
return bufferList.addCString(name) //field name
|
|
|
|
.addInt32(offset++) //table id
|
|
|
|
.addInt16(offset++) //attribute of column number
|
|
|
|
.addInt32(offset++) //objectId of field's data type
|
|
|
|
.addInt16(offset++) //datatype size
|
|
|
|
.addInt32(offset++) //type modifier
|
|
|
|
.addInt16(0) //format code, 0 => text
|
|
|
|
};
|
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
var oneRowDescBuff = new BufferList()
|
2010-10-01 12:13:50 +08:00
|
|
|
.addInt16(1);
|
|
|
|
oneRowDescBuff = addRow(oneRowDescBuff, 'id', 1)
|
2010-09-30 14:26:32 +08:00
|
|
|
.join(true,'T');
|
2010-10-01 12:13:50 +08:00
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
test('parses single row description',function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(oneRowDescBuff)[0];
|
2010-09-30 14:26:32 +08:00
|
|
|
assert.same(result, {
|
|
|
|
name: 'RowDescription',
|
|
|
|
id: 'T',
|
2010-10-01 11:48:50 +08:00
|
|
|
length: 27,
|
2010-09-30 14:26:32 +08:00
|
|
|
fieldCount: 1
|
2010-09-29 15:46:10 +08:00
|
|
|
});
|
2010-10-01 12:13:50 +08:00
|
|
|
assert.equal(result.fields.length, 1);
|
|
|
|
|
|
|
|
assert.same(result.fields[0], {
|
|
|
|
name: 'id',
|
|
|
|
tableID: 1,
|
|
|
|
columnID: 2,
|
|
|
|
dataType: 3,
|
|
|
|
dataTypeSize: 4,
|
|
|
|
dataTypeModifier: 5,
|
|
|
|
format: 'text'
|
|
|
|
});
|
2010-09-29 15:46:10 +08:00
|
|
|
});
|
|
|
|
|
2010-10-01 12:13:50 +08:00
|
|
|
test('parses two row descriptions', function() {
|
|
|
|
var twoRowDesc = new BufferList()
|
|
|
|
.addInt16(2);
|
|
|
|
twoRowDesc = addRow(twoRowDesc, 'bang', 1);
|
|
|
|
twoRowDesc = addRow(twoRowDesc, 'whoah', 10);
|
|
|
|
twoRowBuf = twoRowDesc.join(true, 'T');
|
|
|
|
|
2010-10-01 13:19:44 +08:00
|
|
|
var result = PARSE(twoRowBuf)[0];
|
2010-10-01 12:13:50 +08:00
|
|
|
assert.same(result, {
|
|
|
|
name: 'RowDescription',
|
|
|
|
id: 'T',
|
|
|
|
length: 53,
|
|
|
|
fieldCount: 2
|
|
|
|
});
|
|
|
|
assert.equal(result.fields.length, 2);
|
|
|
|
|
|
|
|
assert.same(result.fields[0], {
|
|
|
|
name: 'bang',
|
|
|
|
tableID: 1,
|
|
|
|
columnID: 2,
|
|
|
|
dataType: 3,
|
|
|
|
dataTypeSize: 4,
|
|
|
|
dataTypeModifier: 5,
|
|
|
|
format: 'text'
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.same(result.fields[1], {
|
|
|
|
name: 'whoah',
|
|
|
|
tableID: 10,
|
|
|
|
columnID: 11,
|
|
|
|
dataType: 12,
|
|
|
|
dataTypeSize: 13,
|
|
|
|
dataTypeModifier: 14,
|
|
|
|
format: 'text'
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2010-09-29 15:46:10 +08:00
|
|
|
});
|
|
|
|
|
2010-10-01 13:22:53 +08:00
|
|
|
test('parses raw data row buffers', function() {
|
|
|
|
var emptyRow = new BufferList()
|
|
|
|
.addInt16(0)
|
|
|
|
.join(true, 'D');
|
|
|
|
test('parses empty data row', function() {
|
|
|
|
var result = PARSE(emptyRow)[0];
|
|
|
|
assert.equal(result.columnCount, 0);
|
|
|
|
});
|
|
|
|
});
|
2010-09-29 15:46:10 +08:00
|
|
|
|
2010-09-30 14:26:32 +08:00
|
|
|
|
2010-09-29 13:43:28 +08:00
|
|
|
test('parsing empty buffer returns false', function() {
|
2010-10-01 13:19:44 +08:00
|
|
|
var parser = PARSE(Buffer(0));
|
|
|
|
assert.equal(parser, false);
|
2010-09-29 13:43:28 +08:00
|
|
|
});
|
2010-09-29 12:18:46 +08:00
|
|
|
});
|