This repository was archived by the owner on Feb 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest.js
406 lines (358 loc) · 9.53 KB
/
test.js
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
var charwise = require('charwise')
var dbRange = require('./src/dbRange')
const { MemoryLevel } = require('memory-level')
const assert = require('node:assert')
const nodeTest = require('node:test')
var Transactor = require('./')
// stub for https://www.npmjs.com/package/ava
function test (name, fn) {
nodeTest(name, function () {
fn({
is: assert.strictEqual,
deepEqual: assert.deepStrictEqual,
throwsAsync: async function (p) {
try {
await p
} catch (err) {
return err
}
assert.fail('expected this to throw an error')
}
})
})
}
function mkDB () {
return new MemoryLevel({ keyEncoding: charwise, valueEncoding: 'json' })
}
var mkNextId = function () {
var currId = 0
return function () {
currId++
return 'id' + currId
}
}
async function dbDump (fb, keepSchema) {
var dbStr = ''
await dbRange(fb.db, {
prefix: []
}, function (data, stopRange) {
if (!keepSchema) {
if (/^_s\//.test(data.key[data.key[0].indexOf('a') + 1])) {
return
}
}
dbStr += data.key.join('|') + '\n'
})
return dbStr.trim()
}
test('Transactor', async function (t) {
var db = mkDB()
var nextId = mkNextId()
var schema = {}
var tr0 = Transactor(db, schema, nextId)
var fb = await tr0.snap()
t.is(fb.txn, 1, 'schema transacted')
t.is(await dbDump(fb, true), `
aveto|_s/attr|_s/attr|id1|1|true
aveto|_s/attr|_s/txn-time|id3|1|true
aveto|_s/attr|_s/type|id2|1|true
aveto|_s/type|Date|id3|1|true
aveto|_s/type|String|id1|1|true
aveto|_s/type|String|id2|1|true
eavto|id1|_s/attr|_s/attr|1|true
eavto|id1|_s/type|String|1|true
eavto|id2|_s/attr|_s/type|1|true
eavto|id2|_s/type|String|1|true
eavto|id3|_s/attr|_s/txn-time|1|true
eavto|id3|_s/type|Date|1|true
teavo|1|id1|_s/attr|_s/attr|true
teavo|1|id1|_s/type|String|true
teavo|1|id2|_s/attr|_s/type|true
teavo|1|id2|_s/type|String|true
teavo|1|id3|_s/attr|_s/txn-time|true
teavo|1|id3|_s/type|Date|true
vaeto|Date|_s/type|id3|1|true
vaeto|String|_s/type|id1|1|true
vaeto|String|_s/type|id2|1|true
vaeto|_s/attr|_s/attr|id1|1|true
vaeto|_s/txn-time|_s/attr|id3|1|true
vaeto|_s/type|_s/attr|id2|1|true
`.trim())
var error = await t.throwsAsync(tr0.transact([{ name: 'bob' }]))
t.is(error + '', 'Error: Fact tuple missing `$e`')
error = await t.throwsAsync(tr0.transact([{ $e: 123, name: 'bob' }]))
t.is(error + '', 'TypeError: EntityID `$e` should be a String')
fb = await tr0.transact([])
fb = await tr0.transact([{ $e: 'A0' }])
t.is(fb.txn, 1, 'nothing actually transacted')
schema = {
name: { type: 'String' },
email: { type: 'String' },
foo: { type: 'String' }
}
var tr1 = Transactor(db, schema, nextId)
fb = await tr1.transact([
{
$e: 'AA',
name: 'bob',
email: 'some@email'
},
{
$e: 'BB',
foo: 'bar'
}
])
t.is(fb.txn, 3, 'txn 3 finished')
fb = await tr1.transact([{
$e: 'BB',
foo: 'baz'
}])
t.is(fb.txn, 4, 'txn 4 finished')
t.is(await dbDump(fb), `
aveto|email|some@email|AA|3|true
aveto|foo|bar|BB|3|true
aveto|foo|baz|BB|4|true
aveto|name|bob|AA|3|true
eavto|AA|email|some@email|3|true
eavto|AA|name|bob|3|true
eavto|BB|foo|bar|3|true
eavto|BB|foo|baz|4|true
teavo|3|AA|email|some@email|true
teavo|3|AA|name|bob|true
teavo|3|BB|foo|bar|true
teavo|4|BB|foo|baz|true
vaeto|bar|foo|BB|3|true
vaeto|baz|foo|BB|4|true
vaeto|bob|name|AA|3|true
vaeto|some@email|email|AA|3|true
`.trim())
// Try a cold start with the same schema
var tr2 = Transactor(db, schema, nextId)
fb = await tr2.snap()
t.is(fb.txn, 4, 'loaded the txn')
fb = await tr2.asOf(2)
t.is(fb.txn, 2, 'back in time')
})
test('Schema setup', async function (t) {
var nextId = mkNextId()
var tr = Transactor(mkDB(), {
username: { type: 'String' }
}, nextId)
var fb = await tr.snap()
t.deepEqual(fb.schema.byAttr, {
'_s/attr': {
$e: 'id1',
'_s/attr': '_s/attr',
'_s/type': 'String'
},
'_s/type': {
$e: 'id2',
'_s/attr': '_s/type',
'_s/type': 'String'
},
'_s/txn-time': {
$e: 'id3',
'_s/attr': '_s/txn-time',
'_s/type': 'Date'
},
'username': {
$e: 'id4',
'_s/attr': 'username',
'_s/type': 'String'
}
})
fb = await tr.transact([{
$e: nextId(),
'_s/attr': 'email',
'_s/type': 'String'
}])
t.deepEqual(fb.schema.byAttr.email, {
$e: 'id13',
'_s/attr': 'email',
'_s/type': 'String'
})
t.is(Object.keys(fb.schema.byAttr).join(','), '_s/attr,_s/txn-time,_s/type,email,username')
fb = await tr.asOf(1)
t.is(fb.txn, 1)
t.is(Object.keys(fb.schema.byAttr).join(','), '_s/attr,_s/txn-time,_s/type,username')
})
test('Schema type assertions', async function (t) {
var nextId = mkNextId()
var tr = Transactor(mkDB(), {
name: { type: 'String' },
incomplete: {},
unsupported: { type: 'Foo' }
}, nextId)
async function tError (entity, expectedMsg) {
entity.$e = nextId()
var error = await t.throwsAsync(tr.transact([entity]))
t.is(error + '', expectedMsg)
}
await tError({ watda: '?' }, 'Error: Attribute `watda` schema not found')
await tError({ incomplete: '?' }, 'Error: Attribute `incomplete` is missing `_s/type`')
await tError({ unsupported: '?' }, 'Error: Attribute `unsupported`\'s `_s/type` "Foo" is not supported')
await tError({ name: 123 }, 'TypeError: Expected a String for attribute `name`')
})
test('q', async function (t) {
var tr = Transactor(mkDB(), {
father: { type: 'String' },
mother: { type: 'String' }
}, mkNextId())
var fb = await tr.transact([
{ $e: 'axl', father: 'mike', mother: 'frankie' },
{ $e: 'sue', father: 'mike', mother: 'frankie' },
{ $e: 'brick', father: 'mike', mother: 'frankie' },
{ $e: 'mike', father: 'big mike' },
{ $e: 'rusty', father: 'big mike' },
{ $e: 'frankie', father: 'tag', mother: 'pat' },
{ $e: 'janet', father: 'tag', mother: 'pat' }
])
var data = await fb.q([['?id', 'father', '?dad']])
t.deepEqual(data, [
{ id: 'mike', dad: 'big mike' },
{ id: 'rusty', dad: 'big mike' },
{ id: 'axl', dad: 'mike' },
{ id: 'brick', dad: 'mike' },
{ id: 'sue', dad: 'mike' },
{ id: 'frankie', dad: 'tag' },
{ id: 'janet', dad: 'tag' }
])
data = await fb.q([['?id', 'father', '?dad']], {
dad: 'mike'
})
t.deepEqual(data, [
{ id: 'axl', dad: 'mike' },
{ id: 'brick', dad: 'mike' },
{ id: 'sue', dad: 'mike' }
])
data = await fb.q([['?id', 'father', '?dad']], {
dad: 'mike'
}, ['id'])
t.deepEqual(data, [
{ id: 'axl' },
{ id: 'brick' },
{ id: 'sue' }
])
data = await fb.q([
['?child', 'father', '?husband'],
['?child', 'mother', '?wife']
], {}, ['husband', 'wife'])
t.deepEqual(data, [
{ husband: 'mike', wife: 'frankie' },
{ husband: 'tag', wife: 'pat' }
])
})
test('get', async function (t) {
var tr = Transactor(mkDB(), {
name: { type: 'String' },
email: { type: 'String' }
}, mkNextId())
var fb = await tr.transact([
{ $e: 'aaa', name: 'jim', email: '[email protected]' },
{ $e: 'bbb', email: '[email protected]' }
])
t.deepEqual(await fb.get('aaa'), {
$e: 'aaa',
name: 'jim',
email: '[email protected]'
})
t.deepEqual(await fb.get('bbb'), {
$e: 'bbb',
email: '[email protected]'
})
var fbNew = await tr.transact([
{ $e: 'aaa', name: 'a name change' }
])
t.deepEqual(await fb.get('aaa'), {
$e: 'aaa',
name: 'jim',
email: '[email protected]'
})
t.deepEqual(await fbNew.get('aaa'), {
$e: 'aaa',
name: 'a name change',
email: '[email protected]'
})
})
test('Date', async function (t) {
var tr = Transactor(mkDB(), {
jsDate: { type: 'Date' }
}, mkNextId())
var fb = await tr.transact([
{ $e: 'aaa', jsDate: new Date(1111) },
{ $e: 'bbb', jsDate: new Date(2222) },
{ $e: 'ccc', jsDate: new Date(1111) }
])
t.deepEqual(await fb.get('aaa'), {
$e: 'aaa',
jsDate: (new Date(1111)).toISOString()
})
var data = await fb.q([
['?id', 'jsDate', '?d']
], { d: new Date(1111) }, ['id'])
t.deepEqual(data, [
{ id: 'aaa' },
{ id: 'ccc' }
])
})
test('Function binding', async function (t) {
var tr = Transactor(mkDB(), {
price: { type: 'Integer' }
}, mkNextId())
var fb = await tr.transact([
{ $e: 'apple', price: 9 },
{ $e: 'banana', price: 2 },
{ $e: 'canteloupe', price: 4 },
{ $e: 'durian', price: 3 },
{ $e: 'elderberry', price: 1 },
{ $e: 'feijoa', price: 2 },
{ $e: 'grapes', price: 1 }
])
function gt3 (price) {
return price > 3
}
var data = await fb.q(
[['?id', 'price', '?p']],
{ p: gt3 },
['id', 'p']
)
t.deepEqual(data, [
{ id: 'canteloupe', p: 4 },
{ id: 'apple', p: 9 }
])
})
test('Multiple function binding', async function (t) {
var tr = Transactor(mkDB(), {
price: { type: 'Integer' },
quantity: { type: 'Integer' }
}, mkNextId())
var fb = await tr.transact([
{ $e: 'apple', price: 9, quantity: 0 },
{ $e: 'banana', price: 2, quantity: 2 },
{ $e: 'canteloupe', price: 4, quantity: 0 },
{ $e: 'durian', price: 3, quantity: 8 },
{ $e: 'elderberry', price: 1, quantity: 0 },
{ $e: 'feijoa', price: 2, quantity: 1 },
{ $e: 'grapes', price: 1, quantity: 3 }
])
function lt4 (price) {
return price < 4
}
function inStock (quantity) {
return quantity > 0
}
var data = await fb.q(
[
['?id', 'price', '?p'],
['?id', 'quantity', '?q']
],
{ p: lt4, q: inStock },
['id', 'p', 'q']
)
t.deepEqual(data, [
{ id: 'grapes', p: 1, q: 3 },
{ id: 'banana', p: 2, q: 2 },
{ id: 'feijoa', p: 2, q: 1 },
{ id: 'durian', p: 3, q: 8 }
])
})