-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
459 lines (357 loc) · 8.27 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
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
const assert = require('assert')
const stream = require('stream')
const w = require('whew')
const {Schema, StreamingAbstractor, types, protospec} = require(__dirname)
w.add('Schema - Simple', (result) => {
const mySchema = new Schema([
{
'name': 'name',
'type': types.string
},
{
'name': 'alive',
'type': types.boolean
},
{
'name': 'birthyear',
'type': types.uint,
'size': 16
},
{
'name': 'decimal',
'type': types.double
}
])
const data = {
'name': 'Ethan',
'alive': true,
'birthyear': 3039,
'decimal': 5.135
}
const serialized = mySchema.build(data)
assert.deepStrictEqual(mySchema.parse(serialized), data)
result(true, 'Verified data integrity.')
})
w.add('Schema - Lists, complex', (result) => {
const mySchema = new Schema([
{
'name': 'name',
'type': types.string
},
{
'name': 'birthyear',
'type': types.uint,
'size': 16
},
{
'name': 'organizations',
'type': types.list,
'of': new Schema([
{
'name': 'name',
'type': types.string
},
{
'name': 'founded',
'type': types.int,
'size': 16
},
{
'name': 'value',
'type': types.varint
}
])
},
{
'name': 'isgood',
'type': types.boolean
}
])
const data = {
'name': 'Ethan',
'birthyear': 3039,
'isgood': true,
'organizations': [
{
'name': 'Esourceful',
'founded': 2006,
'value': 13422342
},
{
'name': 'Shh, secret!',
'founded': 2038,
'value': 0
},
{
'name': 'Test',
'founded': 0,
'value': -134223424
}
]
}
const serialized = mySchema.build(data)
const parsed = mySchema.parse(serialized)
assert.deepStrictEqual(parsed, data)
result(true, 'Verified data integrity.')
})
w.add('StreamingAbstractor - Event handling + sending', (result) => {
const loginSchema = new Schema([
{
'name': 'username',
'type': types.string
},
{
'name': 'number',
'type': types.uint,
'size': 16
}
])
const myAbstractor1 = new StreamingAbstractor()
myAbstractor1.register('login', loginSchema)
myAbstractor1.on('login', (data) => {
if (data.username === 'test' && data.number === 5135) {
result(true, 'Verified data integrity.')
}
else result(false)
})
const myAbstractor2 = new StreamingAbstractor()
myAbstractor2.pipe(myAbstractor1)
myAbstractor2.register('login', loginSchema)
myAbstractor2.send('login', {
'username': 'test',
'number': 5135
})
})
w.add('Buffer serialization and parsing', (result) => {
const fileSchema = new Schema([
{
'name': 'data',
'type': types.buffer
}
])
const data = Buffer.from('HELLO THERE!')
const built = fileSchema.build({
'data': data
})
const parsed = fileSchema.parse(built)
result(data.equals(parsed.data), parsed.data.toString())
})
w.add('StreamingAbstractor - Proper buffer buffering', (result) => {
const messageSchema = new Schema([
{
'name': 'content',
'type': types.string
}
])
const myAbstractor1 = new StreamingAbstractor()
myAbstractor1.register('message', messageSchema)
let recievedCount = 0
myAbstractor1.on('message', (data) => {
recievedCount++
if (recievedCount === 3 && data.content === 'Hey there.') {
result(true, 'Got 3 messages.')
}
})
myAbstractor1._write(Buffer.concat([
StreamingAbstractor.abstractorSchema.build({
'event': 'message',
'mode': 0,
'serialized': messageSchema.build({
'content': 'Hello!'
})
}),
StreamingAbstractor.abstractorSchema.build({
'event': 'message',
'mode': 0,
'serialized': messageSchema.build({
'content': 'Hello2!'
})
})
]))
const build = StreamingAbstractor.abstractorSchema.build({
'event': 'message',
'mode': 0,
'serialized': messageSchema.build({
'content': 'Hey there.'
})
})
// Chunk message
myAbstractor1._write(build.slice(0, 15))
myAbstractor1._write(build.slice(15))
})
w.add('Varint serialization and parsing', (result) => {
const varint = types.varint
const testNumbers = [255, 256, 257, 258, 16777215, 16777216, 16777217, -255, -256, -257, -16777215, -16777216]
for (let i = 0; i < testNumbers.length; i++) {
const gen = varint.serialize(testNumbers[i], {})
const parsed = varint.parse(gen, 0, {})
if (parsed.data !== testNumbers[i]) {
result(false, parsed.data + ' !== ' + testNumbers[i])
return
}
}
result(true, 'Comparisons succeeded')
})
w.add('Protospec - Importing schemas', (result) => {
const schemas = protospec.importAll(`
def friend
string name
int age size=16
// comment!?
def person
string name
int age size=16
list friends of=friend
`).schemas
const personSchema = schemas['person']
const person = {
'name': 'H. Wells',
'age': 24836,
'friends': [
{
'name': 'Q. Wells',
'age': 24834
},
{
'name': 'Ethan',
'age': 5874
}
]
}
const built = personSchema.build(person)
assert.deepStrictEqual(personSchema.parse(built), person)
result(true, 'Comparisons succeeded')
})
w.add('Protospec - Importing as abstractor', (result) => {
const myAbstractor = protospec.importAbstractor(`
def user private
string username
varint friendCount
def message
list seenBy of=user
string content
def login public
string username
string password
`)
result(myAbstractor.eventSchemas.hasOwnProperty('login') && myAbstractor.eventSchemas.hasOwnProperty('message') && !myAbstractor.eventSchemas.hasOwnProperty('user') && myAbstractor.eventSchemas.message.elements.findIndex((element) => element.of.elements.findIndex((element2) => element2.name === 'friendCount') !== -1) !== -1, 'Attempted to validate resulting abstractor.')
})
w.add('Instance type functionality', (result) => {
const personSchema = protospec.importAll(`
def address private
string country
string region
string street
int number size=24
def company private
string name
instance address of=address
def person
string name
instance currentCompany of=company
`).schemas.person
const person = {
'name': 'Ethan',
'currentCompany': {
'name': 'Esourceful',
'address': {
'country': 'US',
'region': 'CA',
'street': 'Corporation Ave.',
'number': 5135
}
}
}
const built = personSchema.build(person)
assert.deepStrictEqual(person, personSchema.parse(built))
result(true, 'Validated built data.')
})
w.add('Map type functionality', (result) => {
const mapSchema = new Schema([
{
'name': 'info',
'type': types.map,
'key': {
'type': types.string
},
'value': {
'type': types.string
}
}
])
const testData = {
'info': new Map([
['name', 'Person A'],
['location', 'Earth'],
['status', 'online']
])
}
const built = mapSchema.build(testData)
assert.deepStrictEqual(testData, mapSchema.parse(built))
result(true, 'Validated built data.')
})
w.add('Map protospec functionality', (result) => {
const mapSchema = protospec.importAll(`
def infoData
map info key=string;value=string
`).schemas.infoData
const testData = {
'info': new Map([
['name', 'Person A'],
['location', 'Earth'],
['status', 'online']
])
}
const built = mapSchema.build(testData)
assert.deepStrictEqual(testData, mapSchema.parse(built))
result(true, 'Validated built data. (Protospec success!)')
})
w.add('Detect missing elements', (result) => {
const testSchema = protospec.importAll(`
def ping
varint time
`).ping
const testData = {
}
try {
testSchema.build(testData)
}
catch (err) {
result(true, 'Error as expected.')
return
}
result(false, 'Expected error to be thrown.')
})
w.add('Request and response', async (result) => {
const testAbstractor = () => protospec.importAbstractor(`
def setName private
string name
def welcomeName private
string response
exchange hello
request setName
response welcomeName
def hello_unused
string greeting
`)
const a1 = testAbstractor()
const a2 = testAbstractor()
a1.bind(a2)
a1.on('hello', (data, res) => {
res({
'response': 'Hello, ' + data.name + '!'
})
})
const res1 = await a2.request('hello', {
'name': 'Ethan'
})
const res2 = await a2.request('hello', {
'name': 'Tester'
})
const res3 = await a2.request('hello', {
'name': 'Yolanda'
})
result(res1.response === 'Hello, Ethan!' && res2.response === 'Hello, Tester!' && res3.response === 'Hello, Yolanda!')
})
w.test()
process.stdin.on('data', () => {})