48ea61cdcc
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
357 lines
11 KiB
TypeScript
357 lines
11 KiB
TypeScript
import assert from 'assert'
|
|
import { serialize } from './serializer'
|
|
import BufferList from './testing/buffer-list'
|
|
|
|
describe('serializer', () => {
|
|
it('builds startup message', function () {
|
|
const actual = serialize.startup({
|
|
user: 'brian',
|
|
database: 'bang',
|
|
})
|
|
assert.deepEqual(
|
|
actual,
|
|
new BufferList()
|
|
.addInt16(3)
|
|
.addInt16(0)
|
|
.addCString('user')
|
|
.addCString('brian')
|
|
.addCString('database')
|
|
.addCString('bang')
|
|
.addCString('client_encoding')
|
|
.addCString('UTF8')
|
|
.addCString('')
|
|
.join(true)
|
|
)
|
|
})
|
|
|
|
it('builds password message', function () {
|
|
const actual = serialize.password('!')
|
|
assert.deepEqual(actual, new BufferList().addCString('!').join(true, 'p'))
|
|
})
|
|
|
|
it('builds request ssl message', function () {
|
|
const actual = serialize.requestSsl()
|
|
const expected = new BufferList().addInt32(80877103).join(true)
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds SASLInitialResponseMessage message', function () {
|
|
const actual = serialize.sendSASLInitialResponseMessage('mech', 'data')
|
|
assert.deepEqual(actual, new BufferList().addCString('mech').addInt32(4).addString('data').join(true, 'p'))
|
|
})
|
|
|
|
it('builds SCRAMClientFinalMessage message', function () {
|
|
const actual = serialize.sendSCRAMClientFinalMessage('data')
|
|
assert.deepEqual(actual, new BufferList().addString('data').join(true, 'p'))
|
|
})
|
|
|
|
it('builds query message', function () {
|
|
const txt = 'select * from boom'
|
|
const actual = serialize.query(txt)
|
|
assert.deepEqual(actual, new BufferList().addCString(txt).join(true, 'Q'))
|
|
})
|
|
|
|
describe('parse message', () => {
|
|
it('builds parse message', function () {
|
|
const actual = serialize.parse({ text: '!' })
|
|
const expected = new BufferList().addCString('').addCString('!').addInt16(0).join(true, 'P')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds parse message with named query', function () {
|
|
const actual = serialize.parse({
|
|
name: 'boom',
|
|
text: 'select * from boom',
|
|
types: [],
|
|
})
|
|
const expected = new BufferList().addCString('boom').addCString('select * from boom').addInt16(0).join(true, 'P')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('with multiple parameters', function () {
|
|
const actual = serialize.parse({
|
|
name: 'force',
|
|
text: 'select * from bang where name = $1',
|
|
types: [1, 2, 3, 4],
|
|
})
|
|
const expected = new BufferList()
|
|
.addCString('force')
|
|
.addCString('select * from bang where name = $1')
|
|
.addInt16(4)
|
|
.addInt32(1)
|
|
.addInt32(2)
|
|
.addInt32(3)
|
|
.addInt32(4)
|
|
.join(true, 'P')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
})
|
|
|
|
describe('bind messages', function () {
|
|
it('with no values', function () {
|
|
const actual = serialize.bind()
|
|
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('')
|
|
.addCString('')
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(1)
|
|
.addInt16(0)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
it('with named statement, portal, and values', function () {
|
|
const actual = serialize.bind({
|
|
portal: 'bang',
|
|
statement: 'woo',
|
|
values: ['1', 'hi', null, 'zing'],
|
|
})
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('bang') // portal name
|
|
.addCString('woo') // statement name
|
|
.addInt16(4)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(4)
|
|
.addInt32(1)
|
|
.add(Buffer.from('1'))
|
|
.addInt32(2)
|
|
.add(Buffer.from('hi'))
|
|
.addInt32(-1)
|
|
.addInt32(4)
|
|
.add(Buffer.from('zing'))
|
|
.addInt16(1)
|
|
.addInt16(0)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
it('encodes a multi-byte string param with its UTF-8 byte length, not char length', function () {
|
|
// Guards the single-pass addInt32PrefixedString write path: the Int32
|
|
// length prefix must be the UTF-8 byte count, not String.length. 'héllo中🎉'
|
|
// is 7 code points / 8 UTF-16 code units but 13 UTF-8 bytes.
|
|
const value = 'héllo中🎉'
|
|
const bytes = Buffer.from(value, 'utf8')
|
|
assert.notEqual(bytes.length, value.length) // sanity: the divergence we're testing
|
|
const actual = serialize.bind({ values: [value] })
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('') // portal
|
|
.addCString('') // statement
|
|
.addInt16(1) // param format code count
|
|
.addInt16(0) // format code for the one value (text)
|
|
.addInt16(1) // value count
|
|
.addInt32(bytes.length) // 13 — the UTF-8 byte length, NOT value.length (8)
|
|
.add(bytes)
|
|
.addInt16(1) // result format code count
|
|
.addInt16(0) // result format (text)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
})
|
|
|
|
it('with custom valueMapper', function () {
|
|
const actual = serialize.bind({
|
|
portal: 'bang',
|
|
statement: 'woo',
|
|
values: ['1', 'hi', null, 'zing'],
|
|
valueMapper: () => null,
|
|
})
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('bang') // portal name
|
|
.addCString('woo') // statement name
|
|
.addInt16(4)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(4)
|
|
.addInt32(-1)
|
|
.addInt32(-1)
|
|
.addInt32(-1)
|
|
.addInt32(-1)
|
|
.addInt16(1)
|
|
.addInt16(0)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
it('with named statement, portal, and buffer value', function () {
|
|
const actual = serialize.bind({
|
|
portal: 'bang',
|
|
statement: 'woo',
|
|
values: ['1', 'hi', null, Buffer.from('zing', 'utf8')],
|
|
})
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('bang') // portal name
|
|
.addCString('woo') // statement name
|
|
.addInt16(4) // value count
|
|
.addInt16(0) // string
|
|
.addInt16(0) // string
|
|
.addInt16(0) // string
|
|
.addInt16(1) // binary
|
|
.addInt16(4)
|
|
.addInt32(1)
|
|
.add(Buffer.from('1'))
|
|
.addInt32(2)
|
|
.add(Buffer.from('hi'))
|
|
.addInt32(-1)
|
|
.addInt32(4)
|
|
.add(Buffer.from('zing', 'utf-8'))
|
|
.addInt16(1)
|
|
.addInt16(0)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
describe('builds execute message', function () {
|
|
it('for unamed portal with no row limit', function () {
|
|
const actual = serialize.execute()
|
|
const expectedBuffer = new BufferList().addCString('').addInt32(0).join(true, 'E')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
it('for named portal with row limit', function () {
|
|
const actual = serialize.execute({
|
|
portal: 'my favorite portal',
|
|
rows: 100,
|
|
})
|
|
const expectedBuffer = new BufferList().addCString('my favorite portal').addInt32(100).join(true, 'E')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
})
|
|
|
|
it('builds flush command', function () {
|
|
const actual = serialize.flush()
|
|
const expected = new BufferList().join(true, 'H')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds sync command', function () {
|
|
const actual = serialize.sync()
|
|
const expected = new BufferList().join(true, 'S')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds end command', function () {
|
|
const actual = serialize.end()
|
|
const expected = Buffer.from([0x58, 0, 0, 0, 4])
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
describe('builds describe command', function () {
|
|
it('describe statement', function () {
|
|
const actual = serialize.describe({ type: 'S', name: 'bang' })
|
|
const expected = new BufferList().addChar('S').addCString('bang').join(true, 'D')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('describe unnamed portal', function () {
|
|
const actual = serialize.describe({ type: 'P' })
|
|
const expected = new BufferList().addChar('P').addCString('').join(true, 'D')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
})
|
|
|
|
describe('builds close command', function () {
|
|
it('describe statement', function () {
|
|
const actual = serialize.close({ type: 'S', name: 'bang' })
|
|
const expected = new BufferList().addChar('S').addCString('bang').join(true, 'C')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('describe unnamed portal', function () {
|
|
const actual = serialize.close({ type: 'P' })
|
|
const expected = new BufferList().addChar('P').addCString('').join(true, 'C')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
})
|
|
|
|
describe('copy messages', function () {
|
|
it('builds copyFromChunk', () => {
|
|
const actual = serialize.copyData(Buffer.from([1, 2, 3]))
|
|
const expected = new BufferList().add(Buffer.from([1, 2, 3])).join(true, 'd')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds copy fail', () => {
|
|
const actual = serialize.copyFail('err!')
|
|
const expected = new BufferList().addCString('err!').join(true, 'f')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
it('builds copy done', () => {
|
|
const actual = serialize.copyDone()
|
|
const expected = new BufferList().join(true, 'c')
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
})
|
|
|
|
it('builds cancel message', () => {
|
|
const actual = serialize.cancel(3, 4)
|
|
const expected = new BufferList().addInt16(1234).addInt16(5678).addInt32(3).addInt32(4).join(true)
|
|
assert.deepEqual(actual, expected)
|
|
})
|
|
|
|
describe('bind error recovery', () => {
|
|
const throwingMapper = () => {
|
|
throw new Error('valueMapper error')
|
|
}
|
|
|
|
it('produces correct bind output after a valueMapper exception', () => {
|
|
assert.throws(() => {
|
|
serialize.bind({
|
|
values: ['fail'],
|
|
valueMapper: throwingMapper,
|
|
})
|
|
}, /valueMapper error/)
|
|
|
|
const actual = serialize.bind({
|
|
portal: 'bang',
|
|
statement: 'woo',
|
|
values: ['1', 'hi', null, 'zing'],
|
|
})
|
|
const expectedBuffer = new BufferList()
|
|
.addCString('bang')
|
|
.addCString('woo')
|
|
.addInt16(4)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(0)
|
|
.addInt16(4)
|
|
.addInt32(1)
|
|
.add(Buffer.from('1'))
|
|
.addInt32(2)
|
|
.add(Buffer.from('hi'))
|
|
.addInt32(-1)
|
|
.addInt32(4)
|
|
.add(Buffer.from('zing'))
|
|
.addInt16(1)
|
|
.addInt16(0)
|
|
.join(true, 'B')
|
|
assert.deepEqual(actual, expectedBuffer)
|
|
})
|
|
|
|
it('produces correct output from other serializer methods after a failed bind', () => {
|
|
assert.throws(() => {
|
|
serialize.bind({
|
|
values: ['fail'],
|
|
valueMapper: throwingMapper,
|
|
})
|
|
}, /valueMapper error/)
|
|
|
|
const parseActual = serialize.parse({ text: '!' })
|
|
const parseExpected = new BufferList().addCString('').addCString('!').addInt16(0).join(true, 'P')
|
|
assert.deepEqual(parseActual, parseExpected)
|
|
|
|
const queryActual = serialize.query('select 1')
|
|
const queryExpected = new BufferList().addCString('select 1').join(true, 'Q')
|
|
assert.deepEqual(queryActual, queryExpected)
|
|
})
|
|
})
|
|
})
|