smartclickhouse/test/test.nonci.ts

39 lines
936 B
TypeScript
Raw Normal View History

2022-03-07 14:49:47 +00:00
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
2022-03-14 13:29:23 +00:00
import * as smartclickhouse from '../ts/index.js';
2022-03-07 14:49:47 +00:00
let testClickhouseDb: smartclickhouse.SmartClickHouseDb;
tap.test('first test', async () => {
testClickhouseDb = new smartclickhouse.SmartClickHouseDb({
host: 'localhost',
database: 'test2',
2022-07-27 06:29:59 +00:00
port: 8123,
protocol: 'http',
2022-03-07 14:49:47 +00:00
});
});
tap.test('should start the clickhouse db', async () => {
await testClickhouseDb.start(true);
});
tap.test('should create a timedatatable', async () => {
const table = await testClickhouseDb.getTable('analytics');
let i = 0;
while(i < 10) {
await table.addData({
timestamp: Date.now(),
message: `hello this is a message ${i}`,
wow: 'hey',
deep: {
2022-03-08 14:12:51 +00:00
so: 'hello',
myArray: ['array1', 'array2']
2022-03-07 14:49:47 +00:00
}
});
i++;
}
});
tap.skip.test('should write something to the clickhouse db', async () => {});
tap.start();