-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.ts
600 lines (473 loc) · 17.6 KB
/
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
import { deepEqual, deepStrictEqual } from 'assert/strict'
import { assert, defer, fread, fwrite, inspect, MyProxy, ramdisk, set_inspect_options, WebSocketConnectionError } from 'xshell'
import { keywords } from './language.ts'
import {
DDB, DdbConnectionError, DdbDatabaseError, DdbForm, DdbInt, DdbLong, DdbObj, DdbType,
DdbVectorAny, DdbVectorDouble, DdbVectorSymbol, month2ms, DdbDurationUnit,
type DdbStringObj, type DdbVectorAnyObj, type DdbDurationVectorValue, type DdbVectorObj, type DdbTableObj, DdbTimeStamp, type DdbDictObj, type DdbTableData, type DdbOptions,
} from './index.ts'
set_inspect_options()
const fpd_root = import.meta.dirname.fpd
const url = 'ws://192.168.0.200:20023' as const
// const url = 'ws://192.168.0.69:8902' as const
// const url = 'ws://127.0.0.1:8848' as const
const ddb_options: DdbOptions = ramdisk ? { proxy: MyProxy.work } : { }
;(async function test () {
console.log('--- 测试开始 ---'.green)
let ddb = new DDB(url, ddb_options)
const tests = [
// test_repl,
// test_iot_vector,
test_keywords,
test_types,
test_reconnection,
test_connection_error,
test_print,
test_time,
test_streaming,
test_error,
test_invoke
]
for (const fn_test of tests)
await fn_test(ddb)
ddb.disconnect()
console.log('--- 测试通过 ---'.green)
})()
function test_keywords () {
assert(new Set(keywords).size === keywords.length, 'keywords 中不能有重复的项')
}
async function get_printed (ddb: DDB, code: string) {
return new Promise<string>(async (resolve, reject) => {
try {
let resolved = false
await ddb.eval(
`print(${code})`,
{
listener ({ type, data }) {
if (type === 'print' && !resolved) {
resolved = true
resolve(data)
}
}
}
)
if (!resolved)
reject(new Error('未输出 print 消息'))
} catch (error) {
reject(error)
}
})
}
async function test_repl (ddb: DDB) {
}
async function test_reconnection (ddb: DDB) {
let _ddb = new DDB(url, ddb_options)
await _ddb.connect()
_ddb.disconnect()
let error: DdbConnectionError
try {
await _ddb.connect()
} catch (_error) {
error = _error
}
assert(error && error instanceof DdbConnectionError)
}
async function test_connection_error (ddb: DDB) {
let _ddb = new DDB(url, ddb_options)
await _ddb.connect()
_ddb.disconnect()
let error: DdbConnectionError
try {
await _ddb.eval('1 + 1')
} catch (_error) {
error = _error
}
assert(error && error instanceof DdbConnectionError)
}
async function test_error (ddb: DDB) {
console.log('测试 DdbDatabaseError 和 DdbConnectionError')
const error_message = '错误消息'
const error_script = `throw ${error_message.quote()}`
let database_error: DdbDatabaseError
try {
await ddb.eval(error_script)
} catch (error) {
database_error = error
}
assert(database_error)
assert(database_error instanceof DdbDatabaseError)
assert(database_error.message === `throw ${error_message.quote('double')} => ${error_message}`)
assert(database_error.name === 'DdbDatabaseError')
assert(database_error.url === ddb.url)
assert(database_error.type === 'script')
assert(database_error.options.script === error_script)
assert(database_error.stack.includes('test_error'))
let ddbtest = new DDB(url, ddb_options)
let connection_error: DdbConnectionError
try {
await ddbtest.connect()
ddbtest.disconnect()
await ddbtest.eval('1')
} catch (error) {
connection_error = error
}
assert(connection_error)
assert(connection_error instanceof DdbConnectionError)
assert(connection_error.url === ddbtest.url)
// --- 首次连接失败也会抛出 DdbConnectionError
let ddbtest2 = new DDB('ws://dolphindb.com/')
let connection_error2: DdbConnectionError
try {
await ddbtest2.connect()
} catch (error) {
connection_error2 = error
}
assert(connection_error2)
assert(connection_error2 instanceof DdbConnectionError)
assert(connection_error2.cause && connection_error2.cause instanceof WebSocketConnectionError)
}
async function test_print (ddb: DDB) {
console.log('测试 print message')
const str = 'test print message\n中文'
assert(await get_printed(ddb, str.quote()) === str)
console.log('测试 verbose 输出')
let vddb = new DDB(url, { ...ddb_options, verbose: true })
await vddb.call('typestr', [
new DdbVectorAny([
new DdbVectorSymbol(['a', 'b', 'a', 'b', 'a', 'b']),
new DdbLong(3n)
])
])
vddb.disconnect()
}
async function test_streaming (ddb: DDB, ha?: boolean) {
console.log('测试流数据')
const n = 100
await ddb.eval(
ha ?
'try {\n' +
' try {\n' +
" dropStreamTable('prices')\n" +
' } catch (error) { }\n' +
' \n' +
" haStreamTable(11, table(10000:0, ['time', 'stock', 'price'], [TIMESTAMP, SYMBOL, DOUBLE]), 'prices', 100000)\n" +
" print('prices 流表创建成功')\n" +
'} catch (error) {\n' +
" print('prices 流表创建失败')\n" +
' print(error)\n' +
'}\n'
:
'try {\n' +
" if (!defined('prices', SHARED)) {\n" +
' share(\n' +
' streamTable(\n' +
' 10000:0,\n' +
" ['time', 'stock', 'price'],\n" +
' [TIMESTAMP, SYMBOL, DOUBLE]\n' +
' ),\n' +
" 'prices'\n" +
' )\n' +
" print('prices 流表创建成功')\n" +
' } else\n' +
" print('prices 流表已存在')\n" +
'} catch (error) {\n' +
" print('prices 流表创建失败')\n" +
' print(error)\n' +
'}\n'
)
let total_rows = 0
let first = true
let promise = defer<void>()
let sddb = new DDB(url, {
...ddb_options,
streaming: {
table: 'prices',
handler ({ error, data: _data, time, id, window }) {
if (error)
throw error
const { columns, data, name, types } = _data
assert(Array.isArray(data))
if (first) {
assert(data.length === 0, '流订阅应该返回 schema')
first = false
} else
assert(data.length > 0)
deepEqual(columns, ['time', 'stock', 'price'])
assert(name === 'prices')
assert(typeof id === 'bigint')
assert(time)
assert(types.length === 3)
total_rows += data.length
if (total_rows === n * 10)
promise.resolve()
},
}
})
await sddb.connect()
await ddb.eval(
`n = ${n}\n` +
'\n' +
'for (i in 0..9)\n' +
' append!(\n' +
' prices,\n' +
' table([\n' +
' (now() + 0..(n-1)) as time,\n' +
" take(['MSFT', 'FUTU'], n) as stock,\n" +
' (0..(n-1) \\ 10) as price\n' +
' ])\n' +
' )\n'
)
await promise
console.log('流数据已全部收齐')
sddb.disconnect()
}
async function test_time (ddb: DDB) {
console.log('测试时间显示')
await time2str_equal(ddb, '2022-09-01T14:30:01.095')
await time2str_equal(ddb, '2022-07-01T00:00:00.000')
await time2str_equal(ddb, '2022-07-02T00:00:00.000')
await time2str_equal(ddb, '2022-06-30T00:00:00.000')
await time2str_equal(ddb, '2022-12-22T16:57:30.248')
console.log('测试 month2ms')
assert(
month2ms(
(
await ddb.eval<DdbObj<number>>('2022.12M')
).value
) === new Date('2022.12.01').valueOf()
)
}
async function time2str_equal (ddb: DDB, timestr: string) {
const code = `temporalParse('${timestr}', 'yyyy-MM-ddTHH:mm:sss.SSS')`
assert(
inspect(
await ddb.eval(code),
{ colors: false }
).slice('timestamp('.length, -1) ===
(
await get_printed(ddb, code)
).replace('T', ' ')
)
}
async function test_types (ddb: DDB) {
console.log('测试通过 ddb.call 调用 getNodeAlias 函数')
console.log(await ddb.call('getNodeAlias'))
console.log('测试 ddb.call 上传不同类型的变量')
const result0 = await ddb.call('typestr', [new DdbInt(1)])
console.log(result0)
assert(result0.form === DdbForm.scalar)
assert(result0.type === DdbType.string)
assert(result0.value === 'INT')
console.log('测试 ddb.call 上传不同类型的变量')
const result1 = await ddb.call('typestr', [new DdbVectorDouble([0.1, 0.2, 0.3])])
console.log(result1)
assert(result1.form === DdbForm.scalar)
assert(result1.type === DdbType.string)
assert(result1.value === 'FAST DOUBLE VECTOR')
console.log('测试 array vector')
const av = await ddb.eval(
'av = array(INT[], 0, 3)\n' +
'append!(av, [1..4])\n' +
'append!(av, [1..70000])\n' +
'av\n'
)
console.log(av)
assert(av.form === DdbForm.vector)
assert(av.type === DdbType.int + 64) // array vector 的 type 比较特殊,需要偏移 64
assert(av.rows === 2)
// 测试 array vector 格式化
// console.log(
// await ddb.eval<DdbVectorObj>(
// 'av = array(DECIMAL128(2)[], 0, 1)\n' +
// 'append!(av, [[92233720368547758.11, NULL, 100000000000000, NULL, -92233720368547758, -100000000000000]])\n' +
// 'av\n'
// )
// )
// 测试 Invalid Date
await ddb.upload(['x'], [new DdbTimeStamp(10000000000000000n)])
assert(
inspect(
await ddb.eval('x'),
{ colors: false }
) === 'timestamp(Invalid Date)'
)
console.log('测试大数据')
let bigarr = new Float64Array(10)
bigarr.fill(0.5)
await ddb.call<DdbStringObj>('typestr', [
new DdbObj({
form: DdbForm.vector,
type: DdbType.double,
length: 0,
rows: bigarr.length,
cols: 1,
value: bigarr
})
])
await ddb.upload(['a'], [
new DdbObj({
form: DdbForm.vector,
type: DdbType.double,
length: 0,
rows: bigarr.length,
cols: 1,
value: bigarr
})
])
assert((
await ddb.eval<DdbVectorDouble>('a')
).rows === bigarr.length)
console.log('测试 datasource')
const ds = (await ddb.eval<DdbVectorAnyObj>(
'db_path = "dfs://test-datasource"\n' +
'tb_name = "db"\n' +
'if (!existsTable(db_path, tb_name))\n' +
' createTable(\n' +
' database(db_path, VALUE , [1]),\n' +
' table(1:0,`id`name, [INT, STRING]),\n' +
' tb_name\n' +
' ).append!(table(1 2 as id, `str1`str2 as name))\n' +
'\n' +
'tb = loadTable(db_path, tb_name)\n' +
'sqlDS(<select * from tb where id = 1>)\n'
)).value[0] as DdbStringObj
const { type, form, value } = ds
assert(type === DdbType.datasource && form === DdbForm.scalar, '返回的 DdbObj 具有正确的 type 和 form')
assert(value === 'DataSource< select [7] * from tb where id == 1 >')
// 如果直接构造 DdbObj Datasource,将其送入 ddb.call, ddb将仍然认为送入的是一个 STRING
assert(
(await ddb.call<DdbStringObj>('typestr', [ds])).value === 'STRING',
'从 js 构建的 Datasource DdbObj 会被识别为 STRING'
)
console.log('测试 pair<duration>')
const dp = await ddb.eval<DdbVectorObj<DdbDurationVectorValue>>(
'pair(duration("20d"), duration("2H"))'
)
console.log(dp)
assert(dp.type === DdbType.duration, 'dp 的返回值应该为 Duration')
assert(dp.value[0].data === 20 && dp.value[0].unit === DdbDurationUnit.d, 'pair<duration> 的 value 应该已解析')
console.log('测试 void vector')
const table = await ddb.eval<DdbTableObj>('select *, NULL as val from table(1..100 as id)')
const { value: [ints, voids] } = table
console.log(voids)
assert(voids.rows === ints.rows, 'void vector 应该具有正常的 vector length')
assert(voids.length === 10, 'void vector 应该具有正确的数据长度')
assert(voids.value === null, 'void vector 的值应该为 null')
await ddb.upload(['voidtable'], [table])
console.log('测试 compress 类型')
await ddb.upload(['c'], [
await ddb.eval<DdbDictObj>('dict(["a", "b", "c"], [compress([1, 2, 3]), 123, "bbb"])')
])
}
async function test_from_stdjson (ddb: DDB) {
console.log('测试 fromStdJson')
console.log(
await ddb.call('fromStdJson', [JSON.stringify({
a: 1234,
b: 'aaa',
c: {
e: 1234,
f: 4321
},
f: 'blabla\n中文\u4e2d\u6587'
})])
)
console.log(
await ddb.call('fromStdJson', [JSON.stringify(1234)])
)
console.log(
await ddb.call('fromStdJson', [
JSON.stringify({
data: {
code: 'select * from kline where secid == "230012"'
}
})
])
)
}
async function test_iot_vector (ddb: DDB) {
const obj = await ddb.eval(
'if(existsDatabase("dfs://testIOT")) dropDatabase("dfs://testIOT")\n' +
'create database "dfs://testIOT" partitioned by HASH([INT, 40]),RANGE(2020.01.01 2022.01.01 2025.01.01), engine=\'TSDB\'\n' +
'create table "dfs://testIOT"."pt"(\n' +
' deviceId INT,\n' +
' timestamp TIMESTAMP,\n' +
' location SYMBOL,\n' +
' value IOTANY,\n' +
')\n' +
'partitioned by deviceId, timestamp,\n' +
'sortColumns=[`deviceId, `location, `timestamp],\n' +
'latestKeyCache=true;\n' +
'pt = loadTable("dfs://testIOT","pt");\n' +
't=table(take(1..100000,100000) as deviceId, take(now()+(0..100), 100000) as timestamp, take("bb"+string(0..100), 100000) as location, take(int(1..100000),100000) as value)\n' +
'pt.append!(t)\n' +
'flushTSDBCache()\n' +
't=table(take(100001..200000,100000) as deviceId, take(now()+(0..100), 100000) as timestamp,take(lpad(string(1), 8, "0"), 100000) as location, rand(200.0, 100000) as value)\n' +
'pt.append!(t)\n' +
'flushTSDBCache()\n' +
'\n' +
'select * from loadTable("dfs://testIOT","pt")\n'
)
console.log('obj:', obj)
console.log('data:', obj.data())
await ddb.upload(['a'], [obj])
await ddb.execute('print(a)')
deepStrictEqual(
Object.assign(
await ddb.execute('a'),
{ name: 'pt' }
),
obj.data()
)
}
async function test_invoke (ddb: DDB) {
console.log('测试 invoke')
await ddb.eval(
'def echo (data) {\n' +
// ' print(data)\n' +
' return data\n' +
'}\n'
)
const str = 'blabla\n中文"\u4e2d\u6587"\\\"\"'
assert(
(await ddb.invoke('echo', [{
a: 1234,
b: 'aaa',
c: {
e: 1234,
f: 4321
},
f: str
}]))
.f === str
)
await ddb.execute(
'cbool = true false false;\n' +
"cchar = 'a' 'b' 'c';\n" +
'cshort = 122h 32h 45h;\n' +
'cint = 1 4 9;\n' +
'clong = 17l 39l 72l;\n' +
'cdate = 2013.06.13 2015.07.12 2019.08.15;\n' +
'cmonth = 2011.08M 2014.02M 2019.07M;\n' +
'ctime = 04:15:51.921 09:27:16.095 11:32:28.387;\n' +
'cminute = 03:25m 08:12m 10:15m;\n' +
'csecond = 01:15:20 04:26:45 09:22:59;\n' +
'cdatetime = 1976.09.10 02:31:42 1987.12.13 11:58:31 1999.12.10 20:49:23;\n' +
'ctimestamp = 1997.07.20 21:45:16.339 2002.11.26 12:40:31.783 2008.08.10 23:54:27.629;\n' +
'cnanotime = 01:25:33.365869429 03:47:25.364828475 08:16:22.748395721;\n' +
'cnanotimestamp = 2005.09.23 13:30:35.468385940 2007.12.11 14:54:38.949792731 2009.09.30 16:39:51.973463623;\n' +
'cfloat = 7.5f 0.79f 8.27f;\n' +
'cdouble = 5.7 7.2 3.9;\n' +
'cstring = "hello" "hi" "here";\n' +
'cdatehour = datehour(2012.06.15 15:32:10.158 2012.06.15 17:30:10.008 2014.09.29 23:55:42.693);\n' +
'cblob = blob("dolphindb" "gaussdb" "goldendb")\n' +
'cdecimal32 = decimal32(12 17 135.2,2)\n' +
'cdecimal64 = decimal64(18 24 33.878,4)\n' +
'cdecimal128 = decimal128(18 24 33.878,18)\n'
)
assert(
// await ddb.invoke<DdbTableData>('defs')
(await ddb.invoke<DdbTableData>('objs', [true]))
.columns.includes('shared')
)
}