mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +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
344 lines
12 KiB
TypeScript
344 lines
12 KiB
TypeScript
import { describe, expect, it, vi } from 'vitest';
|
|
import type { ToolSession } from '../../../../src/context/tools/tool-session.js';
|
|
import { createTouchedSlSources } from '../../../../src/context/tools/touched-sl-sources.js';
|
|
import type { ToolContext } from '../../../../src/context/tools/base-tool.js';
|
|
import { WikiWriteTool } from '../../../../src/context/wiki/tools/wiki-write.tool.js';
|
|
|
|
function makeTool(overrides: any = {}) {
|
|
const wikiService = {
|
|
readPage: vi.fn().mockResolvedValue(null),
|
|
listPageKeys: vi.fn().mockResolvedValue([]),
|
|
writePage: vi.fn().mockResolvedValue(undefined),
|
|
syncSinglePage: vi.fn().mockResolvedValue(undefined),
|
|
...overrides.wikiService,
|
|
};
|
|
const pagesRepository = {
|
|
findPageByKey: vi.fn().mockResolvedValue(null),
|
|
getUserPageCount: vi.fn().mockResolvedValue(0),
|
|
...overrides.pagesRepository,
|
|
};
|
|
const knowledgeRepository = {
|
|
createEvent: vi.fn().mockResolvedValue(undefined),
|
|
...overrides.knowledgeRepository,
|
|
};
|
|
const tool = new WikiWriteTool(wikiService as any, pagesRepository as any, knowledgeRepository as any);
|
|
return { tool, wikiService, pagesRepository, knowledgeRepository };
|
|
}
|
|
|
|
describe('WikiWriteTool', () => {
|
|
const baseContext: ToolContext = { sourceId: 's', messageId: 'm', userId: 'u' };
|
|
|
|
it('creates a new page and indexes it when no session is present', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
const result = await tool.call(
|
|
{ key: 'leads-source', summary: 'Lead source definitions', content: '# Leads' } as any,
|
|
baseContext,
|
|
);
|
|
expect(wikiService.writePage).toHaveBeenCalledTimes(1);
|
|
expect(wikiService.syncSinglePage).toHaveBeenCalledTimes(1);
|
|
expect(result.markdown).toMatch(/created/i);
|
|
});
|
|
|
|
it('rejects slash-delimited page keys with a flat-key suggestion', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
const result = await tool.call(
|
|
{ key: 'orbit/company-overview', summary: 'Company overview', content: '# Orbit' } as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(result.structured).toEqual({ success: false, key: 'orbit/company-overview' });
|
|
expect(result.markdown).toContain(
|
|
'Invalid wiki key "orbit/company-overview". Wiki keys must be flat; use "orbit-company-overview".',
|
|
);
|
|
expect(wikiService.readPage).not.toHaveBeenCalled();
|
|
expect(wikiService.writePage).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('normalizes accidentally escaped markdown newlines before writing', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
|
|
await tool.call(
|
|
{
|
|
key: 'large-contract-requesters',
|
|
summary: 'Cross-schema Metabase query',
|
|
content:
|
|
'# Large Contract Requesters\\n\\n**Source card:** Metabase #110\\n\\n## SQL\\n\\n```sql\\nselect * from orbit_analytics.mart_account_segments\\n```\\n',
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(wikiService.writePage.mock.calls[0][4]).toBe(
|
|
'# Large Contract Requesters\n\n**Source card:** Metabase #110\n\n## SQL\n\n```sql\nselect * from orbit_analytics.mart_account_segments\n```\n',
|
|
);
|
|
expect(wikiService.syncSinglePage.mock.calls[0][4]).toBe(
|
|
'# Large Contract Requesters\n\n**Source card:** Metabase #110\n\n## SQL\n\n```sql\nselect * from orbit_analytics.mart_account_segments\n```\n',
|
|
);
|
|
});
|
|
|
|
it('preserves intentional escaped newline examples in inline code', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
|
|
await tool.call(
|
|
{
|
|
key: 'newline-token',
|
|
summary: 'Escaped newline token',
|
|
content: 'Use `\\n\\n` when documenting the literal separator.',
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(wikiService.writePage.mock.calls[0][4]).toBe('Use `\\n\\n` when documenting the literal separator.');
|
|
});
|
|
|
|
it('skips syncSinglePage when session is worktree-scoped', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
const session: ToolSession = {
|
|
connectionId: 'conn-1',
|
|
isWorktreeScoped: true,
|
|
preHead: null,
|
|
touchedSlSources: createTouchedSlSources(),
|
|
actions: [],
|
|
semanticLayerService: {} as any,
|
|
wikiService: wikiService as any,
|
|
configService: {} as any,
|
|
gitService: {} as any,
|
|
};
|
|
const context: ToolContext = { ...baseContext, session };
|
|
await tool.call({ key: 'k', summary: 's', content: '# x' } as any, context);
|
|
expect(wikiService.writePage).toHaveBeenCalledTimes(1);
|
|
expect(wikiService.syncSinglePage).not.toHaveBeenCalled();
|
|
expect(session.actions).toContainEqual(expect.objectContaining({ target: 'wiki', type: 'created', key: 'k' }));
|
|
});
|
|
|
|
it('requires either content or replacements', async () => {
|
|
const { tool } = makeTool();
|
|
const result = await tool.call({ key: 'k', summary: 's' } as any, baseContext);
|
|
expect(result.structured.success).toBe(false);
|
|
expect(result.markdown).toMatch(/content.*or.*replacements/i);
|
|
});
|
|
|
|
it('updates frontmatter only on an existing page while preserving content', async () => {
|
|
const { tool, wikiService } = makeTool({
|
|
wikiService: {
|
|
readPage: vi.fn().mockResolvedValue({
|
|
pageKey: 'orbit-customers',
|
|
frontmatter: {
|
|
summary: 'Customer source details',
|
|
usage_mode: 'auto',
|
|
sort_order: 0,
|
|
tags: ['notion'],
|
|
refs: ['notion:old'],
|
|
sl_refs: ['postgres-warehouse/orbit_analytics.customer'],
|
|
},
|
|
content: '# Orbit Customers\n\nSource: Notion - Orbit Customers Source.',
|
|
}),
|
|
},
|
|
});
|
|
|
|
const result = await tool.call(
|
|
{
|
|
key: 'orbit-customers',
|
|
summary: 'Customer source details mapped to the warehouse customer view',
|
|
sl_refs: ['postgres-warehouse/orbit_analytics.customer', 'dbt-main/customer'],
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(result.structured).toMatchObject({ success: true, key: 'orbit-customers', action: 'updated' });
|
|
expect(wikiService.writePage).toHaveBeenCalledWith(
|
|
'USER',
|
|
'u',
|
|
'orbit-customers',
|
|
expect.objectContaining({
|
|
summary: 'Customer source details mapped to the warehouse customer view',
|
|
tags: ['notion'],
|
|
refs: ['notion:old'],
|
|
sl_refs: ['postgres-warehouse/orbit_analytics.customer', 'dbt-main/customer'],
|
|
}),
|
|
'# Orbit Customers\n\nSource: Notion - Orbit Customers Source.',
|
|
expect.any(String),
|
|
expect.any(String),
|
|
);
|
|
});
|
|
|
|
it('writes historic-SQL frontmatter fields', async () => {
|
|
const { tool, wikiService } = makeTool();
|
|
|
|
await tool.call(
|
|
{
|
|
key: 'monthly-paid-orders',
|
|
summary: 'Monthly paid orders',
|
|
tags: ['historic-sql', 'query-pattern'],
|
|
sl_refs: ['analytics.orders'],
|
|
source: 'historic-sql',
|
|
intent: 'Monthly paid order count',
|
|
tables: ['analytics.orders'],
|
|
representative_sql: "SELECT count(*) FROM analytics.orders WHERE status = 'paid'",
|
|
usage: {
|
|
executions: 42,
|
|
distinct_users: 3,
|
|
first_seen: '2026-02-01',
|
|
last_seen: '2026-05-04',
|
|
p50_runtime_ms: 100,
|
|
p95_runtime_ms: 200,
|
|
error_rate: 0,
|
|
rows_produced: 42,
|
|
},
|
|
fingerprints: ['fp_paid_orders'],
|
|
content: '## Monthly paid order count',
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(wikiService.writePage.mock.calls[0][3]).toEqual({
|
|
summary: 'Monthly paid orders',
|
|
usage_mode: 'auto',
|
|
sort_order: 0,
|
|
tags: ['historic-sql', 'query-pattern'],
|
|
refs: undefined,
|
|
sl_refs: ['analytics.orders'],
|
|
source: 'historic-sql',
|
|
intent: 'Monthly paid order count',
|
|
tables: ['analytics.orders'],
|
|
representative_sql: "SELECT count(*) FROM analytics.orders WHERE status = 'paid'",
|
|
usage: {
|
|
executions: 42,
|
|
distinct_users: 3,
|
|
first_seen: '2026-02-01',
|
|
last_seen: '2026-05-04',
|
|
p50_runtime_ms: 100,
|
|
p95_runtime_ms: 200,
|
|
error_rate: 0,
|
|
rows_produced: 42,
|
|
},
|
|
fingerprints: ['fp_paid_orders'],
|
|
});
|
|
});
|
|
|
|
it('preserves historic-SQL frontmatter fields when update omits them', async () => {
|
|
const existingFrontmatter = {
|
|
summary: 'Monthly paid orders',
|
|
usage_mode: 'auto' as const,
|
|
sort_order: 0,
|
|
tags: ['historic-sql'],
|
|
sl_refs: ['analytics.orders'],
|
|
source: 'historic-sql',
|
|
intent: 'Monthly paid order count',
|
|
tables: ['analytics.orders'],
|
|
representative_sql: "SELECT count(*) FROM analytics.orders WHERE status = 'paid'",
|
|
usage: {
|
|
executions: 42,
|
|
distinct_users: 3,
|
|
first_seen: '2026-02-01',
|
|
last_seen: '2026-05-04',
|
|
p50_runtime_ms: 100,
|
|
p95_runtime_ms: 200,
|
|
error_rate: 0,
|
|
rows_produced: 42,
|
|
},
|
|
fingerprints: ['fp_paid_orders'],
|
|
};
|
|
const { tool, wikiService } = makeTool({
|
|
wikiService: {
|
|
readPage: vi.fn().mockResolvedValue({
|
|
pageKey: 'monthly-paid-orders',
|
|
frontmatter: existingFrontmatter,
|
|
content: 'old body',
|
|
}),
|
|
},
|
|
});
|
|
|
|
await tool.call(
|
|
{
|
|
key: 'monthly-paid-orders',
|
|
summary: 'Monthly paid orders updated',
|
|
content: '## Monthly paid order count updated',
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(wikiService.writePage.mock.calls[0][3]).toEqual({
|
|
...existingFrontmatter,
|
|
summary: 'Monthly paid orders updated',
|
|
});
|
|
});
|
|
|
|
it('rejects frontmatter refs that target missing wiki pages', async () => {
|
|
const { tool, wikiService } = makeTool({
|
|
wikiService: {
|
|
listPageKeys: vi.fn().mockResolvedValue(['orbit-company-overview']),
|
|
},
|
|
});
|
|
|
|
const result = await tool.call(
|
|
{
|
|
key: 'orbit-how-we-work',
|
|
summary: 'Operating norms',
|
|
content: '## How We Work',
|
|
refs: ['orbit-company-overview', 'orbit-team-lanes-detail'],
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(result.structured.success).toBe(false);
|
|
expect(result.markdown).toMatch(/orbit-team-lanes-detail/);
|
|
expect(wikiService.writePage).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('rejects inline wiki links that target missing wiki pages', async () => {
|
|
const { tool, wikiService } = makeTool({
|
|
wikiService: {
|
|
listPageKeys: vi.fn().mockResolvedValue(['orbit-company-overview']),
|
|
},
|
|
});
|
|
|
|
const result = await tool.call(
|
|
{
|
|
key: 'orbit-how-we-work',
|
|
summary: 'Operating norms',
|
|
content: 'See [[orbit-company-overview]] and [[orbit-team-lanes-detail]].',
|
|
} as any,
|
|
baseContext,
|
|
);
|
|
|
|
expect(result.structured.success).toBe(false);
|
|
expect(result.markdown).toMatch(/orbit-team-lanes-detail/);
|
|
expect(wikiService.writePage).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('accepts forward refs during ingest sessions for post-pass validation', async () => {
|
|
const { tool, wikiService } = makeTool({
|
|
wikiService: {
|
|
listPageKeys: vi.fn().mockResolvedValue(['orbit-company-overview']),
|
|
},
|
|
});
|
|
const session: ToolSession = {
|
|
connectionId: 'conn-1',
|
|
isWorktreeScoped: true,
|
|
preHead: null,
|
|
touchedSlSources: createTouchedSlSources(),
|
|
actions: [],
|
|
semanticLayerService: {} as any,
|
|
wikiService: wikiService as any,
|
|
configService: {} as any,
|
|
gitService: {} as any,
|
|
ingest: { runId: 'run-1', jobId: 'job-1', syncId: 'sync-1', sourceKey: 'notion' },
|
|
};
|
|
|
|
const result = await tool.call(
|
|
{
|
|
key: 'orbit-how-we-work',
|
|
summary: 'Operating norms',
|
|
content: 'See [[orbit-team-lanes-detail]].',
|
|
refs: ['orbit-company-overview', 'orbit-team-lanes-detail'],
|
|
} as any,
|
|
{ ...baseContext, session },
|
|
);
|
|
|
|
expect(result.structured).toMatchObject({ success: true, key: 'orbit-how-we-work', action: 'created' });
|
|
expect(wikiService.writePage).toHaveBeenCalledTimes(1);
|
|
expect(session.actions).toContainEqual(
|
|
expect.objectContaining({ target: 'wiki', type: 'created', key: 'orbit-how-we-work' }),
|
|
);
|
|
});
|
|
});
|