ktx/packages/cli/test/context/search/pglite-spike.test.ts
Andrey Avtomonov 56985b7e09
test: split cli tests from source tree (#216)
* 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
2026-05-26 08:49:05 +02:00

299 lines
8.6 KiB
TypeScript

import { mkdtemp, rm } from 'node:fs/promises';
import { tmpdir } from 'node:os';
import { join } from 'node:path';
import { PGlite, type PGliteInterface } from '@electric-sql/pglite';
import { pg_trgm } from '@electric-sql/pglite/contrib/pg_trgm';
import { vector } from '@electric-sql/pglite/vector';
import { afterEach, beforeEach, describe, expect, it } from 'vitest';
import { assertSearchBackendCapabilities, assertSearchBackendConformanceCase } from './backend-conformance.test-utils.js';
import type { SearchBackendCapabilities } from '../../../src/context/search/types.js';
type PGliteDb = PGliteInterface;
const PGLITE_SPIKE_CAPABILITIES = {
fts: true,
vector: true,
fuzzy: true,
jsonSearch: true,
arraySearch: false,
} satisfies SearchBackendCapabilities;
async function createSpikeDb(dataDir: string): Promise<PGliteDb> {
const db = await PGlite.create({
dataDir,
extensions: {
vector,
pg_trgm,
},
});
await db.exec(`
CREATE EXTENSION IF NOT EXISTS vector;
CREATE EXTENSION IF NOT EXISTS pg_trgm;
`);
return db;
}
async function createSchema(db: PGliteDb): Promise<void> {
await db.exec(`
CREATE TABLE IF NOT EXISTS spike_documents (
id TEXT PRIMARY KEY,
search_text TEXT NOT NULL,
metadata JSONB NOT NULL DEFAULT '{}'::jsonb,
embedding vector(3) NOT NULL
);
CREATE INDEX IF NOT EXISTS spike_documents_fts_idx
ON spike_documents
USING GIN (to_tsvector('english', search_text));
CREATE INDEX IF NOT EXISTS spike_documents_vector_idx
ON spike_documents
USING ivfflat (embedding vector_cosine_ops)
WITH (lists = 1);
CREATE TABLE IF NOT EXISTS spike_dictionary_values (
connection_id TEXT NOT NULL,
source_name TEXT NOT NULL,
column_name TEXT NOT NULL,
value TEXT NOT NULL,
PRIMARY KEY (connection_id, source_name, column_name, value)
);
CREATE INDEX IF NOT EXISTS spike_dictionary_values_trgm_idx
ON spike_dictionary_values
USING GIN (value gin_trgm_ops);
`);
}
async function seedSearchFixture(db: PGliteDb): Promise<void> {
await db.query(
`
INSERT INTO spike_documents (id, search_text, metadata, embedding)
VALUES
($1, $2, $3::jsonb, $4::vector),
($5, $6, $7::jsonb, $8::vector),
($9, $10, $11::jsonb, $12::vector)
ON CONFLICT (id) DO UPDATE
SET search_text = EXCLUDED.search_text,
metadata = EXCLUDED.metadata,
embedding = EXCLUDED.embedding
`,
[
'warehouse/orders',
'orders paid revenue refund status customer',
JSON.stringify({ connectionId: 'warehouse', sourceName: 'orders' }),
JSON.stringify([1, 0, 0]),
'finance/orders',
'orders finance bookings gross margin',
JSON.stringify({ connectionId: 'finance', sourceName: 'orders' }),
JSON.stringify([0.72, 0.28, 0]),
'warehouse/customers',
'customers accounts lifecycle region',
JSON.stringify({ connectionId: 'warehouse', sourceName: 'customers' }),
JSON.stringify([0, 1, 0]),
],
);
await db.query(
`
INSERT INTO spike_dictionary_values (connection_id, source_name, column_name, value)
VALUES
('warehouse', 'orders', 'status', 'refunded'),
('warehouse', 'orders', 'status', 'paid'),
('warehouse', 'customers', 'region', 'emea')
ON CONFLICT DO NOTHING
`,
);
}
async function closeDb(db: PGliteDb): Promise<void> {
await db.close();
}
describe('PGlite hybrid search spike', () => {
let tempDir: string;
let dataDir: string;
beforeEach(async () => {
tempDir = await mkdtemp(join(tmpdir(), 'ktx-pglite-search-spike-'));
dataDir = join(tempDir, 'pgdata');
});
afterEach(async () => {
await rm(tempDir, { recursive: true, force: true });
});
it('documents PGlite search backend capabilities', () => {
assertSearchBackendCapabilities({
backendName: 'pglite-spike',
capabilities: PGLITE_SPIKE_CAPABILITIES,
expected: {
fts: true,
vector: true,
fuzzy: true,
jsonSearch: true,
arraySearch: false,
},
});
});
it('supports FTS, pgvector ordering, and pg_trgm dictionary lookup', async () => {
const db = await createSpikeDb(dataDir);
try {
await createSchema(db);
await seedSearchFixture(db);
const lexical = await db.query<{ id: string; score: number }>(
`
SELECT
id,
ts_rank_cd(to_tsvector('english', search_text), websearch_to_tsquery('english', $1)) AS score
FROM spike_documents
WHERE to_tsvector('english', search_text) @@ websearch_to_tsquery('english', $1)
ORDER BY score DESC, id ASC
LIMIT 2
`,
['paid orders'],
);
assertSearchBackendConformanceCase({
backendName: 'pglite-spike',
surface: 'semantic-layer',
caseName: 'postgres fts lexical ranking',
results: lexical.rows.map((row) => ({
id: row.id,
score: row.score,
matchReasons: ['lexical'],
})),
expectedTopIds: ['warehouse/orders'],
expectedReasonsById: {
'warehouse/orders': ['lexical'],
},
});
const semantic = await db.query<{ id: string; similarity: number }>(
`
SELECT
id,
1 - (embedding <=> $1::vector) AS similarity
FROM spike_documents
ORDER BY embedding <=> $1::vector, id ASC
LIMIT 2
`,
[JSON.stringify([1, 0, 0])],
);
assertSearchBackendConformanceCase({
backendName: 'pglite-spike',
surface: 'semantic-layer',
caseName: 'pgvector cosine ranking',
results: semantic.rows.map((row) => ({
id: row.id,
score: row.similarity,
matchReasons: ['semantic'],
})),
expectedTopIds: ['warehouse/orders'],
expectedReasonsById: {
'warehouse/orders': ['semantic'],
},
});
const dictionary = await db.query<{ id: string; value: string; score: number }>(
`
SELECT
connection_id || '/' || source_name AS id,
value,
similarity(value, $1) AS score
FROM spike_dictionary_values
WHERE similarity(value, $1) > 0
ORDER BY score DESC, id ASC, value ASC
LIMIT 2
`,
['refund'],
);
assertSearchBackendConformanceCase({
backendName: 'pglite-spike',
surface: 'semantic-layer',
caseName: 'pg_trgm dictionary ranking',
results: dictionary.rows.map((row) => ({
id: row.id,
score: row.score,
matchReasons: ['dictionary'],
dictionaryMatches: [{ column: 'status', values: [row.value] }],
})),
expectedTopIds: ['warehouse/orders'],
expectedReasonsById: {
'warehouse/orders': ['dictionary'],
},
expectedDictionaryMatchesById: {
'warehouse/orders': [{ column: 'status', values: ['refunded'] }],
},
});
} finally {
await closeDb(db);
}
});
it('persists indexed rows after reopening the filesystem database', async () => {
const first = await createSpikeDb(dataDir);
try {
await createSchema(first);
await seedSearchFixture(first);
} finally {
await closeDb(first);
}
const second = await createSpikeDb(dataDir);
try {
const persisted = await second.query<{ count: number }>(
"SELECT COUNT(*)::int AS count FROM spike_documents WHERE metadata->>'connectionId' = $1",
['warehouse'],
);
expect(persisted.rows[0]).toEqual({ count: 2 });
} finally {
await closeDb(second);
}
});
it('records direct concurrency behavior without assuming Postgres server parity', async () => {
const db = await createSpikeDb(dataDir);
try {
await createSchema(db);
await seedSearchFixture(db);
const reads = await Promise.all(
Array.from({ length: 4 }, () =>
db.query<{ count: number }>('SELECT COUNT(*)::int AS count FROM spike_documents'),
),
);
expect(reads.map((result) => result.rows[0]?.count)).toEqual([3, 3, 3, 3]);
let secondOpenStatus: 'opened' | 'blocked' = 'opened';
let second: PGliteDb | undefined;
try {
second = await createSpikeDb(dataDir);
await second.query('SELECT 1');
} catch {
secondOpenStatus = 'blocked';
} finally {
if (second) {
await closeDb(second);
}
}
expect(['opened', 'blocked']).toContain(secondOpenStatus);
} finally {
await closeDb(db);
}
});
});