mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
* feat(context): add warehouse dialect dispatch * feat(context): read warehouse scan catalog * feat(context): add entity details verification tool * feat(context): add ingest SQL verification tool * feat(context): add raw warehouse discovery tool * feat(context): expose warehouse verification tools to ingest * docs(context): add ingest identifier verification protocol * test(context): guard ingest identifier verification prompts * chore(context): verify warehouse verification tools * docs: add warehouse verification tools plan and spec * fix(context): expose target warehouses to Notion ingest * fix(context): update ingest prompts for warehouse verification tools * fix(context): scope raw schema discovery to allowed connections * fix(context): verify warehouse column display targets * docs: add notion warehouse verification gap closure plan * fix(context): include raw discovery connection names * fix(context): expose warehouse targets for LookML and MetricFlow * fix(context): pass connection config to ingest query executors * fix(cli): enable read-only SQL probes for local ingest * docs: add warehouse verification final v1 closure plan * fix(context): align warehouse sql probe prompt shape * docs: add warehouse verification prompt shape closure plan * test(context): catch connectionless sql execution prompt examples * fix(context): include connection name in sl capture sql example * docs: add warehouse verification sql example closure plan * fix(context): report structured entity detail misses * docs: add warehouse verification structured target miss closure plan * fix: report untracked squash merge conflicts * feat: require ingest verification ledger * fix: stabilize ingest wiki references
86 lines
2.8 KiB
TypeScript
86 lines
2.8 KiB
TypeScript
import type { KtxLocalProject } from '@ktx/context/project';
|
|
import { createKtxConnectorCapabilities, type KtxScanConnector } from '@ktx/context/scan';
|
|
import { describe, expect, it, vi } from 'vitest';
|
|
import { createKtxCliIngestQueryExecutor } from './ingest-query-executor.js';
|
|
|
|
function project(): KtxLocalProject {
|
|
return {
|
|
projectDir: '/tmp/ktx-query-project',
|
|
config: {
|
|
project: 'warehouse',
|
|
connections: {
|
|
warehouse: { driver: 'postgres', url: 'postgresql://readonly@example.test/db' },
|
|
},
|
|
},
|
|
} as unknown as KtxLocalProject;
|
|
}
|
|
|
|
function connector(overrides: Partial<KtxScanConnector> = {}): KtxScanConnector {
|
|
return {
|
|
id: 'warehouse',
|
|
driver: 'postgres',
|
|
capabilities: createKtxConnectorCapabilities({ readOnlySql: true }),
|
|
async introspect() {
|
|
throw new Error('introspect is not used by this test');
|
|
},
|
|
executeReadOnly: vi.fn(async () => ({
|
|
headers: ['answer'],
|
|
rows: [[1]],
|
|
totalRows: 1,
|
|
rowCount: 1,
|
|
})),
|
|
cleanup: vi.fn(async () => {}),
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
describe('createKtxCliIngestQueryExecutor', () => {
|
|
it('executes read-only SQL through the scan connector and cleans it up', async () => {
|
|
const scanConnector = connector();
|
|
const createConnector = vi.fn(async () => scanConnector);
|
|
const executor = createKtxCliIngestQueryExecutor(project(), { createConnector });
|
|
|
|
await expect(
|
|
executor.execute({
|
|
connectionId: 'warehouse',
|
|
connection: { driver: 'postgres', url: 'postgresql://readonly@example.test/db' },
|
|
projectDir: '/tmp/ktx-query-project',
|
|
sql: 'select 1',
|
|
maxRows: 5,
|
|
}),
|
|
).resolves.toMatchObject({
|
|
headers: ['answer'],
|
|
rows: [[1]],
|
|
totalRows: 1,
|
|
command: 'SELECT',
|
|
rowCount: 1,
|
|
});
|
|
|
|
expect(createConnector).toHaveBeenCalledWith(project(), 'warehouse');
|
|
expect(scanConnector.executeReadOnly).toHaveBeenCalledWith(
|
|
{ connectionId: 'warehouse', sql: 'select 1', maxRows: 5 },
|
|
{ runId: 'ingest-sql-execution' },
|
|
);
|
|
expect(scanConnector.cleanup).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('rejects connectors without read-only SQL support', async () => {
|
|
const scanConnector = connector({
|
|
capabilities: createKtxConnectorCapabilities({ readOnlySql: false }),
|
|
executeReadOnly: undefined,
|
|
});
|
|
const executor = createKtxCliIngestQueryExecutor(project(), {
|
|
createConnector: vi.fn(async () => scanConnector),
|
|
});
|
|
|
|
await expect(
|
|
executor.execute({
|
|
connectionId: 'warehouse',
|
|
connection: { driver: 'postgres' },
|
|
projectDir: '/tmp/ktx-query-project',
|
|
sql: 'select 1',
|
|
}),
|
|
).rejects.toThrow('Connection "warehouse" driver "postgres" does not support read-only SQL execution.');
|
|
expect(scanConnector.cleanup).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|