-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathindex.test.ts
618 lines (522 loc) · 17.7 KB
/
index.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
import SqlString from 'sqlstring'
import { connect, format, hex, DatabaseError, type Cast } from '../dist/index'
import { fetch, MockAgent, setGlobalDispatcher } from 'undici'
import packageJSON from '../package.json'
const mockHosts = ['http://localhost:8080', 'https://example.com']
const CREATE_SESSION_PATH = '/psdb.v1alpha1.Database/CreateSession'
const EXECUTE_PATH = '/psdb.v1alpha1.Database/Execute'
const mockAgent = new MockAgent()
mockAgent.disableNetConnect()
setGlobalDispatcher(mockAgent)
const config = {
username: 'someuser',
password: 'password',
host: 'example.com',
fetch
}
// Provide the base url to the request
const mockPool = mockAgent.get((value) => mockHosts.includes(value))
const mockSession = 42
describe('config', () => {
test('parses database url', async () => {
const mockResponse = {
session: mockSession,
result: { fields: [], rows: [] }
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toEqual(`Basic ${btoa('someuser:password')}`)
expect(opts.headers['User-Agent']).toEqual(`database-js/${packageJSON.version}`)
return mockResponse
})
const connection = connect({ fetch, url: 'mysql://someuser:password@example.com' })
const got = await connection.execute('SELECT 1 from dual;')
expect(got).toBeDefined()
})
test('parses database URL when using HTTP', async () => {
const mockResponse = {
session: mockSession,
result: { fields: [], rows: [] }
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toEqual(`Basic ${btoa('someuser:password')}`)
expect(opts.headers['User-Agent']).toEqual(`database-js/${packageJSON.version}`)
return mockResponse
})
const connection = connect({ fetch, url: 'http://someuser:password@localhost:8080' })
const got = await connection.execute('SELECT 1 from dual;')
expect(got).toBeDefined()
})
test('exposes config as a public field', async () => {
const config = { url: 'mysql://someuser:password@example.com/db' }
const connection = connect(config)
expect(connection.config).toEqual({
host: 'example.com',
username: 'someuser',
password: 'password',
url: 'mysql://someuser:password@example.com/db'
})
})
})
describe('transaction', () => {
test('it runs a transaction successfully', async () => {
const mockResponse = {
session: mockSession,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
}
}
let numRequests = 0
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
const connection = connect(config)
await connection.transaction((tx) => {
return tx.execute('SELECT 1 from dual;')
})
expect(numRequests).toEqual(3)
})
test('it rolls back when an error occurs', async () => {
const mockResponse = {
session: mockSession,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
}
}
const mockError = { code: 'unauthenticated', message: 'invalid auth credentials' }
let numRequests = 0
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(401, () => {
numRequests++
return mockError
})
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, () => {
numRequests++
return mockResponse
})
const connection = connect(config)
try {
await connection.transaction((tx) => {
return Promise.all([tx.execute('SELECT 1'), tx.execute('SELECT 1')])
})
} catch (err) {
expect(numRequests).toEqual(4)
expect(err).toEqual(new DatabaseError('Unauthorized', 401, mockError))
}
})
})
describe('execute', () => {
test('it properly returns and decodes a select query', async () => {
const mockResponse = {
session: mockSession,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }, { name: 'null' }],
rows: [{ lengths: ['1', '-1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1', 'null'],
types: { ':vtg1': 'INT32', null: 'NULL' },
fields: [
{ name: ':vtg1', type: 'INT32' },
{ name: 'null', type: 'NULL' }
],
rows: [{ ':vtg1': 1, null: null }],
size: 1,
statement: 'SELECT 1, null from dual;',
rowsAffected: 0,
insertId: '0',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toMatch(/Basic /)
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.session).toEqual(null)
return mockResponse
})
const connection = connect(config)
const got = await connection.execute('SELECT 1, null from dual;')
expect(got).toEqual(want)
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toMatch(/Basic /)
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.session).toEqual(mockSession)
return mockResponse
})
const got2 = await connection.execute('SELECT 1, null from dual;')
expect(got2).toEqual(want)
})
test('it properly returns and decodes a select query (select null)', async () => {
const mockResponse = {
session: mockSession,
result: {
fields: [{ name: 'null' }],
rows: [{ lengths: ['-1'] }]
},
timing: 1
}
const want = {
headers: ['null'],
types: { null: 'NULL' },
fields: [{ name: 'null', type: 'NULL' }],
rows: [{ null: null }],
size: 1,
statement: 'SELECT null',
rowsAffected: 0,
insertId: '0',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toMatch(/Basic /)
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.session).toEqual(null)
return mockResponse
})
const connection = connect(config)
const got = await connection.execute('SELECT null')
expect(got).toEqual(want)
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toMatch(/Basic /)
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.session).toEqual(mockSession)
return mockResponse
})
const got2 = await connection.execute('SELECT null')
expect(got2).toEqual(want)
})
test('it properly returns and decodes a select query with rows as array when designated', async () => {
const mockResponse = {
session: mockSession,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1'],
types: { ':vtg1': 'INT32' },
rows: [[1]],
fields: [{ name: ':vtg1', type: 'INT32' }],
size: 1,
statement: 'SELECT 1 from dual;',
time: 1000,
rowsAffected: 0,
insertId: '0'
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
expect(opts.headers['Authorization']).toMatch(/Basic /)
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.session).toEqual(null)
return mockResponse
})
const connection = connect(config)
const got = await connection.execute('SELECT 1 from dual;', null, { as: 'array' })
expect(got).toEqual(want)
})
test('it properly returns an executed query for a DDL statement', async () => {
const mockResponse = {
session: mockSession,
result: {},
timing: 0
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, mockResponse)
const query = 'CREATE TABLE `foo` (bar json);'
const want = {
headers: [],
types: {},
fields: [],
rows: [],
rowsAffected: 0,
insertId: '0',
size: 0,
statement: query,
time: 0
}
const connection = connect(config)
const got = await connection.execute(query)
expect(got).toEqual(want)
})
test('it properly returns an executed query for an UPDATE statement', async () => {
const mockResponse = {
session: mockSession,
result: {
rowsAffected: '1'
},
timing: 1
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, mockResponse)
const query = "UPDATE `foo` SET bar='planetscale'"
const want = {
headers: [],
types: {},
fields: [],
rows: [],
rowsAffected: 1,
insertId: '0',
size: 0,
statement: query,
time: 1000
}
const connection = connect(config)
const got = await connection.execute(query)
expect(got).toEqual(want)
})
test('it properly returns an executed query for an INSERT statement', async () => {
const mockResponse = {
session: mockSession,
result: {
rowsAffected: '1',
insertId: '2'
},
timing: 1
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, mockResponse)
const query = "INSERT INTO `foo` (bar) VALUES ('planetscale');"
const want = {
headers: [],
types: {},
fields: [],
rows: [],
rowsAffected: 1,
insertId: '2',
size: 0,
statement: query,
time: 1000
}
const connection = connect(config)
const got = await connection.execute(query)
expect(got).toEqual(want)
})
test('it properly returns network errors when unauthenticated', async () => {
const mockError = { code: 'unauthenticated', message: 'invalid auth credentials' }
const mockResponse = {
session: mockSession,
error: mockError
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(401, mockResponse)
const connection = connect(config)
try {
await connection.execute('SELECT * from foo;')
} catch (err) {
expect(err).toEqual(new DatabaseError(mockError.message, 401, mockError))
}
})
test('it properly returns network errors when not json', async () => {
const mockError = {
code: 'internal',
message: 'Internal Server Error'
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(500, mockError)
const connection = connect(config)
try {
await connection.execute('SELECT * from foo;')
} catch (err) {
expect(err).toEqual(new DatabaseError(mockError.message, 500, mockError))
}
})
test('it throws errors returned as a database error', async () => {
const mockError = {
message:
'target: test.0.primary: vttablet: rpc error: code = NotFound desc = Table \'vt_test_0.foo\' doesn\'t exist (errno 1146) (sqlstate 42S02) (CallerID: unsecure_grpc_client): Sql: "select * from foo", BindVars: {#maxLimit: "type:INT64 value:\\"10001\\""}',
code: 'NOT_FOUND'
}
const mockResponse = {
session: mockSession,
error: mockError
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, mockResponse)
const connection = connect(config)
try {
await connection.execute('SELECT * from foo;')
} catch (err) {
expect(err).toEqual(new DatabaseError(mockError.message, 400, mockError))
}
})
test('it properly escapes query parameters', async () => {
const mockResponse = {
session: null,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1'],
rows: [{ ':vtg1': 1 }],
types: { ':vtg1': 'INT32' },
fields: [{ name: ':vtg1', type: 'INT32' }],
size: 1,
insertId: '0',
rowsAffected: 0,
statement: "SELECT 1 from dual where foo = 'bar';",
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.query).toEqual(want.statement)
return mockResponse
})
const connection = connect(config)
const got = await connection.execute('SELECT ? from dual where foo = ?;', [1, 'bar'])
expect(got).toEqual(want)
})
test('it uses custom format function', async () => {
const mockResponse = {
session: null,
result: {
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1'],
types: { ':vtg1': 'INT32' },
fields: [{ name: ':vtg1', type: 'INT32' }],
rows: [{ ':vtg1': 1 }],
size: 1,
insertId: '0',
rowsAffected: 0,
statement: 'select `login`, `email` from `users` where id = 42',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.query).toEqual(want.statement)
return mockResponse
})
const connection = connect({ ...config, format: SqlString.format })
const got = await connection.execute('select ?? from ?? where id = ?', [['login', 'email'], 'users', 42])
expect(got).toEqual(want)
})
test('uses custom cast function', async () => {
const mockResponse = {
session: null,
result: {
fields: [{ name: ':vtg1', type: 'INT64' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1'],
types: { ':vtg1': 'INT64' },
fields: [{ name: ':vtg1', type: 'INT64' }],
rows: [{ ':vtg1': BigInt(1) }],
size: 1,
insertId: '0',
rowsAffected: 0,
statement: 'select 1 from dual',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.query).toEqual(want.statement)
return mockResponse
})
const inflate: Cast = (field, value) => (field.type === 'INT64' ? BigInt(value as string) : value)
const connection = connect({ ...config, cast: inflate })
const got = await connection.execute('select 1 from dual')
expect(got).toEqual(want)
})
test('uses custom cast function when it is passed to execute', async () => {
const mockResponse = {
session: null,
result: {
fields: [{ name: ':vtg1', type: 'INT64' }],
rows: [{ lengths: ['1'], values: 'MQ==' }]
},
timing: 1
}
const want = {
headers: [':vtg1'],
types: { ':vtg1': 'INT64' },
fields: [{ name: ':vtg1', type: 'INT64' }],
rows: [{ ':vtg1': 'I am a biggish int' }],
size: 1,
insertId: '0',
rowsAffected: 0,
statement: 'select 1 from dual',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.query).toEqual(want.statement)
return mockResponse
})
const connInflate: Cast = (field, value) => (field.type === 'INT64' ? 'I am a biggish int' : value)
const inflate: Cast = (field, value) => (field.type === 'INT64' ? BigInt(value as string) : value)
const connection = connect({ ...config, cast: inflate })
const got = await connection.execute('select 1 from dual', {}, { cast: connInflate })
expect(got).toEqual(want)
})
test('parses json column values', async () => {
const document = JSON.stringify({ answer: 42 })
const mockResponse = {
session: null,
result: {
fields: [{ name: 'document', type: 'JSON' }],
rows: [{ lengths: [String(document.length)], values: btoa(document) }]
},
timing: 1
}
const want = {
headers: ['document'],
types: { document: 'JSON' },
fields: [{ name: 'document', type: 'JSON' }],
rows: [{ document: JSON.parse(document) }],
size: 1,
insertId: '0',
rowsAffected: 0,
statement: 'select document from documents',
time: 1000
}
mockPool.intercept({ path: EXECUTE_PATH, method: 'POST' }).reply(200, (opts: any) => {
const bodyObj = JSON.parse(opts.body.toString())
expect(bodyObj.query).toEqual(want.statement)
return mockResponse
})
const connection = connect(config)
const got = await connection.execute('select document from documents')
expect(got).toEqual(want)
})
})
describe('refresh', () => {
test('it sets the session variable when true', async () => {
const connection = connect(config)
mockPool.intercept({ path: CREATE_SESSION_PATH, method: 'POST' }).reply(200, JSON.stringify(mockSession))
await connection.refresh()
})
})
describe('format', () => {
test('exports format function', () => {
const query = 'select 1 from user where id=?'
const expected = 'select 1 from user where id=42'
expect(format(query, [42])).toEqual(expected)
})
})
describe('hex', () => {
test('exports hex function', () => {
expect(hex('\0')).toEqual('0x00')
})
})