mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
* refactor(workspace): relocate @ktx/llm source into packages/cli/src/llm * refactor(workspace): rewrite @ktx/llm imports to relative paths * refactor(workspace): fold internal packages into cli * chore(workspace): gate dead-code with knip production mode Turn on production-mode knip plus an autofix run in pre-commit and the `pnpm dead-code` script, document the `/** @internal */` convention for test-only exports in AGENTS.md, annotate test-only exports across the CLI with that JSDoc, and drop dead exports/wrappers the new gate surfaced (e.g. `cli-project.ts`, `lookerRuntimeSourceToFileAdapterSource`, `createLocalScanEnrichmentProvidersFromConfig`, `PGLITE_OWNER_PROCESS_BACKEND_CAPABILITIES`, stale type re-exports). Replace the loose `ignoreIssues` allowlist in `knip.json` with explicit production entries so cross-package barrel leaks are caught. * refactor(cli): delete internal barrel index.ts files The 34 `index.ts` re-export barrels inside `packages/cli/src/` were holdovers from the pre-fold multi-workspace structure. Post-fold-in they served no production purpose: external consumers go through the single package main entry, and in-repo callers mostly imported through them only because the path was short. Internally, knip flagged most barrel re-exports as production-dead (only reached via tests). This change: - Deletes every internal barrel except `packages/cli/src/index.ts` (the published package entry). - Rewrites ~270 source/test files to import each name directly from the file that defines it. - Moves `tools/warehouse-verification/index.ts` to `create-warehouse-verification-tools.ts` (the function it defined locally) and updates its single consumer. - Renames `search/backend-conformance.ts` → `.test-utils.ts` to match the existing test-helper file convention. - Deletes 13 dead test-only chains (dbt-descriptions/*, live-database/extracted-schema, live-database/structural-sync, relationship-* feedback/review chain) plus their tests and a cascading orphan integration test. - Updates test mocks that pointed at deleted barrel paths (notion-client, connector barrels in scan/local-scan-connectors tests) to mock the source files instead. - Points the maintainer benchmark script (`scripts/relationship-benchmark-report.mjs`) at source files instead of `dist/context/scan/index.js`. - Drops the barrel `!` entries from `knip.json`; adds explicit production entries only for the benchmark code reached via dist by the maintainer script. Net: 413 files changed, ~1.2k insertions, ~9.4k deletions. `pnpm run dead-code` (Biome + knip default + knip production) and `pnpm run type-check` are clean; 2277 tests pass. * refactor(workspace): rename @ktx/cli to @kaelio/ktx and pack it directly Promote the CLI workspace package to the public name `@kaelio/ktx` and drop the separate `scripts/build-public-npm-package.mjs` wrapper. The CLI package is now publishable in place (`publishConfig.access: public`, `provenance: true`), so artifact packing uses `pnpm pack` against `packages/cli/` instead of assembling a parallel package tree. Updates all workspace filter invocations, docs, tests, and release readiness checks to reference the new package name, and folds the tarball-name helper into `scripts/public-npm-release-metadata.mjs`. * docs: align "agent clients" and "data agents" terminology Replace "client agents" with "agent clients" and "database agents" with "data agents" across AGENTS.md, README.md, the docs-site copy, and the matching setup-agents test description, matching the canonical vocabulary in docs/terminology.md. Also moves packages/cli/tsconfig.json's tsBuildInfoFile from node_modules/.cache/ to dist/.tsbuildinfo so incremental builds survive node_modules reinstalls. * refactor(release): single source of truth for package version Make packages/cli/package.json the single source of truth for the @kaelio/ktx version. publicNpmPackageVersion() now reads it directly, so artifact filenames, release-readiness checks, and the Python wheel version all derive from one field. The duplicate release-policy.json.publicNpmPackageVersion is removed. Previously the two fields could drift: tarballs were named kaelio-ktx-0.4.1.tgz while internally containing @kaelio/ktx@0.0.0-private. - update-public-release-version.mjs rewrites both Python pyproject.toml files (ktx-daemon, ktx-sl) alongside the npm package.jsons, normalizing the version for PEP 440 (e.g. 0.1.0-rc.2 -> 0.1.0rc2). - semantic-release-config.cjs adds the two pyproject.toml files to @semantic-release/git assets so the release commit back to main carries every version source in lockstep. - The six "?? '0.0.0-private'" fallback literals across the CLI are replaced with "?? getKtxCliPackageInfo().version", and createDefaultKtxMcpServer makes its version arg required. - docs/release.md describes the actual commit-back model: the dev tree always reflects the most recent release; no sentinel pin to maintain. Verified: pnpm run artifacts:build now produces kaelio-ktx-0.4.1.tgz and kaelio_ktx-0.4.1-py3-none-any.whl with @kaelio/ktx@0.4.1 inside. Full type-check, dead-code, and 2287 vitests + 173 script tests pass. * refactor(cli): inject embedding provider resolution and detect sentence-transformers runtime Make resolveProjectEmbeddingProvider and runtimeIo injectable in ingest and scan command entrypoints so tests can stub them, and teach resolvePublicIngestRuntimeRequirements to flag the local-embeddings runtime feature when ktx.yaml selects sentence-transformers. * chore(cli): mark buildLocalStatsStatus and LocalStatsStatus as @internal Both symbols are consumed only by status-project.test.ts. Annotating with /** @internal */ keeps knip's production-mode check clean without changing runtime behavior. * fix(cli): use real package metadata in print-command-tree The stubbed package name embedded a forbidden product identifier that tripped the boundary check in CI. Read the metadata from package.json instead — keeps the rendered tree unchanged and removes a duplicate source of truth. * feat(cli): show embedding coverage in `ktx status`, drop duplicate disk counts Inline `(N embedded)` next to the Wiki scope counts and Semantic-layer source counts, computed with `SUM(embedding_json IS NOT NULL)` over `knowledge_pages` and `local_sl_sources`. Rename the "Knowledge" label to "Wiki" (canonical per `docs/terminology.md`) and rename the matching `localStats.knowledgePages` field to `localStats.wikiPages`. Drop `wiki=N md` and `semantic-layer=N yaml` from the Disk row — those duplicated the per-surface rows above. Disk now reports only actual byte usage (db, cache, raw-sources). The unused `wikiGlobalMarkdownCount` / `semanticLayerYamlCount` fields, the `isMarkdownEntry` / `isYamlEntry` helpers, and the `filter` arg on `summarizeDir` are removed.
549 lines
21 KiB
JavaScript
549 lines
21 KiB
JavaScript
import assert from 'node:assert/strict';
|
|
import { createHash } from 'node:crypto';
|
|
import { mkdir, mkdtemp, readFile, rm, writeFile } from 'node:fs/promises';
|
|
import { tmpdir } from 'node:os';
|
|
import { join } from 'node:path';
|
|
import { describe, it } from 'node:test';
|
|
|
|
import { PUBLIC_NPM_PACKAGE_VERSION } from './public-npm-release-metadata.mjs';
|
|
import {
|
|
CLI_PYTHON_ASSET_MANIFEST,
|
|
RUNTIME_WHEEL_DISTRIBUTION_NAME,
|
|
RUNTIME_WHEEL_NORMALIZED_NAME,
|
|
RUNTIME_WHEEL_PACKAGE_VERSION,
|
|
artifactManifestPath,
|
|
buildArtifactCommands,
|
|
copyRuntimeWheelAssets,
|
|
findPythonArtifacts,
|
|
NPM_ARTIFACT_PACKAGES,
|
|
npmCliSmokeSource,
|
|
npmRuntimeSmokeSource,
|
|
npmSmokePackageJson,
|
|
npmSmokePnpmWorkspaceYaml,
|
|
npmVerifySource,
|
|
packageArtifactLayout,
|
|
packageReleaseMetadata,
|
|
verifyArtifactManifest,
|
|
writeArtifactManifest,
|
|
} from './package-artifacts.mjs';
|
|
|
|
async function writeJson(path, value) {
|
|
await writeFile(path, `${JSON.stringify(value, null, 2)}\n`);
|
|
}
|
|
|
|
async function writeReleaseMetadataInputs(root) {
|
|
await writeJson(join(root, 'release-policy.json'), {
|
|
schemaVersion: 1,
|
|
releaseMode: 'ci-artifact-only',
|
|
npm: {
|
|
publish: false,
|
|
registry: null,
|
|
access: 'public',
|
|
tag: 'next',
|
|
packages: ['@kaelio/ktx'],
|
|
},
|
|
python: {
|
|
publish: false,
|
|
repository: null,
|
|
packages: ['kaelio-ktx'],
|
|
},
|
|
publishedPackageSmoke: {
|
|
packageName: '@kaelio/ktx',
|
|
version: PUBLIC_NPM_PACKAGE_VERSION,
|
|
registry: null,
|
|
},
|
|
runtimeInstaller: {
|
|
uvStrategy: 'path-prerequisite',
|
|
bootstrapUv: false,
|
|
missingUvBehavior: 'focused-error',
|
|
},
|
|
requiredBeforePublishing: ['Choose public release version.'],
|
|
});
|
|
|
|
for (const packageInfo of NPM_ARTIFACT_PACKAGES) {
|
|
await mkdir(join(root, packageInfo.packageRoot), { recursive: true });
|
|
await writeJson(join(root, packageInfo.packageRoot, 'package.json'), {
|
|
name: packageInfo.name,
|
|
version: PUBLIC_NPM_PACKAGE_VERSION,
|
|
});
|
|
}
|
|
}
|
|
|
|
function runtimeWheelFilename(version = RUNTIME_WHEEL_PACKAGE_VERSION) {
|
|
return `kaelio_ktx-${version}-py3-none-any.whl`;
|
|
}
|
|
|
|
async function writeUploadableArtifactFixtures(layout) {
|
|
await mkdir(layout.npmDir, { recursive: true });
|
|
await mkdir(layout.pythonDir, { recursive: true });
|
|
|
|
const fileContents = new Map([
|
|
...NPM_ARTIFACT_PACKAGES.map((packageInfo) => [
|
|
layout.npmTarballs[packageInfo.name],
|
|
`${packageInfo.name}-tarball`,
|
|
]),
|
|
[
|
|
join(layout.pythonDir, runtimeWheelFilename()),
|
|
'kaelio-ktx-runtime-wheel',
|
|
],
|
|
]);
|
|
|
|
for (const [path, contents] of fileContents) {
|
|
await writeFile(path, contents);
|
|
}
|
|
}
|
|
|
|
describe('packageArtifactLayout', () => {
|
|
it('uses stable artifact paths under ktx/dist/artifacts', () => {
|
|
const layout = packageArtifactLayout('/repo/ktx', PUBLIC_NPM_PACKAGE_VERSION);
|
|
|
|
assert.equal(layout.artifactDir, '/repo/ktx/dist/artifacts');
|
|
assert.equal(layout.npmDir, '/repo/ktx/dist/artifacts/npm');
|
|
assert.equal(layout.pythonDir, '/repo/ktx/dist/artifacts/python');
|
|
assert.equal(
|
|
layout.cliTarball,
|
|
`/repo/ktx/dist/artifacts/npm/kaelio-ktx-${PUBLIC_NPM_PACKAGE_VERSION}.tgz`,
|
|
);
|
|
assert.deepEqual(Object.keys(layout.npmTarballs), ['@kaelio/ktx']);
|
|
});
|
|
});
|
|
|
|
describe('buildArtifactCommands', () => {
|
|
it('builds the CLI package, then the runtime wheel, then packs the npm tarball directly', () => {
|
|
const layout = packageArtifactLayout('/repo/ktx', PUBLIC_NPM_PACKAGE_VERSION);
|
|
const commands = buildArtifactCommands(layout);
|
|
|
|
assert.deepEqual(
|
|
commands.map((command) => [command.command, command.args, command.cwd]),
|
|
[
|
|
['pnpm', ['--filter', '@kaelio/ktx', 'run', 'build'], '/repo/ktx'],
|
|
[process.execPath, ['scripts/build-python-runtime-wheel.mjs'], '/repo/ktx'],
|
|
[
|
|
'pnpm',
|
|
['pack', '--out', `/repo/ktx/dist/artifacts/npm/kaelio-ktx-${PUBLIC_NPM_PACKAGE_VERSION}.tgz`],
|
|
'/repo/ktx/packages/cli',
|
|
],
|
|
],
|
|
);
|
|
});
|
|
});
|
|
|
|
describe('packageReleaseMetadata', () => {
|
|
it('reads package identities and versions from package manifests', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-release-metadata-test-'));
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
|
|
assert.deepEqual(await packageReleaseMetadata(root), [
|
|
{
|
|
ecosystem: 'npm',
|
|
packageName: '@kaelio/ktx',
|
|
packageRoot: 'packages/cli',
|
|
packageVersion: PUBLIC_NPM_PACKAGE_VERSION,
|
|
private: false,
|
|
releaseMode: 'ci-artifact-only',
|
|
},
|
|
{
|
|
ecosystem: 'python',
|
|
packageName: 'kaelio-ktx',
|
|
packageRoot: 'python/runtime-wheel',
|
|
packageVersion: RUNTIME_WHEEL_PACKAGE_VERSION,
|
|
private: false,
|
|
releaseMode: 'ci-artifact-only',
|
|
},
|
|
]);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('findPythonArtifacts', () => {
|
|
it('finds the bundled runtime wheel only', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-test-'));
|
|
try {
|
|
await writeFile(join(root, runtimeWheelFilename()), '');
|
|
|
|
assert.deepEqual(await findPythonArtifacts(root), {
|
|
runtimeWheel: join(root, runtimeWheelFilename()),
|
|
});
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('throws when a required Python artifact is missing', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-test-'));
|
|
try {
|
|
await assert.rejects(() => findPythonArtifacts(root), /Missing Python artifact: kaelio-ktx runtime wheel/);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('artifact manifest', () => {
|
|
it('writes release metadata, source revision, checksums, and byte counts for every uploadable artifact', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-manifest-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
await writeUploadableArtifactFixtures(layout);
|
|
|
|
const manifest = await writeArtifactManifest(layout, new Date('2026-04-28T12:00:00.000Z'), {
|
|
sourceRevision: 'abc123',
|
|
});
|
|
|
|
assert.equal(artifactManifestPath(layout), join(root, 'dist', 'artifacts', 'manifest.json'));
|
|
assert.equal(manifest.schemaVersion, 2);
|
|
assert.equal(manifest.generatedAt, '2026-04-28T12:00:00.000Z');
|
|
assert.equal(manifest.sourceRevision, 'abc123');
|
|
assert.deepEqual(
|
|
manifest.packages.filter((entry) => entry.ecosystem === 'npm'),
|
|
[
|
|
{
|
|
ecosystem: 'npm',
|
|
packageName: '@kaelio/ktx',
|
|
packageRoot: 'packages/cli',
|
|
packageVersion: PUBLIC_NPM_PACKAGE_VERSION,
|
|
private: false,
|
|
releaseMode: 'ci-artifact-only',
|
|
},
|
|
],
|
|
);
|
|
assert.deepEqual(
|
|
manifest.packages.filter((entry) => entry.ecosystem === 'python'),
|
|
[
|
|
{
|
|
ecosystem: 'python',
|
|
packageName: 'kaelio-ktx',
|
|
packageRoot: 'python/runtime-wheel',
|
|
packageVersion: RUNTIME_WHEEL_PACKAGE_VERSION,
|
|
private: false,
|
|
releaseMode: 'ci-artifact-only',
|
|
},
|
|
],
|
|
);
|
|
assert.deepEqual(
|
|
manifest.files
|
|
.filter((file) => file.ecosystem === 'npm')
|
|
.map((file) => ({
|
|
artifactKind: file.artifactKind,
|
|
ecosystem: file.ecosystem,
|
|
packageName: file.packageName,
|
|
packageVersion: file.packageVersion,
|
|
path: file.path,
|
|
}))
|
|
.sort((left, right) => left.packageName.localeCompare(right.packageName)),
|
|
[
|
|
{
|
|
artifactKind: 'tarball',
|
|
ecosystem: 'npm',
|
|
packageName: '@kaelio/ktx',
|
|
packageVersion: PUBLIC_NPM_PACKAGE_VERSION,
|
|
path: `npm/kaelio-ktx-${PUBLIC_NPM_PACKAGE_VERSION}.tgz`,
|
|
},
|
|
],
|
|
);
|
|
assert.deepEqual(
|
|
manifest.files
|
|
.filter((file) => file.ecosystem === 'python')
|
|
.map((file) => ({
|
|
artifactKind: file.artifactKind,
|
|
ecosystem: file.ecosystem,
|
|
packageName: file.packageName,
|
|
packageVersion: file.packageVersion,
|
|
path: file.path,
|
|
})),
|
|
[
|
|
{
|
|
artifactKind: 'wheel',
|
|
ecosystem: 'python',
|
|
packageName: 'kaelio-ktx',
|
|
packageVersion: RUNTIME_WHEEL_PACKAGE_VERSION,
|
|
path: `python/${runtimeWheelFilename()}`,
|
|
},
|
|
],
|
|
);
|
|
|
|
const npmEntry = manifest.files.find(
|
|
(file) => file.path === `npm/kaelio-ktx-${PUBLIC_NPM_PACKAGE_VERSION}.tgz`,
|
|
);
|
|
assert.ok(npmEntry);
|
|
assert.equal(npmEntry.bytes, Buffer.byteLength('@kaelio/ktx-tarball'));
|
|
assert.equal(npmEntry.sha256, createHash('sha256').update('@kaelio/ktx-tarball').digest('hex'));
|
|
|
|
const writtenManifest = JSON.parse(await readFile(artifactManifestPath(layout), 'utf-8'));
|
|
assert.deepEqual(writtenManifest, manifest);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('verifyArtifactManifest', () => {
|
|
it('accepts a schema version 2 manifest that matches the artifact directory', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-verify-manifest-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
await writeUploadableArtifactFixtures(layout);
|
|
await writeArtifactManifest(layout, new Date('2026-04-28T12:00:00.000Z'), {
|
|
sourceRevision: 'abc123',
|
|
});
|
|
|
|
const manifest = await verifyArtifactManifest(layout, {
|
|
expectedSourceRevision: 'abc123',
|
|
});
|
|
|
|
assert.equal(manifest.schemaVersion, 2);
|
|
assert.equal(manifest.sourceRevision, 'abc123');
|
|
assert.equal(manifest.files.length, NPM_ARTIFACT_PACKAGES.length + 1);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('rejects a manifest when a file checksum has drifted', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-checksum-drift-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
await writeUploadableArtifactFixtures(layout);
|
|
await writeArtifactManifest(layout, new Date('2026-04-28T12:00:00.000Z'), {
|
|
sourceRevision: 'abc123',
|
|
});
|
|
await writeFile(layout.contextTarball, 'changed-context-tarball');
|
|
|
|
await assert.rejects(
|
|
() => verifyArtifactManifest(layout),
|
|
/Artifact manifest files do not match artifact contents/,
|
|
);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('rejects a manifest with an unsafe artifact path', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-path-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
await writeUploadableArtifactFixtures(layout);
|
|
const manifest = await writeArtifactManifest(layout, new Date('2026-04-28T12:00:00.000Z'), {
|
|
sourceRevision: 'abc123',
|
|
});
|
|
manifest.files[0].path = '../outside.tgz';
|
|
await writeFile(artifactManifestPath(layout), `${JSON.stringify(manifest, null, 2)}\n`);
|
|
|
|
await assert.rejects(() => verifyArtifactManifest(layout), /Unsafe artifact manifest path: \.\.\/outside\.tgz/);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
it('rejects a manifest from the wrong source revision when one is required', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-artifacts-revision-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await writeReleaseMetadataInputs(root);
|
|
await writeUploadableArtifactFixtures(layout);
|
|
await writeArtifactManifest(layout, new Date('2026-04-28T12:00:00.000Z'), {
|
|
sourceRevision: 'abc123',
|
|
});
|
|
|
|
await assert.rejects(
|
|
() =>
|
|
verifyArtifactManifest(layout, {
|
|
expectedSourceRevision: 'def456',
|
|
}),
|
|
/Artifact manifest sourceRevision mismatch: expected def456, got abc123/,
|
|
);
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('copyRuntimeWheelAssets', () => {
|
|
it('copies the runtime wheel and checksum manifest into CLI assets', async () => {
|
|
const root = await mkdtemp(join(tmpdir(), 'ktx-runtime-assets-test-'));
|
|
const layout = packageArtifactLayout(root, PUBLIC_NPM_PACKAGE_VERSION);
|
|
try {
|
|
await mkdir(layout.pythonDir, { recursive: true });
|
|
await writeFile(
|
|
join(layout.pythonDir, runtimeWheelFilename()),
|
|
'kaelio-ktx-runtime-wheel',
|
|
);
|
|
|
|
const assets = await copyRuntimeWheelAssets(layout, {
|
|
runtimeWheel: join(layout.pythonDir, runtimeWheelFilename()),
|
|
});
|
|
|
|
assert.equal(
|
|
assets.wheelPath,
|
|
join(root, 'packages', 'cli', 'assets', 'python', runtimeWheelFilename()),
|
|
);
|
|
assert.equal(
|
|
assets.manifestPath,
|
|
join(root, 'packages', 'cli', 'assets', 'python', CLI_PYTHON_ASSET_MANIFEST),
|
|
);
|
|
const manifest = JSON.parse(await readFile(assets.manifestPath, 'utf8'));
|
|
assert.deepEqual(manifest, {
|
|
schemaVersion: 1,
|
|
distributionName: RUNTIME_WHEEL_DISTRIBUTION_NAME,
|
|
normalizedName: RUNTIME_WHEEL_NORMALIZED_NAME,
|
|
version: RUNTIME_WHEEL_PACKAGE_VERSION,
|
|
wheel: {
|
|
file: runtimeWheelFilename(),
|
|
sha256: createHash('sha256')
|
|
.update('kaelio-ktx-runtime-wheel')
|
|
.digest('hex'),
|
|
bytes: Buffer.byteLength('kaelio-ktx-runtime-wheel'),
|
|
},
|
|
});
|
|
} finally {
|
|
await rm(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
});
|
|
|
|
describe('verifyNpmArtifacts', () => {
|
|
it('does not prepare an external Python environment for the npm smoke', async () => {
|
|
const source = await readFile(new URL('./package-artifacts.mjs', import.meta.url), 'utf8');
|
|
const start = source.indexOf('async function verifyNpmArtifacts');
|
|
const end = source.indexOf('async function verifyNpmCliArtifacts');
|
|
assert.ok(start > 0, 'verifyNpmArtifacts function must exist');
|
|
assert.ok(end > start, 'verifyNpmCliArtifacts must follow verifyNpmArtifacts');
|
|
|
|
const body = source.slice(start, end);
|
|
assert.doesNotMatch(body, /uv', \['venv', '\.venv'\]/);
|
|
assert.doesNotMatch(body, /pythonArtifactInstallArgs/);
|
|
assert.doesNotMatch(body, /npmSmokePythonEnv/);
|
|
});
|
|
});
|
|
|
|
describe('standalone Python artifact cleanup', () => {
|
|
it('does not build or verify standalone Python package artifacts', async () => {
|
|
const source = await readFile(new URL('./package-artifacts.mjs', import.meta.url), 'utf8');
|
|
|
|
assert.doesNotMatch(source, /uv', \['build', '--package', 'ktx-sl'/);
|
|
assert.doesNotMatch(source, /uv', \['build', '--package', 'ktx-daemon'/);
|
|
assert.doesNotMatch(source, /async function verifyPythonArtifacts/);
|
|
assert.doesNotMatch(source, /pythonArtifactInstallArgs/);
|
|
assert.doesNotMatch(source, /pythonVerifySource/);
|
|
assert.doesNotMatch(source, /ktx_sl-0\.1\.0/);
|
|
assert.doesNotMatch(source, /ktx_daemon-0\.1\.0/);
|
|
});
|
|
});
|
|
|
|
describe('verification snippets', () => {
|
|
it('pins the smoke project to the public package artifact', () => {
|
|
const layout = packageArtifactLayout('/repo/ktx', PUBLIC_NPM_PACKAGE_VERSION);
|
|
|
|
const packageJson = npmSmokePackageJson(layout);
|
|
assert.deepEqual(packageJson.dependencies, {
|
|
'@kaelio/ktx': `file:${layout.cliTarball}`,
|
|
});
|
|
assert.equal(packageJson.devDependencies, undefined);
|
|
assert.equal(
|
|
npmSmokePnpmWorkspaceYaml(),
|
|
['packages:', ' - "."', 'allowBuilds:', ' better-sqlite3: true', ''].join('\n'),
|
|
);
|
|
});
|
|
|
|
it('exposes manifest verification as a package artifact command', async () => {
|
|
const source = await readFile(new URL('./package-artifacts.mjs', import.meta.url), 'utf8');
|
|
const packageJson = JSON.parse(await readFile(new URL('../package.json', import.meta.url), 'utf8'));
|
|
|
|
assert.match(source, /if \(command === 'verify-manifest'\)/);
|
|
assert.match(source, /await verifyArtifactManifest\(layout\)/);
|
|
assert.equal(packageJson.scripts['artifacts:verify-demo'], 'node scripts/package-artifacts.mjs verify-demo');
|
|
assert.equal(packageJson.scripts['artifacts:verify-manifest'], 'node scripts/package-artifacts.mjs verify-manifest');
|
|
});
|
|
|
|
it('asserts the public npm entry point that clean installs must expose', () => {
|
|
const verifySource = npmVerifySource();
|
|
|
|
assert.match(verifySource, /const cli = await import\('@kaelio\/ktx'\);/);
|
|
assert.match(verifySource, /getKtxCliPackageInfo/);
|
|
assert.match(verifySource, /runKtxCli/);
|
|
assert.doesNotMatch(verifySource, /@ktx\/context/);
|
|
assert.doesNotMatch(verifySource, /@ktx\/llm/);
|
|
assert.doesNotMatch(verifySource, /@ktx\/connector-/);
|
|
});
|
|
|
|
it('runs installed CLI commands through the public package runtime', () => {
|
|
const source = npmRuntimeSmokeSource();
|
|
|
|
assert.match(source, /ktx public package version/);
|
|
assert.match(source, /installedPackageVersionPattern/);
|
|
assert.doesNotMatch(source, /@kaelio\\\/ktx 0\\\.1\\\.0/);
|
|
assert.match(source, /'ktx', 'sl', 'query'/);
|
|
assert.doesNotMatch(source, /@ktx\/context/);
|
|
assert.doesNotMatch(source, /@modelcontextprotocol/);
|
|
assert.doesNotMatch(source, /startSemanticDaemon/);
|
|
assert.match(source, /run\('pnpm', \[\s*'exec',\s*'ktx',\s*'setup'/);
|
|
assert.match(source, /wiki', 'global', 'revenue\.md'/);
|
|
assert.match(source, /run\('pnpm', \[\s*'exec',\s*'ktx',\s*'wiki',\s*'revenue'/);
|
|
assert.match(source, /semantic-layer', 'warehouse', 'orders\.yaml'/);
|
|
assert.match(source, /run\('pnpm', \[\s*'exec',\s*'ktx',\s*'sl',\s*'orders'/);
|
|
assert.match(source, /orders\.order_count/);
|
|
assert.match(source, /node:sqlite/);
|
|
assert.match(source, /driver: sqlite/);
|
|
assert.match(source, /path: warehouse\.db/);
|
|
assert.doesNotMatch(source, /live-database/);
|
|
assert.match(source, /'--execute'/);
|
|
assert.match(source, /"mode": "compile_only"/);
|
|
assert.match(source, /"mode": "executed"/);
|
|
assert.match(source, /ktx sl query sqlite execute/);
|
|
assert.match(source, /import \{ DatabaseSync \} from 'node:sqlite'/);
|
|
assert.doesNotMatch(source, /run\('python'/);
|
|
assert.match(source, /KTX_RUNTIME_ROOT/);
|
|
assert.match(source, /managed-runtime/);
|
|
assert.match(source, /ktx admin runtime status missing/);
|
|
assert.match(source, /runtimeStatusBefore\.kind, 'missing'/);
|
|
assert.ok(source.includes(String.raw`Installing KTX Python runtime \(core\) with uv`));
|
|
assert.match(source, /KTX Python runtime ready:/);
|
|
assert.match(source, /ktx admin runtime status ready/);
|
|
assert.match(source, /runtimeStatusAfter\.kind, 'ready'/);
|
|
assert.match(source, /runtimeStatusAfter\.manifest\.features/);
|
|
assert.match(source, /ktx admin runtime status/);
|
|
assert.match(source, /status: ready/);
|
|
assert.match(source, /ktx admin runtime start/);
|
|
assert.match(source, /ktx admin runtime start reuse/);
|
|
assert.match(source, /Using existing KTX daemon/);
|
|
assert.match(source, /ktx admin runtime stop/);
|
|
assert.doesNotMatch(source, /ktx admin runtime prune/);
|
|
assert.doesNotMatch(source, /staleRuntimeDir/);
|
|
assert.match(source, /run\('pnpm', \[\s*'exec',\s*'ktx',\s*'ingest',\s*'warehouse'/);
|
|
assert.match(source, /'--deep'/);
|
|
assert.doesNotMatch(source, /'--enrich'/);
|
|
assert.match(source, /ktx ingest fast verified/);
|
|
assert.match(source, /ktx ingest deep readiness guard verified/);
|
|
assert.match(source, /enrichment:/);
|
|
assert.match(source, /mode: deterministic/);
|
|
assert.doesNotMatch(source, /run\('pnpm', \['exec', 'ktx', 'ingest', 'run'/);
|
|
assert.match(source, /access\(join\(projectDir, '\.ktx', 'db\.sqlite'\)\)/);
|
|
assert.match(source, /SQLite wiki index/);
|
|
assert.doesNotMatch(source, /ktx ingest run requires llm\\.provider\\.backend: anthropic, vertex, or gateway/);
|
|
assert.match(source, /ktx ingest state verified/);
|
|
});
|
|
|
|
describe('npmCliSmokeSource', () => {
|
|
it('exercises supported public package CLI commands', () => {
|
|
const source = npmCliSmokeSource();
|
|
|
|
assert.match(source, /pnpm', \['exec', 'ktx', '--help'\]/);
|
|
assert.match(source, /pnpm', \['exec', 'ktx', 'setup', '--help'\]/);
|
|
assert.match(source, /Usage: ktx setup/);
|
|
assert.doesNotMatch(source, new RegExp(["'demo'", "'--mode'", "'deterministic'"].join(', ')));
|
|
assert.match(source, /'status', '--verbose', '--no-input'/);
|
|
assert.match(source, /KTX status/);
|
|
assert.match(source, /No project here yet/);
|
|
assert.doesNotMatch(source, /function requireProjectStderr/);
|
|
assert.match(source, /Object\.keys\(packageJson\.dependencies\)/);
|
|
assert.match(source, /'@kaelio\/ktx'/);
|
|
});
|
|
});
|
|
});
|