-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema-proxy.spec.ts
600 lines (578 loc) · 18.5 KB
/
schema-proxy.spec.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
import { DBInstance, newDB } from 'better-sqlite3-schema'
import { expect } from 'chai'
import { join } from 'path'
import { proxySchema } from '../src/schema-proxy'
import {
clearCache,
count,
del,
filter,
find,
notNull,
truncate,
unProxy,
update,
} from '../src/extension'
import { existsSync, unlinkSync } from 'fs'
import { fake } from 'sinon'
import { getTimes } from '../src/helpers'
export type DBProxy = {
user: User[]
post: Post[]
log: Log[]
order: Order[]
}
export type User = {
id?: number
username: string
is_admin?: boolean | null
}
export type Post = {
id?: number
user_id: number
content: string
created_at?: string
updated_at?: string
author?: User
delete_time?: string | Date | null
}
export type Log = {
id?: number
remark: string | null
}
export type Order = {
id?: number
user_id: number
user?: User
}
context('proxySchema TestSuit', () => {
let db: DBInstance
let proxy: DBProxy
before(() => {
let dbFile = join('data', 'schema.sqlite3')
if (existsSync(dbFile)) {
unlinkSync(dbFile)
}
db = newDB({
path: dbFile,
migrate: {
migrations: [
/* sql */ `
-- Up
create table if not exists user (
id integer primary key
, username text not null unique
, is_admin boolean
);
-- Down
drop table user;
`,
/* sql */ `
-- Up
create table if not exists post (
id integer primary key
, user_id integer not null references user (id)
, content text not null
, created_at timestamp not null default current_timestamp
, updated_at timestamp
, delete_time timestamp
);
-- Down
drop table post;
`,
/* sql */ `
-- Up
create table if not exists log (
id integer primary key
, remark text
);
-- Down
drop table post;
`,
/* sql */ `
-- Up
create table if not exists "order" (
id integer primary key
, user_id integer not null references user (id)
);
-- Down
drop table "order";
`,
],
},
})
proxy = proxySchema<DBProxy>(db, {
user: [],
post: [['author', { field: 'user_id', table: 'user' }]],
log: [],
order: [['user', { field: 'user_id', table: 'user' }]],
})
})
it('should reset table', () => {
proxy.post.length = 0
proxy.user.length = 0
expect(proxy.post.length).to.equals(0)
expect(proxy.user.length).to.equals(0)
})
it('should insert row by push', () => {
proxy.user.push({ username: 'Alice' })
expect(proxy.user.length).to.equals(1)
})
it('should select row by id', () => {
expect(unProxy(proxy.user[1])).to.deep.equals({
id: 1,
username: 'Alice',
is_admin: null,
})
})
it('should insert row by array index', () => {
proxy.user[2] = { username: 'Bob' }
expect(unProxy(proxy.user[2])).to.deep.equals({
id: 2,
username: 'Bob',
is_admin: null,
})
})
it('should update a specific column', () => {
proxy.user[2].username = 'Charlie'
expect(unProxy(proxy.user[2])).to.deep.equals({
id: 2,
username: 'Charlie',
is_admin: null,
})
})
it('should update multiple columns', () => {
proxy.post[1] = { user_id: 2, content: 'B' }
proxy.post[1] = { user_id: 1, content: 'A' }
expect(proxy.post[1].user_id).to.equals(1)
expect(proxy.post[1].content).to.equals('A')
})
it('should select column', () => {
expect(proxy.user[2].username).to.equals('Charlie')
})
it('should select all rows', () => {
expect(unProxy(proxy.user)).to.deep.equals([
{ id: 1, username: 'Alice', is_admin: null },
{ id: 2, username: 'Charlie', is_admin: null },
])
})
it('should delete row by id', () => {
expect(proxy.user.length).to.equals(2)
delete proxy.user[2]
expect(proxy.user.length).to.equals(1)
})
it('should auto convert boolean values into 1/0', () => {
function test(options: { input: boolean | null; output: 1 | 0 | null }) {
let id = proxy.user.push({
username: 'admin?' + options.input,
is_admin: options.input,
})
expect(proxy.user[id].is_admin).to.equals(options.output)
expect(find(proxy.user, { id, is_admin: options.input })?.id).to.equals(
id,
)
expect(
filter(proxy.user, { id, is_admin: options.input }),
).to.have.lengthOf(1)
}
test({ input: null, output: null })
test({ input: true, output: 1 })
test({ input: false, output: 0 })
})
it('should truncate table by length', () => {
proxy.user[1] = { username: 'alice' }
proxy.user[2] = { username: 'bob' }
expect(proxy.user.length).not.to.equals(0)
proxy.post.length = 0
proxy.user.length = 0
expect(proxy.user.length).to.equals(0)
expect(proxy.user[1]).to.be.undefined
expect(proxy.user[2]).to.be.undefined
})
it('should truncate table with helper function', () => {
proxy.user[1] = { username: 'alice' }
proxy.user[2] = { username: 'bob' }
expect(proxy.user.length).not.to.equals(0)
truncate(proxy.post)
truncate(proxy.user)
expect(proxy.user.length).to.equals(0)
expect(proxy.user[1]).to.be.undefined
expect(proxy.user[2]).to.be.undefined
})
it('should reuse id after truncate', () => {
proxy.user[1] = { username: 'alice' }
proxy.user[2] = { username: 'bob' }
truncate(proxy.user)
expect(proxy.user[1]).to.be.undefined
expect(proxy.user[2]).to.be.undefined
expect(proxy.user.push({ username: 'alice' })).to.equals(1)
expect(proxy.user.push({ username: 'bob' })).to.equals(2)
expect(proxy.user[1].username).to.equals('alice')
expect(proxy.user[2].username).to.equals('bob')
})
it('should find record by non-id column', () => {
proxy.user[1] = { id: 1, username: 'Alice' }
proxy.user[2] = { id: 2, username: 'Bob' }
expect(unProxy(find(proxy.user, { username: 'Alice' })!)).to.deep.equals({
id: 1,
username: 'Alice',
is_admin: null,
})
expect(unProxy(find(proxy.user, { username: 'Bob' })!)).to.deep.equals({
id: 2,
username: 'Bob',
is_admin: null,
})
})
it('should find record by multiple columns', () => {
proxy.post.length = 0
proxy.post[1] = { user_id: 1, content: 'Hello from Alice' }
proxy.post[2] = { user_id: 2, content: 'Hello from Bob' }
proxy.post[3] = { user_id: 1, content: 'Hi Bob' }
let match = find(proxy.post, { user_id: 1, content: 'Hi Bob' })!
expect(match).not.to.be.undefined
expect(match.id).to.equals(3)
})
it('should filter records by any columns', () => {
let matches = filter(proxy.post, { user_id: 1 })
expect(matches).to.have.lengthOf(2)
expect(matches[0].id).to.equals(1)
expect(matches[1].id).to.equals(3)
})
it('should delete records by any columns', () => {
proxy.log.length = 0
expect(proxy.log.length).to.equals(0)
proxy.log[1] = { remark: 'test 1' }
proxy.log[2] = { remark: 'test 2' }
expect(proxy.log.length).to.equals(2)
del(proxy.log, { remark: 'test 1' })
expect(proxy.log.length).to.equals(1)
del(proxy.log, { remark: 'test 1' })
expect(proxy.log.length).to.equals(1)
del(proxy.log, { remark: 'test 2' })
expect(proxy.log.length).to.equals(0)
})
it('should return number of deleted rows', () => {
let remark = 'to-be-deleted'
proxy.log.push({ remark })
proxy.log.push({ remark })
proxy.log.push({ remark })
expect(del(proxy.log, { remark })).to.equals(3)
expect(del(proxy.log, { remark })).to.equals(0)
})
it('should count records by any columns', () => {
expect(count(proxy.post, { user_id: 1 })).to.equals(2)
expect(count(proxy.post, { user_id: 101 })).to.equals(0)
})
context('null condition', () => {
before(() => {
proxy.log.length = 0
proxy.log[1] = { remark: 'mock-value-1' }
proxy.log[2] = { remark: null }
proxy.log[3] = { remark: 'mock-value-3' }
proxy.log[4] = { remark: null }
proxy.log[5] = { remark: 'mock-value-5' }
expect(proxy.log).to.have.lengthOf(5)
})
context('where is null', () => {
it('should find columns', () => {
expect(find(proxy.log, { id: 1, remark: null })).undefined
expect(find(proxy.log, { id: 2, remark: null })).not.undefined
})
it('should filter columns', () => {
expect(filter(proxy.log, { remark: null })).to.have.lengthOf(2)
})
it('should count columns', () => {
expect(count(proxy.log, { remark: null })).to.equals(2)
})
})
context('where is not null', () => {
it('should find columns', () => {
expect(find(proxy.log, { id: 1, remark: notNull })).not.undefined
expect(find(proxy.log, { id: 2, remark: notNull })).undefined
})
it('should filter columns', () => {
expect(filter(proxy.log, { remark: notNull })).to.have.lengthOf(3)
})
it('should count columns', () => {
expect(count(proxy.log, { remark: notNull })).to.equals(3)
})
})
})
context('proxy array methods', () => {
context('proxy.table.push()', () => {
before(() => {
proxy.log.length = 0
})
it('should returns id of last insert row', () => {
expect(proxy.log.push({ remark: '' })).to.equals(1)
})
it('should reuse id of last row', () => {
expect(proxy.log.push({ remark: '' })).to.equals(2)
delete proxy.log[2]
expect(proxy.log.push({ remark: '' })).to.equals(2)
})
it('should not reuse id of non-last row', () => {
expect(proxy.log.push({ remark: '' })).to.equals(3)
delete proxy.log[2]
expect(proxy.log.push({ remark: '' })).to.equals(4)
})
})
context('access each populated row', () => {
beforeEach(() => {
proxy.log.length = 0
proxy.log[1] = { remark: 'first' }
proxy.log[3] = { remark: 'third' }
proxy.log[10] = { remark: 'ten' }
})
it('should access via .forEach() method', () => {
let forEach = fake()
proxy.log.forEach(forEach)
expect(forEach.callCount).to.equals(3)
// TODO test the value
expect(forEach.args).to.deep.equals([
[{}, 1, proxy.log],
[{}, 3, proxy.log],
[{}, 10, proxy.log],
])
})
it('should access via .map() method', () => {
let result = proxy.log.map(row => row.remark)
expect(result).to.deep.equals(['first', 'third', 'ten'])
})
it('should access via .filter() method', () => {
let result = proxy.log.filter(row => row.remark?.startsWith('t'))
expect(result).to.have.lengthOf(2)
expect(result[0].id).to.equals(3)
expect(result[0].remark).to.equals('third')
expect(result[1].id).to.equals(10)
expect(result[1].remark).to.equals('ten')
})
it('should access via .slice() method', () => {
let result = proxy.log.slice()
expect(result).to.have.lengthOf(3)
expect(result[0].id).to.equals(1)
expect(result[0].remark).to.equals('first')
expect(result[1].id).to.equals(3)
expect(result[1].remark).to.equals('third')
expect(result[2].id).to.equals(10)
expect(result[2].remark).to.equals('ten')
})
it('should access via .slice(start) method', () => {
let result = proxy.log.slice(3)
expect(result).to.have.lengthOf(2)
expect(result[0].id).to.equals(3)
expect(result[0].remark).to.equals('third')
expect(result[1].id).to.equals(10)
expect(result[1].remark).to.equals('ten')
})
it('should access via .slice(start,end) method', () => {
let result = proxy.log.slice(3, 10)
expect(result).to.have.lengthOf(1)
expect(result[0].id).to.equals(3)
expect(result[0].remark).to.equals('third')
})
it('should access via for-loop', () => {
let each = fake()
for (let row of proxy.log) {
expect(typeof row).to.equals('object')
expect(typeof row.id).to.equals('number')
expect(typeof row.remark).to.equals('string')
each({
id: row.id,
remark: row.remark,
})
}
expect(each.callCount).to.equals(3)
expect(each.args).to.deep.equals([
[{ id: 1, remark: 'first' }],
[{ id: 3, remark: 'third' }],
[{ id: 10, remark: 'ten' }],
])
})
})
})
it('should resolve reference row from foreign key', () => {
expect(proxy.post[3].user_id).to.equals(1)
expect(proxy.user[1].username).to.equals('Alice')
let author = proxy.post[3].author!
expect(author).not.to.be.undefined
expect(author.username).to.equals('Alice')
})
it('should update foreign key when assign specific reference row', () => {
expect(proxy.post[3].user_id).to.equals(1)
proxy.post[3].author = proxy.user[2]
expect(proxy.post[3].user_id).to.equals(2)
})
it('should update foreign key when updating multiple fields including reference row', () => {
proxy.post[3].content = 'old'
proxy.post[3].user_id = 1
expect(proxy.post[3].content).to.equals('old')
expect(proxy.post[3].user_id).to.equals(1)
proxy.post[3] = {
author: proxy.user[2],
content: 'new',
} as Partial<Post> as Post
expect(proxy.post[3].content).to.equals('new')
expect(proxy.post[3].user_id).to.equals(2)
})
it('should save foreign key when inserting row including reference row', () => {
let id = proxy.post.push({
author: proxy.user[2],
content: 'with author',
} as Partial<Post> as Post)
expect(proxy.post[id].content).to.equals('with author')
expect(proxy.post[id].user_id).to.equals(2)
})
context('convert Date instance to GMT timestamp', () => {
let date = new Date('2022-09-25T09:25:12+08:00')
let timestamp = '2022-09-25 01:25:12'
let user_id = 1
let content = 'mock-content'
let post_id: number
before(() => {
proxy.user[1] = { username: 'alice' }
})
it('should convert when insert', () => {
post_id = proxy.post.push({ user_id, content, delete_time: date })
expect(proxy.post[post_id].delete_time).to.equals(timestamp)
})
it('should convert when update', () => {
proxy.post[post_id].delete_time = null
expect(proxy.post[post_id].delete_time).to.be.null
proxy.post[post_id].delete_time = date
expect(proxy.post[post_id].delete_time).to.equals(timestamp)
})
it('should convert when find', () => {
let match = find(proxy.post, { id: post_id, delete_time: date })!
expect(match).not.undefined
expect(match.id).to.equals(post_id)
})
it('should convert when filter', () => {
let matches = filter(proxy.post, { id: post_id, delete_time: date })
expect(matches).to.have.lengthOf(1)
expect(matches[0].id).to.equals(post_id)
})
})
context('update()', () => {
context('update by id', () => {
it('should update multiple columns in batch', () => {
proxy.user[1] = { username: 'admin', is_admin: true }
let user = proxy.user[1]
expect(user.username).to.equals('admin')
expect(user.is_admin).to.be.equals(1)
update(proxy.user, 1, { username: 'alice', is_admin: false })
expect(user.username).to.equals('alice')
expect(user.is_admin).to.be.equals(0)
})
it('should return number of updated rows', () => {
expect(update(proxy.user, 1, { is_admin: false })).to.equals(1)
expect(update(proxy.user, 101, { is_admin: false })).to.equals(0)
})
})
context('update by filter', () => {
before(() => {
proxy.user[1] = { username: 'alice' }
proxy.user[2] = { username: 'bob' }
proxy.post.length = 0
expect(proxy.post.length).to.equals(0)
proxy.post[1] = { user_id: 1, content: 'v1' }
proxy.post[2] = { user_id: 1, content: 'v1' }
proxy.post[3] = { user_id: 1, content: 'v1' }
proxy.post[4] = { user_id: 2, content: 'v1' }
proxy.post[5] = { user_id: 2, content: 'v1' }
expect(proxy.post.length).to.equals(5)
})
it('should update multiple columns in batch', () => {
let changes = update(
proxy.post,
{ user_id: 1, content: 'v1' },
{ user_id: 2, content: 'v2' },
)
expect(changes).to.equals(3)
for (let i = 1; i <= 5; i++) {
if (i <= 3) {
expect(proxy.post[i].user_id).to.equals(2)
expect(proxy.post[i].content).to.equals('v2')
} else {
expect(proxy.post[i].content).to.equals('v1')
}
}
})
it('should return number of updated rows', () => {})
})
})
context('getTimes()', () => {
before(() => {
proxy.user[1] = { username: 'alice' }
proxy.post[1] = { user_id: 1, content: 'sample post' }
proxy.post[2] = { user_id: 1, content: 'updated post', updated_at: 't1' }
proxy.post[3] = {
user_id: 1,
content: 'deleted post',
updated_at: 't2',
delete_time: 't3',
}
})
it('should get created_at and updated_at by default', () => {
let row = proxy.post[3]
let times = getTimes(row)
expect(Object.keys(times)).deep.equals(['created_at', 'updated_at'])
expect(times.created_at).not.null
expect(times.updated_at).not.null
})
it('should only get specified field', () => {
let row = proxy.post[3]
let times = getTimes(row, ['delete_time'])
expect(Object.keys(times)).deep.equals(['delete_time'])
expect(times.delete_time).not.null
})
})
})
context('schema proxy memory test', () => {
let db = newDB({
memory: true,
migrate: {
migrations: [
/* sql */ `
-- Up
create table log (
id integer primary key
, remark text
);
-- Down
drop table log;
`,
],
},
})
let proxy = proxySchema<{ log: Log[] }>(db, { log: [] })
it('should not run out of memory due to too much row proxy cache', () => {
let n = 1_000_000
for (let i = 1; i < n; i++) {
proxy.log[i] = { remark: 'remark ' + i }
proxy.log[i]
if (i % 100_000 == 0) {
clearCache(proxy)
let rss = process.memoryUsage().rss
let averageSize = rss / i
if (averageSize < 360) {
return
}
}
}
let rss = process.memoryUsage().rss
let averageSize = rss / n
throw new Error(
`memory not freed? n=${n.toLocaleString()}, rss=${rss.toLocaleString()}, averageSize=${averageSize}`,
)
}).timeout(20 * 1000)
it('should not delete data from db after clearCache', () => {
delete proxy.log[1]
expect(proxy.log[1]).undefined
proxy.log[1] = { remark: 'remark 1' }
expect(proxy.log[1].remark).to.equal('remark 1')
clearCache(proxy)
expect(proxy.log[1].remark).to.equal('remark 1')
})
})