mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
* feat(cli): define full warehouse dialect contract
* test(cli): keep dialect edge tests focused
* fix(cli): stabilize dialect contract foundation
* refactor(connectors): own read-only query preparation
* refactor(connectors): resolve dialects through registry
* refactor(connectors): keep concrete dialect classes internal
* chore(workspace): enforce dialect import boundary
* refactor(cli): resolve relationship dialect at scan boundary
* refactor(cli): use dialect display parsing for entity details
* refactor(cli): use dialect display parsing for warehouse catalog
* refactor(cli): use dialect SQL in relationship workflows
* test(cli): verify solid dialect scan workflow closure
* test: split cli tests from source tree
* refactor(cli): standardize BigQuery scope listing
* feat(sqlite): implement connector scope listing
* test(connectors): cover required table listing
* feat(cli): add warehouse driver registry
* refactor(setup): route scope discovery through driver registry
* refactor(cli): route local query execution through driver registry
* refactor(historic-sql): route dialect support through driver registry
* refactor(cli): test warehouse connections through driver registry
* fix(cli): close driver registry type export gaps
* Improve setup daemon diagnostics
* refactor(setup): centralize rail-prefixed diagnostics + query-history fallback
Extract errorMessage, writePrefixedLines, and flushPrefixedBufferedCommandOutput
into clack.ts so the setup wizard, managed daemons, and embedding/agent steps
share one rail-formatted writer. setup-databases.ts also adds a
"disable query history and retry" option when the schema-context build fails
and query history is the likely culprit, surfaced via a new
failed-query-history-unavailable status.
* fix(cli): carry catalog through the picker so BigQuery/Snowflake/SQL Server scope filters match
The setup picker's KtxTableListEntry was a 2-level { schema, name }, so
qualifiedTableId always wrote db.name into enabled_tables. When BigQuery,
Snowflake, or SQL Server later ran fast ingest, their introspect step filtered
the scope set with scopedTableNames(scope, { catalog: projectId|database, db })
— catalog was non-null on the introspect side but null in the scope refs, so
every entry was rejected, the live-database adapter staged zero table files,
and detect() failed with 'Adapter "live-database" did not recognize fetched
source output'.
Align the picker boundary with the canonical 3-level KtxTableRef:
- Add catalog: string | null to KtxTableListEntry.
- BigQuery/Snowflake/SQL Server listTables populate catalog from the
resolved projectId / database; Postgres/MySQL/ClickHouse/SQLite set null.
- qualifiedTableId emits catalog.schema.name when catalog is non-null
(resolveEnabledTables already accepts the 3-part shape) and
schemasFromEnabledTables now goes through parseDottedTableEntry so it
recovers the schema correctly from both 2-part and 3-part entries.
- Export parseDottedTableEntry from enabled-tables.ts (@internal) for picker
reuse.
Update listTables expectations in all seven connector tests and the setup /
picker test fixtures. Add a picker regression test that covers the
catalog-bearing round-trip (save + refine).
* fix(cli): allow debug telemetry under opt-out env
586 lines
21 KiB
TypeScript
586 lines
21 KiB
TypeScript
import { describe, expect, it, vi } from 'vitest';
|
|
import { createPostgresLiveDatabaseIntrospection } from '../../../src/connectors/postgres/live-database-introspection.js';
|
|
import { isKtxPostgresConnectionConfig, KtxPostgresScanConnector, postgresPoolConfigFromConfig, preparePostgresReadOnlyQuery, type KtxPostgresConnectionConfig, type KtxPostgresPoolFactory } from '../../../src/connectors/postgres/connector.js';
|
|
import { tableRefSet } from '../../../src/context/scan/table-ref.js';
|
|
|
|
interface FakeQueryResult {
|
|
rows: Record<string, unknown>[];
|
|
fields?: Array<{ name: string; dataTypeID: number }>;
|
|
}
|
|
|
|
type FakeQueryResponse = FakeQueryResult | Error;
|
|
|
|
function fakePoolFactory(results: Map<string, FakeQueryResponse>): KtxPostgresPoolFactory {
|
|
const query = vi.fn(async (sql: string, params?: unknown[]) => {
|
|
const normalized = sql.replace(/\s+/g, ' ').trim();
|
|
for (const [key, value] of results.entries()) {
|
|
if (normalized.includes(key)) {
|
|
if (value instanceof Error) {
|
|
throw value;
|
|
}
|
|
return value;
|
|
}
|
|
}
|
|
throw new Error(`Unexpected SQL: ${normalized} params=${JSON.stringify(params ?? [])}`);
|
|
});
|
|
return {
|
|
createPool() {
|
|
return {
|
|
async connect() {
|
|
return {
|
|
query,
|
|
release: vi.fn(),
|
|
};
|
|
},
|
|
end: vi.fn(async () => undefined),
|
|
};
|
|
},
|
|
};
|
|
}
|
|
|
|
function metadataResults(): Map<string, FakeQueryResponse> {
|
|
return new Map<string, FakeQueryResponse>([
|
|
[
|
|
'FROM pg_catalog.pg_class c JOIN pg_catalog.pg_namespace n',
|
|
{
|
|
rows: [
|
|
{ schema_name: 'public', table_name: 'customers', table_kind: 'r', row_count: '2', table_comment: 'Customers' },
|
|
{ schema_name: 'public', table_name: 'orders', table_kind: 'r', row_count: '3', table_comment: null },
|
|
{ schema_name: 'public', table_name: 'recent_orders', table_kind: 'v', row_count: '0', table_comment: 'Recent orders' },
|
|
],
|
|
},
|
|
],
|
|
[
|
|
'FROM pg_catalog.pg_attribute a JOIN pg_catalog.pg_class c',
|
|
{
|
|
rows: [
|
|
{ table_name: 'customers', column_name: 'id', data_type: 'integer', is_nullable: false, column_comment: null },
|
|
{ table_name: 'customers', column_name: 'name', data_type: 'text', is_nullable: false, column_comment: 'Name' },
|
|
{ table_name: 'orders', column_name: 'id', data_type: 'integer', is_nullable: false, column_comment: null },
|
|
{ table_name: 'orders', column_name: 'customer_id', data_type: 'integer', is_nullable: false, column_comment: null },
|
|
{ table_name: 'orders', column_name: 'status', data_type: 'text', is_nullable: true, column_comment: null },
|
|
{ table_name: 'recent_orders', column_name: 'id', data_type: 'integer', is_nullable: true, column_comment: null },
|
|
],
|
|
},
|
|
],
|
|
[
|
|
"tc.constraint_type = 'FOREIGN KEY'",
|
|
{
|
|
rows: [
|
|
{
|
|
table_name: 'orders',
|
|
column_name: 'customer_id',
|
|
foreign_table_schema: 'public',
|
|
foreign_table_name: 'customers',
|
|
foreign_column_name: 'id',
|
|
constraint_name: 'orders_customer_id_fkey',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
[
|
|
"tc.constraint_type = 'PRIMARY KEY'",
|
|
{
|
|
rows: [
|
|
{ table_name: 'customers', column_name: 'id' },
|
|
{ table_name: 'orders', column_name: 'id' },
|
|
],
|
|
},
|
|
],
|
|
['SELECT "id" FROM "public"."orders" LIMIT 1', { rows: [{ id: 10 }], fields: [{ name: 'id', dataTypeID: 23 }] }],
|
|
[
|
|
'SELECT "status" FROM "public"."orders" WHERE "status" IS NOT NULL',
|
|
{ rows: [{ status: 'paid' }, { status: 'open' }], fields: [{ name: 'status', dataTypeID: 25 }] },
|
|
],
|
|
['COUNT(DISTINCT val) AS cardinality', { rows: [{ cardinality: '2' }] }],
|
|
['SELECT DISTINCT "status"::text AS val', { rows: [{ val: 'open' }, { val: 'paid' }] }],
|
|
['SELECT COUNT(*) AS count FROM "public"."orders"', { rows: [{ count: '3' }] }],
|
|
['FROM pg_stats s', { rows: [{ column_name: 'status', estimated_cardinality: '2' }] }],
|
|
['SELECT 1', { rows: [{ '?column?': 1 }], fields: [{ name: '?column?', dataTypeID: 23 }] }],
|
|
['SELECT schema_name FROM information_schema.schemata', { rows: [{ schema_name: 'public' }] }],
|
|
]);
|
|
}
|
|
|
|
describe('KtxPostgresScanConnector', () => {
|
|
it('prepares read-only SQL parameters with PostgreSQL positional placeholders', () => {
|
|
expect(
|
|
preparePostgresReadOnlyQuery('select * from orders where id = :id and status = :status', {
|
|
id: 1,
|
|
status: 'paid',
|
|
}),
|
|
).toEqual({
|
|
sql: 'select * from orders where id = $1 and status = $2',
|
|
params: [1, 'paid'],
|
|
});
|
|
expect(
|
|
preparePostgresReadOnlyQuery('select :Client_Name_10, :Client_Name_1', {
|
|
Client_Name_1: 'short',
|
|
Client_Name_10: 'long',
|
|
}),
|
|
).toEqual({
|
|
sql: 'select $2, $1',
|
|
params: ['short', 'long'],
|
|
});
|
|
expect(preparePostgresReadOnlyQuery('select 1')).toEqual({ sql: 'select 1', params: undefined });
|
|
});
|
|
|
|
it('resolves configuration safely', () => {
|
|
expect(isKtxPostgresConnectionConfig({ driver: 'postgres', url: 'env:DATABASE_URL' })).toBe(true);
|
|
expect(isKtxPostgresConnectionConfig({ driver: 'postgresql', host: 'db', database: 'analytics' })).toBe(false);
|
|
expect(isKtxPostgresConnectionConfig({ driver: 'mysql', host: 'db' })).toBe(false);
|
|
expect(
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schemas: ['analytics', 'public'],
|
|
ssl: true,
|
|
rejectUnauthorized: false,
|
|
},
|
|
}),
|
|
).toMatchObject({
|
|
host: 'db.example.test',
|
|
port: 5432,
|
|
database: 'analytics',
|
|
user: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
options: '-c search_path=analytics,public',
|
|
ssl: { rejectUnauthorized: false },
|
|
});
|
|
const libpqPreferConfig = postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
url: 'env:DEMO_DATABASE_URL',
|
|
},
|
|
env: {
|
|
DEMO_DATABASE_URL: 'postgresql://reader@demo.example.test:5432/demo?sslmode=prefer',
|
|
},
|
|
});
|
|
expect(libpqPreferConfig).toMatchObject({
|
|
host: 'demo.example.test',
|
|
port: 5432,
|
|
database: 'demo',
|
|
user: 'reader',
|
|
});
|
|
expect(libpqPreferConfig).not.toHaveProperty('connectionString');
|
|
expect(libpqPreferConfig).not.toHaveProperty('ssl');
|
|
expect(
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: { driver: 'postgres', host: 'db.example.test', database: 'analytics', username: 'reader' },
|
|
}),
|
|
).toMatchObject({
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
user: 'reader',
|
|
});
|
|
});
|
|
|
|
it('defaults and validates Postgres maxConnections', () => {
|
|
const baseConnection: KtxPostgresConnectionConfig = {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
};
|
|
|
|
expect(
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: baseConnection,
|
|
}),
|
|
).toMatchObject({ max: 10 });
|
|
|
|
expect(
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: { ...baseConnection, maxConnections: 50 },
|
|
}),
|
|
).toMatchObject({ max: 50 });
|
|
|
|
expect(
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: { ...baseConnection, maxConnections: '12' as never },
|
|
}),
|
|
).toMatchObject({ max: 12 });
|
|
|
|
for (const maxConnections of [0, -1, 1.5, Number.NaN, 'abc' as never]) {
|
|
expect(() =>
|
|
postgresPoolConfigFromConfig({
|
|
connectionId: 'warehouse',
|
|
connection: { ...baseConnection, maxConnections },
|
|
}),
|
|
).toThrow('connections.warehouse.maxConnections must be a positive integer');
|
|
}
|
|
});
|
|
|
|
it('introspects schemas, tables, views, primary keys, comments, row counts, and foreign keys', async () => {
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
poolFactory: fakePoolFactory(metadataResults()),
|
|
now: () => new Date('2026-04-29T10:00:00.000Z'),
|
|
});
|
|
|
|
const snapshot = await connector.introspect(
|
|
{ connectionId: 'warehouse', driver: 'postgres' },
|
|
{ runId: 'scan-run-1' },
|
|
);
|
|
|
|
expect(snapshot).toMatchObject({
|
|
connectionId: 'warehouse',
|
|
driver: 'postgres',
|
|
extractedAt: '2026-04-29T10:00:00.000Z',
|
|
scope: { schemas: ['public'] },
|
|
metadata: {
|
|
database: 'analytics',
|
|
schemas: ['public'],
|
|
host: 'db.example.test',
|
|
table_count: 3,
|
|
total_columns: 6,
|
|
},
|
|
});
|
|
expect(snapshot.tables.map((table) => [table.db, table.name, table.kind, table.estimatedRows])).toEqual([
|
|
['public', 'customers', 'table', 2],
|
|
['public', 'orders', 'table', 3],
|
|
['public', 'recent_orders', 'view', null],
|
|
]);
|
|
expect(snapshot.tables.find((table) => table.name === 'customers')?.columns[0]).toMatchObject({
|
|
name: 'id',
|
|
nativeType: 'integer',
|
|
normalizedType: 'integer',
|
|
dimensionType: 'number',
|
|
nullable: false,
|
|
primaryKey: true,
|
|
});
|
|
expect(snapshot.tables.find((table) => table.name === 'orders')?.foreignKeys).toEqual([
|
|
{
|
|
fromColumn: 'customer_id',
|
|
toCatalog: null,
|
|
toDb: 'public',
|
|
toTable: 'customers',
|
|
toColumn: 'id',
|
|
constraintName: 'orders_customer_id_fkey',
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('soft-fails denied Postgres constraint discovery with scan warnings', async () => {
|
|
const results = metadataResults();
|
|
results.set(
|
|
"tc.constraint_type = 'PRIMARY KEY'",
|
|
Object.assign(new Error('permission denied for information_schema'), { code: '42501' }),
|
|
);
|
|
results.set(
|
|
"tc.constraint_type = 'FOREIGN KEY'",
|
|
Object.assign(new Error('relation information_schema.key_column_usage does not exist'), { code: '42P01' }),
|
|
);
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
poolFactory: fakePoolFactory(results),
|
|
now: () => new Date('2026-04-29T10:00:00.000Z'),
|
|
});
|
|
|
|
const snapshot = await connector.introspect(
|
|
{ connectionId: 'warehouse', driver: 'postgres' },
|
|
{ runId: 'scan-run-denied-constraints' },
|
|
);
|
|
|
|
expect(snapshot.warnings).toEqual([
|
|
{
|
|
code: 'constraint_discovery_unauthorized',
|
|
message: 'Skipped primary-key discovery in public (insufficient grants on system catalogs)',
|
|
recoverable: true,
|
|
metadata: { schema: 'public', kind: 'primary_key' },
|
|
},
|
|
{
|
|
code: 'constraint_discovery_unauthorized',
|
|
message: 'Skipped foreign-key discovery in public (insufficient grants on system catalogs)',
|
|
recoverable: true,
|
|
metadata: { schema: 'public', kind: 'foreign_key' },
|
|
},
|
|
]);
|
|
expect(snapshot.tables.every((table) => table.columns.every((column) => column.primaryKey === false))).toBe(true);
|
|
expect(snapshot.tables.every((table) => table.foreignKeys.length === 0)).toBe(true);
|
|
});
|
|
|
|
it('propagates non-denial Postgres constraint discovery errors', async () => {
|
|
const results = metadataResults();
|
|
const resetError = Object.assign(new Error('connection reset'), { code: 'ECONNRESET' });
|
|
results.set("tc.constraint_type = 'PRIMARY KEY'", resetError);
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
poolFactory: fakePoolFactory(results),
|
|
});
|
|
|
|
await expect(
|
|
connector.introspect({ connectionId: 'warehouse', driver: 'postgres' }, { runId: 'scan-run-network-error' }),
|
|
).rejects.toBe(resetError);
|
|
});
|
|
|
|
it('runs samples, distinct values, statistics, read-only SQL, and schema listing', async () => {
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
poolFactory: fakePoolFactory(metadataResults()),
|
|
});
|
|
|
|
await expect(
|
|
connector.sampleTable(
|
|
{ connectionId: 'warehouse', table: { catalog: null, db: 'public', name: 'orders' }, columns: ['id'], limit: 1 },
|
|
{ runId: 'scan-run-1' },
|
|
),
|
|
).resolves.toEqual({ headers: ['id'], headerTypes: ['integer'], rows: [[10]], totalRows: 1 });
|
|
|
|
await expect(
|
|
connector.sampleColumn(
|
|
{ connectionId: 'warehouse', table: { catalog: null, db: 'public', name: 'orders' }, column: 'status', limit: 5 },
|
|
{ runId: 'scan-run-1' },
|
|
),
|
|
).resolves.toMatchObject({ values: ['paid', 'open'], nullCount: null, distinctCount: null });
|
|
|
|
await expect(
|
|
connector.getColumnDistinctValues(
|
|
{ catalog: null, db: 'public', name: 'orders' },
|
|
'status',
|
|
{ maxCardinality: 5, limit: 10, sampleSize: 100 },
|
|
),
|
|
).resolves.toEqual({ values: ['open', 'paid'], cardinality: 2 });
|
|
|
|
await expect(connector.getColumnStatistics({ catalog: null, db: 'public', name: 'orders' })).resolves.toEqual({
|
|
cardinalityByColumn: new Map([['status', 2]]),
|
|
});
|
|
await expect(connector.getTableRowCount({ db: 'public', name: 'orders' })).resolves.toBe(3);
|
|
await expect(connector.listSchemas()).resolves.toEqual(['public']);
|
|
await expect(connector.listTables(['public'])).resolves.toEqual([
|
|
{ catalog: null, schema: 'public', name: 'customers', kind: 'table' },
|
|
{ catalog: null, schema: 'public', name: 'orders', kind: 'table' },
|
|
{ catalog: null, schema: 'public', name: 'recent_orders', kind: 'view' },
|
|
]);
|
|
await expect(connector.testConnection()).resolves.toEqual({ success: true });
|
|
|
|
await expect(
|
|
connector.executeReadOnly({ connectionId: 'warehouse', sql: 'delete from orders' }, { runId: 'scan-run-1' }),
|
|
).rejects.toThrow('Only read-only SELECT/WITH queries can be executed locally');
|
|
});
|
|
|
|
it('limits introspection to tables in tableScope', async () => {
|
|
const queries: Array<{ sql: string; params?: unknown[] }> = [];
|
|
const poolFactory: KtxPostgresPoolFactory = {
|
|
createPool() {
|
|
return {
|
|
async connect() {
|
|
return {
|
|
query: vi.fn(async (sql: string, params?: unknown[]) => {
|
|
queries.push({ sql, params });
|
|
if (sql.includes('FROM pg_catalog.pg_class c')) {
|
|
return { rows: [{ table_name: 'orders', table_kind: 'r', row_count: '3', table_comment: null }] };
|
|
}
|
|
if (sql.includes('FROM pg_catalog.pg_attribute a')) {
|
|
return {
|
|
rows: [
|
|
{
|
|
table_name: 'orders',
|
|
column_name: 'id',
|
|
data_type: 'integer',
|
|
is_nullable: false,
|
|
column_comment: null,
|
|
},
|
|
],
|
|
};
|
|
}
|
|
return { rows: [] };
|
|
}),
|
|
release: vi.fn(),
|
|
};
|
|
},
|
|
end: vi.fn(async () => undefined),
|
|
};
|
|
},
|
|
};
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
poolFactory,
|
|
});
|
|
const scope = tableRefSet([{ catalog: null, db: 'public', name: 'orders' }]);
|
|
const snapshot = await connector.introspect(
|
|
{ connectionId: 'warehouse', driver: 'postgres', tableScope: scope },
|
|
{ runId: 'scope-test' },
|
|
);
|
|
expect(snapshot.tables.map((table) => table.name)).toEqual(['orders']);
|
|
const tablesQuery = queries.find((query) => query.sql.includes('FROM pg_catalog.pg_class c'));
|
|
expect(tablesQuery?.sql).toMatch(/c\.relname = ANY\(\$2\)/);
|
|
expect(tablesQuery?.params).toEqual(['public', ['orders']]);
|
|
});
|
|
|
|
it('adapts native PostgreSQL snapshots to live-database introspection for local ingest', async () => {
|
|
const introspection = createPostgresLiveDatabaseIntrospection({
|
|
connections: {
|
|
warehouse: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
},
|
|
poolFactory: fakePoolFactory(metadataResults()),
|
|
now: () => new Date('2026-04-29T10:00:00.000Z'),
|
|
});
|
|
|
|
const snapshot = await introspection.extractSchema('warehouse');
|
|
|
|
expect(snapshot).toMatchObject({
|
|
connectionId: 'warehouse',
|
|
extractedAt: '2026-04-29T10:00:00.000Z',
|
|
});
|
|
expect(snapshot.tables.find((table) => table.name === 'customers')).toMatchObject({
|
|
name: 'customers',
|
|
catalog: null,
|
|
db: 'public',
|
|
columns: [
|
|
{
|
|
name: 'id',
|
|
nativeType: 'integer',
|
|
normalizedType: 'integer',
|
|
dimensionType: 'number',
|
|
nullable: false,
|
|
primaryKey: true,
|
|
comment: null,
|
|
},
|
|
{
|
|
name: 'name',
|
|
nativeType: 'text',
|
|
normalizedType: 'text',
|
|
dimensionType: 'string',
|
|
nullable: false,
|
|
primaryKey: false,
|
|
comment: 'Name',
|
|
},
|
|
],
|
|
foreignKeys: [],
|
|
});
|
|
});
|
|
|
|
it('does not end the pool before introspection completes', async () => {
|
|
let endCalled = false;
|
|
const endAwarePoolFactory: KtxPostgresPoolFactory = {
|
|
createPool() {
|
|
const inner = fakePoolFactory(metadataResults()).createPool({
|
|
max: 1,
|
|
idleTimeoutMillis: 1,
|
|
connectionTimeoutMillis: 1,
|
|
});
|
|
return {
|
|
async connect() {
|
|
if (endCalled) {
|
|
throw new Error('Cannot use a pool after calling end on the pool');
|
|
}
|
|
return inner.connect();
|
|
},
|
|
async end() {
|
|
endCalled = true;
|
|
return inner.end();
|
|
},
|
|
};
|
|
},
|
|
};
|
|
const introspection = createPostgresLiveDatabaseIntrospection({
|
|
connections: {
|
|
warehouse: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
schema: 'public',
|
|
},
|
|
},
|
|
poolFactory: endAwarePoolFactory,
|
|
now: () => new Date('2026-04-29T10:00:00.000Z'),
|
|
});
|
|
|
|
const snapshot = await introspection.extractSchema('warehouse');
|
|
expect(snapshot.tables.length).toBeGreaterThan(0);
|
|
expect(endCalled).toBe(true);
|
|
});
|
|
|
|
it('attaches an error listener to the pg pool', async () => {
|
|
const on = vi.fn();
|
|
const poolFactory: KtxPostgresPoolFactory = {
|
|
createPool() {
|
|
return {
|
|
on,
|
|
async connect() {
|
|
return {
|
|
query: vi.fn(async () => ({ rows: [{ '?column?': 1 }], fields: [{ name: '?column?', dataTypeID: 23 }] })),
|
|
release: vi.fn(),
|
|
};
|
|
},
|
|
end: vi.fn(async () => undefined),
|
|
};
|
|
},
|
|
};
|
|
const connector = new KtxPostgresScanConnector({
|
|
connectionId: 'warehouse',
|
|
connection: {
|
|
driver: 'postgres',
|
|
host: 'db.example.test',
|
|
database: 'analytics',
|
|
username: 'reader',
|
|
password: 'test-password', // pragma: allowlist secret
|
|
},
|
|
poolFactory,
|
|
});
|
|
|
|
await expect(connector.testConnection()).resolves.toEqual({ success: true });
|
|
|
|
expect(on).toHaveBeenCalledWith('error', expect.any(Function));
|
|
});
|
|
});
|