-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathinbound-parser.test.ts
659 lines (585 loc) · 17.1 KB
/
inbound-parser.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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
import { describe, it, expect } from 'vitest'
import buffers from './testing/test-buffers'
import BufferList from './testing/buffer-list'
import { Parser } from '../src'
import { Modes } from '../src/types'
import {
AuthenticationMessage,
BackendKeyDataMessage,
BackendMessage,
CommandCompleteMessage,
DataRowMessage,
NotificationResponseMessage,
ParameterDescriptionMessage,
ParameterStatusMessage,
ReadyForQueryMessage,
RowDescriptionMessage,
} from '../src/messages'
const authOkBuffer = buffers.authenticationOk()
const paramStatusBuffer = buffers.parameterStatus('client_encoding', 'UTF8')
const readyForQueryBuffer = buffers.readyForQuery()
const backendKeyDataBuffer = buffers.backendKeyData(1, 2)
const commandCompleteBuffer = buffers.commandComplete('SELECT 3')
const parseCompleteBuffer = buffers.parseComplete()
const bindCompleteBuffer = buffers.bindComplete()
const portalSuspendedBuffer = buffers.portalSuspended()
const row1 = {
name: 'id',
tableID: 1,
columnID: 2,
dataTypeID: 3,
dataTypeSize: 4,
dataTypeModifier: 5,
format: Modes.text,
}
const oneRowDescBuff = buffers.rowDescription([row1])
row1.name = 'bang'
const twoRowBuf = buffers.rowDescription([
row1,
{
name: 'whoah',
tableID: 10,
columnID: 11,
dataTypeID: 12,
dataTypeSize: 13,
dataTypeModifier: 14,
format: Modes.text,
},
])
const emptyRowFieldBuf = buffers.dataRow([])
const oneFieldBuf = buffers.dataRow(['test'])
const expectedAuthenticationOkayMessage: BackendMessage = {
name: 'authenticationOk',
length: 8,
}
const expectedParameterStatusMessage: ParameterStatusMessage = {
name: 'parameterStatus',
parameterName: 'client_encoding',
parameterValue: 'UTF8',
length: 25,
}
const expectedBackendKeyDataMessage: BackendKeyDataMessage = {
name: 'backendKeyData',
processID: 1,
secretKey: 2,
length: 12,
}
const expectedReadyForQueryMessage: ReadyForQueryMessage = {
name: 'readyForQuery',
length: 5,
status: 'I',
}
const expectedCommandCompleteMessage: CommandCompleteMessage = {
name: 'commandComplete',
length: 13,
text: 'SELECT 3',
}
const emptyRowDescriptionBuffer = new BufferList()
.addInt16(0) // number of fields
.join(true, 'T')
const expectedEmptyRowDescriptionMessage: RowDescriptionMessage = {
name: 'rowDescription',
length: 6,
fieldCount: 0,
fields: [],
}
const expectedOneRowMessage: RowDescriptionMessage = {
name: 'rowDescription',
length: 27,
fieldCount: 1,
fields: [
{
name: 'id',
tableID: 1,
columnID: 2,
dataTypeID: 3,
dataTypeSize: 4,
dataTypeModifier: 5,
format: Modes.text,
},
],
}
const expectedTwoRowMessage: RowDescriptionMessage = {
name: 'rowDescription',
length: 53,
fieldCount: 2,
fields: [
{
name: 'bang',
tableID: 1,
columnID: 2,
dataTypeID: 3,
dataTypeSize: 4,
dataTypeModifier: 5,
format: Modes.text,
},
{
name: 'whoah',
tableID: 10,
columnID: 11,
dataTypeID: 12,
dataTypeSize: 13,
dataTypeModifier: 14,
format: Modes.text,
},
],
}
const emptyParameterDescriptionBuffer = new BufferList()
.addInt16(0) // number of parameters
.join(true, 't')
const oneParameterDescBuf = buffers.parameterDescription([1111])
const twoParameterDescBuf = buffers.parameterDescription([2222, 3333])
const expectedEmptyParameterDescriptionMessage: ParameterDescriptionMessage = {
name: 'parameterDescription',
length: 6,
parameterCount: 0,
dataTypeIDs: [],
}
const expectedOneParameterMessage: ParameterDescriptionMessage = {
name: 'parameterDescription',
length: 10,
parameterCount: 1,
dataTypeIDs: [1111],
}
const expectedTwoParameterMessage: ParameterDescriptionMessage = {
name: 'parameterDescription',
length: 14,
parameterCount: 2,
dataTypeIDs: [2222, 3333],
}
function testForMessage<T extends BackendMessage>(
buffer: ArrayBuffer,
expectedMessage: T,
) {
it('recieves and parses ' + expectedMessage.name, async () => {
const messages = await parseBuffers([buffer])
const [lastMessage] = messages
for (const key in expectedMessage) {
expect((lastMessage as Record<string, unknown>)[key]).toEqual(
expectedMessage[key],
)
}
})
}
const plainPasswordBuffer = buffers.authenticationCleartextPassword()
const md5PasswordBuffer = buffers.authenticationMD5Password()
const SASLBuffer = buffers.authenticationSASL()
const SASLContinueBuffer = buffers.authenticationSASLContinue()
const SASLFinalBuffer = buffers.authenticationSASLFinal()
const expectedPlainPasswordMessage: AuthenticationMessage = {
name: 'authenticationCleartextPassword',
length: 8,
}
const expectedMD5PasswordMessage: AuthenticationMessage = {
name: 'authenticationMD5Password',
length: 12,
salt: new Uint8Array([1, 2, 3, 4]),
}
const expectedSASLMessage: AuthenticationMessage = {
name: 'authenticationSASL',
length: SASLBuffer.byteLength - 1,
mechanisms: ['SCRAM-SHA-256'],
}
const expectedSASLContinueMessage: AuthenticationMessage = {
name: 'authenticationSASLContinue',
length: SASLContinueBuffer.byteLength - 1,
data: 'data',
}
const expectedSASLFinalMessage: AuthenticationMessage = {
name: 'authenticationSASLFinal',
length: SASLFinalBuffer.byteLength - 1,
data: 'data',
}
const notificationResponseBuffer = buffers.notification(4, 'hi', 'boom')
const expectedNotificationResponseMessage: NotificationResponseMessage = {
name: 'notification',
processId: 4,
channel: 'hi',
payload: 'boom',
length: notificationResponseBuffer.byteLength - 1,
}
const parseBuffers = async (
buffers: ArrayBuffer[],
): Promise<BackendMessage[]> => {
const parser = new Parser()
const msgs: BackendMessage[] = []
const numBuffers = buffers.length
await new Promise<void>((res) => {
for (let i = 0; i < numBuffers; i++) {
const buffer = buffers[i]
parser.parse(buffer, (msg) => {
msgs.push(msg)
if (i === numBuffers - 1) res()
})
}
})
return msgs
}
function concatBuffers(views: ArrayBufferView[]): Uint8Array {
let length = 0
for (const v of views) length += v.byteLength
const buf = new Uint8Array(length)
let offset = 0
for (const v of views) {
const uint8view = new Uint8Array(v.buffer)
buf.set(uint8view, offset)
offset += uint8view.byteLength
}
return buf
}
describe('PgPacketStream', () => {
testForMessage(authOkBuffer, expectedAuthenticationOkayMessage)
testForMessage(plainPasswordBuffer, expectedPlainPasswordMessage)
testForMessage(md5PasswordBuffer, expectedMD5PasswordMessage)
testForMessage(SASLBuffer, expectedSASLMessage)
testForMessage(SASLContinueBuffer, expectedSASLContinueMessage)
// this exercises a found bug in the parser:
// https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084
// and adds a test which is deterministic, rather than relying on network packet chunking
const extendedSASLContinueBuffer = concatBuffers([
SASLContinueBuffer,
new Uint8Array([1, 2, 3, 4]),
])
testForMessage(extendedSASLContinueBuffer, expectedSASLContinueMessage)
testForMessage(SASLFinalBuffer, expectedSASLFinalMessage)
// this exercises a found bug in the parser:
// https://github.com/brianc/node-postgres/pull/2210#issuecomment-627626084
// and adds a test which is deterministic, rather than relying on network packet chunking
const extendedSASLFinalBuffer = concatBuffers([
SASLFinalBuffer,
new Uint8Array([1, 2, 4, 5]),
])
testForMessage(extendedSASLFinalBuffer, expectedSASLFinalMessage)
testForMessage(paramStatusBuffer, expectedParameterStatusMessage)
testForMessage(backendKeyDataBuffer, expectedBackendKeyDataMessage)
testForMessage(readyForQueryBuffer, expectedReadyForQueryMessage)
testForMessage(commandCompleteBuffer, expectedCommandCompleteMessage)
testForMessage(
notificationResponseBuffer,
expectedNotificationResponseMessage,
)
testForMessage(buffers.emptyQuery(), {
name: 'emptyQuery',
length: 4,
})
testForMessage(new Uint8Array([0x6e, 0, 0, 0, 4]).buffer, {
name: 'noData',
length: 5,
})
describe('rowDescription messages', () => {
testForMessage(
emptyRowDescriptionBuffer,
expectedEmptyRowDescriptionMessage,
)
testForMessage(oneRowDescBuff, expectedOneRowMessage)
testForMessage(twoRowBuf, expectedTwoRowMessage)
})
describe('parameterDescription messages', () => {
testForMessage(
emptyParameterDescriptionBuffer,
expectedEmptyParameterDescriptionMessage,
)
testForMessage(oneParameterDescBuf, expectedOneParameterMessage)
testForMessage(twoParameterDescBuf, expectedTwoParameterMessage)
})
describe('parsing rows', () => {
describe('parsing empty row', () => {
testForMessage(emptyRowFieldBuf, {
name: 'dataRow',
fieldCount: 0,
length: emptyRowFieldBuf.byteLength - 1,
})
})
describe('parsing data row with fields', () => {
testForMessage(oneFieldBuf, {
name: 'dataRow',
fieldCount: 1,
fields: ['test'],
length: oneFieldBuf.byteLength - 1,
})
})
})
describe('notice message', () => {
// this uses the same logic as error message
const buff = buffers.notice([{ type: 'C', value: 'code' }])
testForMessage(buff, {
name: 'notice',
code: 'code',
length: buff.byteLength - 1,
})
})
testForMessage(buffers.error([]), {
name: 'error',
length: buffers.error([]).byteLength - 1,
})
describe('with all the fields', () => {
const buffer = buffers.error([
{
type: 'S',
value: 'ERROR',
},
{
type: 'C',
value: 'code',
},
{
type: 'M',
value: 'message',
},
{
type: 'D',
value: 'details',
},
{
type: 'H',
value: 'hint',
},
{
type: 'P',
value: '100',
},
{
type: 'p',
value: '101',
},
{
type: 'q',
value: 'query',
},
{
type: 'W',
value: 'where',
},
{
type: 'F',
value: 'file',
},
{
type: 'L',
value: 'line',
},
{
type: 'R',
value: 'routine',
},
{
type: 'Z', // ignored
value: 'alsdkf',
},
])
testForMessage(buffer, {
name: 'error',
severity: 'ERROR',
code: 'code',
message: 'message',
detail: 'details',
hint: 'hint',
position: '100',
internalPosition: '101',
internalQuery: 'query',
where: 'where',
file: 'file',
line: 'line',
routine: 'routine',
length: buffer.byteLength - 1,
})
})
testForMessage(parseCompleteBuffer, {
name: 'parseComplete',
length: 5,
})
testForMessage(bindCompleteBuffer, {
name: 'bindComplete',
length: 5,
})
testForMessage(buffers.closeComplete(), {
name: 'closeComplete',
length: 5,
})
describe('parses portal suspended message', () => {
testForMessage(portalSuspendedBuffer, {
name: 'portalSuspended',
length: 5,
})
})
describe('parses replication start message', () => {
testForMessage(new Uint8Array([0x57, 0x00, 0x00, 0x00, 0x04]), {
name: 'replicationStart',
length: 4,
})
})
describe('copy', () => {
testForMessage(buffers.copyIn(0), {
name: 'copyInResponse',
length: 7,
binary: false,
columnTypes: [],
})
testForMessage(buffers.copyIn(2), {
name: 'copyInResponse',
length: 11,
binary: false,
columnTypes: [0, 1],
})
testForMessage(buffers.copyOut(0), {
name: 'copyOutResponse',
length: 7,
binary: false,
columnTypes: [],
})
testForMessage(buffers.copyOut(3), {
name: 'copyOutResponse',
length: 13,
binary: false,
columnTypes: [0, 1, 2],
})
testForMessage(buffers.copyDone(), {
name: 'copyDone',
length: 4,
})
testForMessage(buffers.copyData(new Uint8Array([5, 6, 7])), {
name: 'copyData',
length: 7,
chunk: new Uint8Array([5, 6, 7]),
})
})
// since the data message on a stream can randomly divide the incomming
// tcp packets anywhere, we need to make sure we can parse every single
// split on a tcp message
describe('split buffer, single message parsing', () => {
const fullBufferView = buffers.dataRow([null, 'bang', 'zug zug', null, '!'])
const fullBuffer = fullBufferView.buffer
it('parses when full buffer comes in', async () => {
const messages = await parseBuffers([fullBuffer])
const message = messages[0] as DataRowMessage
expect(message.fields.length).toBe(5)
expect(message.fields[0]).toBe(null)
expect(message.fields[1]).toBe('bang')
expect(message.fields[2]).toBe('zug zug')
expect(message.fields[3]).toBe(null)
expect(message.fields[4]).toBe('!')
})
const testMessageRecievedAfterSpiltAt = async (split: number) => {
const firstBufferView = new Uint8Array(fullBuffer.byteLength - split)
const secondBufferView = new Uint8Array(
fullBuffer.byteLength - firstBufferView.byteLength,
)
firstBufferView.set(
new Uint8Array(fullBuffer, 0, firstBufferView.byteLength),
)
secondBufferView.set(
new Uint8Array(fullBuffer, firstBufferView.byteLength),
)
const messages = await parseBuffers([fullBuffer])
const message = messages[0] as DataRowMessage
expect(message.fields.length).toBe(5)
expect(message.fields[0]).toBe(null)
expect(message.fields[1]).toBe('bang')
expect(message.fields[2]).toBe('zug zug')
expect(message.fields[3]).toBe(null)
expect(message.fields[4]).toBe('!')
}
it('parses when split in the middle', () => {
testMessageRecievedAfterSpiltAt(6)
})
it('parses when split at end', () => {
testMessageRecievedAfterSpiltAt(2)
})
it('parses when split at beginning', () => {
testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 2)
testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 1)
testMessageRecievedAfterSpiltAt(fullBuffer.byteLength - 5)
})
})
describe('split buffer, multiple message parsing', () => {
const dataRowBuffer = buffers.dataRow(['!'])
const readyForQueryBuffer = buffers.readyForQuery()
const fullBuffer = new ArrayBuffer(
dataRowBuffer.byteLength + readyForQueryBuffer.byteLength,
)
const fullBufferView = new Uint8Array(fullBuffer)
fullBufferView.set(new Uint8Array(dataRowBuffer))
fullBufferView.set(
new Uint8Array(readyForQueryBuffer),
dataRowBuffer.byteLength,
)
function verifyMessages(messages: BackendMessage[]) {
expect(messages.length).toBe(2)
expect(messages[0]).toEqual({
name: 'dataRow',
fieldCount: 1,
length: 11,
fields: ['!'],
})
expect((messages[0] as DataRowMessage).fields[0]).toBe('!')
expect(messages[1]).toEqual({
name: 'readyForQuery',
length: 5,
status: 'I',
})
}
// sanity check
it('recieves both messages when packet is not split', async () => {
const messages = await parseBuffers([fullBuffer])
verifyMessages(messages)
})
const splitAndVerifyTwoMessages = async (split: number) => {
const firstBufferView = new Uint8Array(fullBuffer.byteLength - split)
const secondBufferView = new Uint8Array(
fullBuffer.byteLength - firstBufferView.byteLength,
)
firstBufferView.set(
new Uint8Array(fullBuffer, 0, firstBufferView.byteLength),
)
secondBufferView.set(
new Uint8Array(fullBuffer, firstBufferView.byteLength),
)
const messages = await parseBuffers([
firstBufferView.buffer,
secondBufferView.buffer,
])
verifyMessages(messages)
}
describe('recieves both messages when packet is split', () => {
it('in the middle', () => {
return splitAndVerifyTwoMessages(11)
})
it('at the front', () => {
return Promise.all([
splitAndVerifyTwoMessages(fullBuffer.byteLength - 1),
splitAndVerifyTwoMessages(fullBuffer.byteLength - 4),
splitAndVerifyTwoMessages(fullBuffer.byteLength - 6),
])
})
it('at the end', () => {
return Promise.all([
splitAndVerifyTwoMessages(8),
splitAndVerifyTwoMessages(1),
])
})
})
})
describe('buffer view handling', () => {
it('should only read buffer section specified by view', async () => {
const originalMessageBufferView = buffers.dataRow(['bang'])
const largerView = concatBuffers([
new Uint8Array([1, 2, 3, 4]),
originalMessageBufferView,
new Uint8Array([5, 6, 7, 8]),
])
const fullBufferView = new Uint8Array(
largerView.buffer,
4,
originalMessageBufferView.byteLength,
)
const messages = await parseBuffers([fullBufferView])
expect(messages.length).toBe(1)
expect(messages[0]).toEqual({
name: 'dataRow',
fieldCount: 1,
length: originalMessageBufferView.byteLength - 1,
fields: ['bang'],
})
})
})
})