generated from napi-rs/package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquery.sp_ec.ts
50 lines (42 loc) · 1.62 KB
/
query.sp_ec.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
import { tableFromIPC } from 'apache-arrow';
import anyTest, { TestFn } from 'ava';
import { ClientOptions, createFlightSqlClient, FlightSqlClient } from '../index';
const test = anyTest as TestFn<{ options: ClientOptions; client: FlightSqlClient }>;
test.beforeEach(async (t) => {
const options: ClientOptions = {
username: 'flight_username',
password: 'testing123',
tls: false,
host: '127.0.0.1',
port: 50051,
headers: [],
};
const client = await createFlightSqlClient(options);
t.context = { options, client };
});
test('simple query returns data', async (t) => {
const buffer = await t.context.client.query('SELECT * FROM delta.test.simple_table');
const table = tableFromIPC(buffer);
t.truthy(table.toString());
});
test('get catalogs returns data', async (t) => {
const buffer = await t.context.client.getCatalogs();
const table = tableFromIPC(buffer);
t.truthy(table.toString().includes('catalog_name'));
});
test('get schemas returns data', async (t) => {
const buffer = await t.context.client.getDbSchemas({});
const table = tableFromIPC(buffer);
t.truthy(table.toString().includes('db_schema_name'));
});
test('get tables returns data', async (t) => {
const buffer = await t.context.client.getTables({});
const table = tableFromIPC(buffer);
t.assert(table.toString().includes('table_name'));
t.assert(!table.toString().includes('table_schema'));
});
test('get tables with schema returns data', async (t) => {
const buffer = await t.context.client.getTables({ includeSchema: true });
const table = tableFromIPC(buffer);
t.assert(table.toString().includes('table_schema'));
});