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
533 lines
20 KiB
TypeScript
533 lines
20 KiB
TypeScript
import { mkdtemp, readFile, rm, writeFile } from 'node:fs/promises';
|
|
import { tmpdir } from 'node:os';
|
|
import { join } from 'node:path';
|
|
import type { LookerClient } from '../src/context/ingest/adapters/looker/client.js';
|
|
import type { MetabaseRuntimeClient } from '../src/context/ingest/adapters/metabase/client-port.js';
|
|
import type { NotionClient } from '../src/context/ingest/adapters/notion/notion-client.js';
|
|
import { initKtxProject } from '../src/context/project/project.js';
|
|
import { parseKtxProjectConfig, serializeKtxProjectConfig } from '../src/context/project/config.js';
|
|
import type { KtxConnectionDriver, KtxScanConnector } from '../src/context/scan/types.js';
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { runKtxConnection } from '../src/connection.js';
|
|
|
|
function stripAnsi(s: string): string {
|
|
return s.replace(/\[[0-9;]*m/g, '');
|
|
}
|
|
|
|
function makeIo() {
|
|
let stdout = '';
|
|
let stderr = '';
|
|
return {
|
|
io: {
|
|
stdout: {
|
|
isTTY: true,
|
|
write: (chunk: string) => {
|
|
stdout += chunk;
|
|
},
|
|
},
|
|
stderr: {
|
|
write: (chunk: string) => {
|
|
stderr += chunk;
|
|
},
|
|
},
|
|
},
|
|
stdout: () => stdout,
|
|
stderr: () => stderr,
|
|
};
|
|
}
|
|
|
|
function nativeConnector(
|
|
driver: KtxConnectionDriver,
|
|
testResult: { success: true } | { success: false; error: string } = { success: true },
|
|
) {
|
|
const testConnection = vi.fn(async () => testResult);
|
|
const cleanup = vi.fn(async () => undefined);
|
|
const connector: KtxScanConnector = {
|
|
id: `${driver}:warehouse`,
|
|
driver,
|
|
capabilities: {
|
|
structuralIntrospection: true,
|
|
tableSampling: false,
|
|
columnSampling: false,
|
|
columnStats: false,
|
|
readOnlySql: false,
|
|
nestedAnalysis: false,
|
|
eventStreamDiscovery: false,
|
|
formalForeignKeys: false,
|
|
estimatedRowCounts: false,
|
|
},
|
|
introspect: vi.fn(async () => {
|
|
throw new Error('introspect should not be called from connection test');
|
|
}),
|
|
listSchemas: vi.fn(async () => []),
|
|
listTables: vi.fn(async () => []),
|
|
testConnection,
|
|
cleanup,
|
|
};
|
|
return { connector, testConnection, cleanup };
|
|
}
|
|
|
|
describe('runKtxConnection', () => {
|
|
let tempDir: string;
|
|
|
|
beforeEach(async () => {
|
|
tempDir = await mkdtemp(join(tmpdir(), 'ktx-cli-connection-'));
|
|
});
|
|
|
|
afterEach(async () => {
|
|
vi.unstubAllEnvs();
|
|
await rm(tempDir, { recursive: true, force: true });
|
|
});
|
|
|
|
async function writeConnections(
|
|
projectDir: string,
|
|
connections: ReturnType<typeof parseKtxProjectConfig>['connections'],
|
|
): Promise<void> {
|
|
const config = parseKtxProjectConfig(await readFile(join(projectDir, 'ktx.yaml'), 'utf-8'));
|
|
await writeFile(join(projectDir, 'ktx.yaml'), serializeKtxProjectConfig({ ...config, connections }), 'utf-8');
|
|
}
|
|
|
|
it('lists configured connections without resolving secrets', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'postgres', url: 'env:DATABASE_URL' },
|
|
docs: { driver: 'notion', auth_token_ref: 'env:NOTION_TOKEN', crawl_mode: 'all_accessible' },
|
|
});
|
|
const io = makeIo();
|
|
|
|
await expect(runKtxConnection({ command: 'list', projectDir }, io.io)).resolves.toBe(0);
|
|
|
|
expect(io.stdout()).toContain('warehouse');
|
|
expect(io.stdout()).toContain('postgres');
|
|
expect(io.stdout()).toContain('docs');
|
|
expect(io.stdout()).toContain('notion');
|
|
expect(io.stderr()).toBe('');
|
|
});
|
|
|
|
it('prints an empty-state message that points at setup instead of removed connection add', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
const io = makeIo();
|
|
|
|
await expect(runKtxConnection({ command: 'list', projectDir }, io.io)).resolves.toBe(0);
|
|
|
|
expect(io.stdout()).toContain('No connections configured. Run `ktx setup` to add one.');
|
|
expect(io.stdout()).not.toContain('ktx connection add');
|
|
});
|
|
|
|
it('tests a native connection by calling connector.testConnection (not introspect)', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'sqlite' },
|
|
});
|
|
const { connector, testConnection, cleanup } = nativeConnector('sqlite');
|
|
const createScanConnector = vi.fn(async () => connector);
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'warehouse' }, io.io, {
|
|
createScanConnector,
|
|
}),
|
|
).resolves.toBe(0);
|
|
|
|
expect(createScanConnector).toHaveBeenCalledWith(expect.objectContaining({ projectDir }), 'warehouse');
|
|
expect(testConnection).toHaveBeenCalledTimes(1);
|
|
expect(connector.introspect).not.toHaveBeenCalled();
|
|
expect(cleanup).toHaveBeenCalledTimes(1);
|
|
expect(io.stdout()).toContain('Connection test passed: warehouse');
|
|
expect(io.stdout()).toContain('Driver: sqlite');
|
|
expect(io.stdout()).toContain('Status: ok');
|
|
});
|
|
|
|
it('emits debug telemetry for connection tests without project paths', async () => {
|
|
vi.stubEnv('KTX_TELEMETRY_DEBUG', '1');
|
|
vi.stubEnv('CI', '');
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'postgres', url: 'env:DATABASE_URL' },
|
|
});
|
|
const { connector } = nativeConnector('postgres');
|
|
const io = makeIo();
|
|
|
|
const code = await runKtxConnection({ command: 'test', projectDir, connectionId: 'warehouse' }, io.io, {
|
|
createScanConnector: vi.fn(async () => connector),
|
|
});
|
|
|
|
expect(code).toBe(0);
|
|
expect(io.stderr()).toContain('"event":"connection_test"');
|
|
expect(io.stderr()).toContain('"driver":"postgres"');
|
|
expect(io.stderr()).not.toContain(projectDir);
|
|
});
|
|
|
|
it('reports the connector error and still cleans up when native testConnection fails', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'sqlite' },
|
|
});
|
|
const { connector, cleanup } = nativeConnector('sqlite', { success: false, error: 'database file is unreadable' });
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'warehouse' }, io.io, {
|
|
createScanConnector: vi.fn(async () => connector),
|
|
}),
|
|
).resolves.toBe(1);
|
|
|
|
expect(cleanup).toHaveBeenCalledTimes(1);
|
|
expect(io.stderr()).toContain('database file is unreadable');
|
|
});
|
|
|
|
it('tests a configured Metabase connection through the Metabase runtime client', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
prod_metabase: {
|
|
driver: 'metabase',
|
|
api_url: 'http://metabase.example.test',
|
|
api_key: 'mb_test', // pragma: allowlist secret
|
|
},
|
|
});
|
|
const testConnection = vi.fn(async () => ({ success: true as const }));
|
|
const getDatabases = vi.fn(async () => [
|
|
{ id: 1, name: 'Analytics', engine: 'postgres', details: {}, is_sample: false },
|
|
{ id: 2, name: 'Sample Database', engine: 'h2', details: {}, is_sample: true },
|
|
]);
|
|
const cleanup = vi.fn(async () => undefined);
|
|
const createMetabaseClient = vi.fn(
|
|
async (): Promise<Pick<MetabaseRuntimeClient, 'testConnection' | 'getDatabases' | 'cleanup'>> => ({
|
|
testConnection,
|
|
getDatabases,
|
|
cleanup,
|
|
}),
|
|
);
|
|
const createScanConnector = vi.fn(async () => {
|
|
throw new Error('native scanner should not be used for Metabase');
|
|
});
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'prod_metabase' }, io.io, {
|
|
createScanConnector,
|
|
createMetabaseClient,
|
|
}),
|
|
).resolves.toBe(0);
|
|
|
|
expect(createScanConnector).not.toHaveBeenCalled();
|
|
expect(createMetabaseClient).toHaveBeenCalledWith(expect.objectContaining({ projectDir }), 'prod_metabase');
|
|
expect(testConnection).toHaveBeenCalledTimes(1);
|
|
expect(getDatabases).toHaveBeenCalledTimes(1);
|
|
expect(cleanup).toHaveBeenCalledTimes(1);
|
|
expect(io.stdout()).toContain('Connection test passed: prod_metabase');
|
|
expect(io.stdout()).toContain('Driver: metabase');
|
|
expect(io.stdout()).toContain('Databases: 1');
|
|
expect(io.stderr()).toBe('');
|
|
});
|
|
|
|
it('tests a Looker connection through the Looker client', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
bi_looker: {
|
|
driver: 'looker',
|
|
base_url: 'https://looker.example.test',
|
|
client_id: 'cid',
|
|
client_secret: 'csecret', // pragma: allowlist secret
|
|
},
|
|
});
|
|
const testConnection = vi.fn(async () => ({
|
|
success: true as const,
|
|
metadata: { displayName: 'Alice Analyst', userId: '42' },
|
|
}));
|
|
const createLookerClient = vi.fn(async (): Promise<Pick<LookerClient, 'testConnection'>> => ({ testConnection }));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'bi_looker' }, io.io, { createLookerClient }),
|
|
).resolves.toBe(0);
|
|
|
|
expect(createLookerClient).toHaveBeenCalledWith(expect.objectContaining({ projectDir }), 'bi_looker');
|
|
expect(testConnection).toHaveBeenCalledTimes(1);
|
|
expect(io.stdout()).toContain('Connection test passed: bi_looker');
|
|
expect(io.stdout()).toContain('Driver: looker');
|
|
expect(io.stdout()).toContain('User: Alice Analyst');
|
|
});
|
|
|
|
it('falls back to userId when Looker metadata has no display name', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
bi_looker: {
|
|
driver: 'looker',
|
|
base_url: 'https://looker.example.test',
|
|
client_id: 'cid',
|
|
client_secret: 'csecret', // pragma: allowlist secret
|
|
},
|
|
});
|
|
const createLookerClient = vi.fn(async (): Promise<Pick<LookerClient, 'testConnection'>> => ({
|
|
testConnection: vi.fn(async () => ({
|
|
success: true as const,
|
|
metadata: { displayName: null, userId: '42' },
|
|
})),
|
|
}));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'bi_looker' }, io.io, { createLookerClient }),
|
|
).resolves.toBe(0);
|
|
expect(io.stdout()).toContain('User: 42');
|
|
});
|
|
|
|
it('reports the Looker error when testConnection fails', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
bi_looker: {
|
|
driver: 'looker',
|
|
base_url: 'https://looker.example.test',
|
|
client_id: 'cid',
|
|
client_secret: 'csecret', // pragma: allowlist secret
|
|
},
|
|
});
|
|
const createLookerClient = vi.fn(async (): Promise<Pick<LookerClient, 'testConnection'>> => ({
|
|
testConnection: vi.fn(async () => ({ success: false as const, error: 'invalid client_id' })),
|
|
}));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'bi_looker' }, io.io, { createLookerClient }),
|
|
).resolves.toBe(1);
|
|
expect(io.stderr()).toContain('Looker connection test failed: invalid client_id');
|
|
});
|
|
|
|
it('tests a Notion connection by retrieving the bot user', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
docs: {
|
|
driver: 'notion',
|
|
auth_token: 'secret_token', // pragma: allowlist secret
|
|
crawl_mode: 'all_accessible',
|
|
},
|
|
});
|
|
const retrieveBotUser = vi.fn(async () => ({ id: 'bot-1', name: 'Analytics Bot' }));
|
|
const createNotionClient = vi.fn(async (): Promise<Pick<NotionClient, 'retrieveBotUser'>> => ({ retrieveBotUser }));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'docs' }, io.io, { createNotionClient }),
|
|
).resolves.toBe(0);
|
|
|
|
expect(createNotionClient).toHaveBeenCalledWith(expect.objectContaining({ projectDir }), 'docs');
|
|
expect(retrieveBotUser).toHaveBeenCalledTimes(1);
|
|
expect(io.stdout()).toContain('Connection test passed: docs');
|
|
expect(io.stdout()).toContain('Driver: notion');
|
|
expect(io.stdout()).toContain('Bot: Analytics Bot');
|
|
});
|
|
|
|
it('falls back to bot id when Notion bot has no name', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
docs: {
|
|
driver: 'notion',
|
|
auth_token: 'secret_token', // pragma: allowlist secret
|
|
crawl_mode: 'all_accessible',
|
|
},
|
|
});
|
|
const createNotionClient = vi.fn(async (): Promise<Pick<NotionClient, 'retrieveBotUser'>> => ({
|
|
retrieveBotUser: vi.fn(async () => ({ id: 'bot-1', name: null })),
|
|
}));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'docs' }, io.io, { createNotionClient }),
|
|
).resolves.toBe(0);
|
|
expect(io.stdout()).toContain('Bot: bot-1');
|
|
});
|
|
|
|
it('tests a dbt connection via testRepoConnection (success)', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
process.env.DBT_TOKEN = 'gh_token_abc'; // pragma: allowlist secret
|
|
await writeConnections(projectDir, {
|
|
'dbt-main': {
|
|
driver: 'dbt',
|
|
repo_url: 'https://github.com/example/dbt-project',
|
|
auth_token_ref: 'env:DBT_TOKEN',
|
|
},
|
|
});
|
|
const testRepoConnection = vi.fn(async () => ({ ok: true as const }));
|
|
const io = makeIo();
|
|
|
|
try {
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'dbt-main' }, io.io, { testRepoConnection }),
|
|
).resolves.toBe(0);
|
|
|
|
expect(testRepoConnection).toHaveBeenCalledWith({
|
|
repoUrl: 'https://github.com/example/dbt-project',
|
|
authToken: 'gh_token_abc',
|
|
});
|
|
expect(io.stdout()).toContain('Connection test passed: dbt-main');
|
|
expect(io.stdout()).toContain('Driver: dbt');
|
|
expect(io.stdout()).toContain('Repo: https://github.com/example/dbt-project');
|
|
} finally {
|
|
delete process.env.DBT_TOKEN;
|
|
}
|
|
});
|
|
|
|
it('reports the git error when testRepoConnection fails for dbt', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
'dbt-main': {
|
|
driver: 'dbt',
|
|
repo_url: 'https://github.com/example/dbt-project',
|
|
},
|
|
});
|
|
const testRepoConnection = vi.fn(async () => ({ ok: false as const, error: 'fatal: auth failed' }));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'dbt-main' }, io.io, { testRepoConnection }),
|
|
).resolves.toBe(1);
|
|
|
|
expect(testRepoConnection).toHaveBeenCalledWith({
|
|
repoUrl: 'https://github.com/example/dbt-project',
|
|
authToken: null,
|
|
});
|
|
expect(io.stderr()).toContain('dbt repository check failed: fatal: auth failed');
|
|
});
|
|
|
|
it('tests a LookML connection via testRepoConnection with camelCase repoUrl', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
lookml_main: {
|
|
driver: 'lookml',
|
|
repoUrl: 'https://github.com/example/lookml',
|
|
},
|
|
});
|
|
const testRepoConnection = vi.fn(async () => ({ ok: true as const }));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'lookml_main' }, io.io, { testRepoConnection }),
|
|
).resolves.toBe(0);
|
|
expect(testRepoConnection).toHaveBeenCalledWith({
|
|
repoUrl: 'https://github.com/example/lookml',
|
|
authToken: null,
|
|
});
|
|
expect(io.stdout()).toContain('Driver: lookml');
|
|
expect(io.stdout()).toContain('Repo: https://github.com/example/lookml');
|
|
});
|
|
|
|
it('tests a MetricFlow connection via the nested metricflow block', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
mf_main: {
|
|
driver: 'metricflow',
|
|
metricflow: { repoUrl: 'https://github.com/example/metricflow' },
|
|
},
|
|
});
|
|
const testRepoConnection = vi.fn(async () => ({ ok: true as const }));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'mf_main' }, io.io, { testRepoConnection }),
|
|
).resolves.toBe(0);
|
|
expect(testRepoConnection).toHaveBeenCalledWith({
|
|
repoUrl: 'https://github.com/example/metricflow',
|
|
authToken: null,
|
|
});
|
|
expect(io.stdout()).toContain('Driver: metricflow');
|
|
});
|
|
|
|
it('--all: prints a single coherent list with one row per connection', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'sqlite' },
|
|
docs: { driver: 'notion', auth_token: 'secret_token', crawl_mode: 'all_accessible' }, // pragma: allowlist secret
|
|
});
|
|
const { connector } = nativeConnector('sqlite');
|
|
const createScanConnector = vi.fn(async () => connector);
|
|
const createNotionClient = vi.fn(async (): Promise<Pick<NotionClient, 'retrieveBotUser'>> => ({
|
|
retrieveBotUser: vi.fn(async () => ({ id: 'bot-1', name: 'Docs Bot' })),
|
|
}));
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test-all', projectDir }, io.io, { createScanConnector, createNotionClient }),
|
|
).resolves.toBe(0);
|
|
|
|
const out = stripAnsi(io.stdout());
|
|
expect(out).toContain('connection test --all');
|
|
expect(out).toMatch(/docs\s+notion\s+✓ ok\s+Bot: Docs Bot/);
|
|
expect(out).toMatch(/warehouse\s+sqlite\s+✓ ok\s+Status: ok/);
|
|
expect(out).toContain('2 tested');
|
|
expect(out).toContain('2 passed');
|
|
expect(out).not.toContain('failed');
|
|
expect(io.stderr()).toBe('');
|
|
});
|
|
|
|
it('--all: marks failing connections, keeps passing ones, and returns non-zero', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeConnections(projectDir, {
|
|
warehouse: { driver: 'sqlite' },
|
|
broken: { driver: 'sqlite' },
|
|
});
|
|
const okConnector = nativeConnector('sqlite').connector;
|
|
const failConnector = nativeConnector('sqlite', { success: false, error: 'database file is unreadable' }).connector;
|
|
const createScanConnector = vi.fn(async (_p, connectionId: string) =>
|
|
connectionId === 'broken' ? failConnector : okConnector,
|
|
);
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test-all', projectDir }, io.io, { createScanConnector }),
|
|
).resolves.toBe(1);
|
|
|
|
const out = stripAnsi(io.stdout());
|
|
expect(out).toMatch(/broken\s+sqlite\s+✗ failed\s+database file is unreadable/);
|
|
expect(out).toMatch(/warehouse\s+sqlite\s+✓ ok\s+Status: ok/);
|
|
expect(out).toContain('1 passed');
|
|
expect(out).toContain('1 failed');
|
|
expect(io.stderr()).toBe('');
|
|
});
|
|
|
|
it('--all: shows an empty-state message when no connections are configured', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
const io = makeIo();
|
|
|
|
await expect(runKtxConnection({ command: 'test-all', projectDir }, io.io)).resolves.toBe(0);
|
|
|
|
const out = stripAnsi(io.stdout());
|
|
expect(out).toContain('connection test --all');
|
|
expect(out).toContain('No connections configured. Run `ktx setup` to add one.');
|
|
});
|
|
|
|
it('rejects unknown drivers with a helpful error', async () => {
|
|
const projectDir = join(tempDir, 'project');
|
|
await initKtxProject({ projectDir });
|
|
await writeFile(
|
|
join(projectDir, 'ktx.yaml'),
|
|
'connections:\n mystery:\n driver: duckdb\n',
|
|
'utf-8',
|
|
);
|
|
const io = makeIo();
|
|
|
|
await expect(
|
|
runKtxConnection({ command: 'test', projectDir, connectionId: 'mystery' }, io.io),
|
|
).resolves.toBe(1);
|
|
expect(io.stderr()).toContain('connections.mystery.driver');
|
|
expect(io.stderr()).toContain('postgres');
|
|
});
|
|
});
|