Convert the app's main and preload source from .js to .ts (git mv preserves history), adding types where they carry value: the core-consumption seam (BuildIndexOptions/BuildIndexResult, FileInfo), the indexer service/worker factories, and the preload IPC bridge. Module-to-module specifiers use the real .ts extension (mirroring scripts/, since Node type-stripping does not rewrite .js->.ts); the worker's runtime path stays indexer-worker.js because that is the built output. Toolchain: - Add app/tsconfig.json: strict but noImplicitAny:false (the app orchestrates the already-strict core; annotating every SQLite-handle helper is low-value churn) + allowImportingTsExtensions (safe under noEmit). - Add @types/better-sqlite3 for the injected binding. - electron.vite.config.ts inputs -> .ts; refresh the stale CommonJS comment. - typecheck script runs root + app projects. Root tsconfig excludes the app-importing tests (app-*.test.mjs, recap-capture-query.test.mjs) so the lenient app files are not dragged into the strict root program; the app source is covered by app/tsconfig.json instead. See docs/adr/0005. Verified: npm run typecheck (root + app) clean; suite 121/121; electron-vite build emits all 6 main entries + preload with no .ts/node:sqlite residue in the bundles. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
75 lines
1.9 KiB
JavaScript
75 lines
1.9 KiB
JavaScript
import { test } from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { createRequire } from 'node:module';
|
|
|
|
const require = createRequire(import.meta.url);
|
|
import { createWorkerBuildIndex } from '../app/src/main/indexer-worker-client.ts';
|
|
|
|
test('worker build client resolves build results from a worker thread', async () => {
|
|
const instances = [];
|
|
class MockWorker {
|
|
constructor(workerPath) {
|
|
this.workerPath = workerPath;
|
|
this.handlers = {};
|
|
this.messages = [];
|
|
this.terminated = false;
|
|
instances.push(this);
|
|
}
|
|
|
|
on(event, handler) {
|
|
this.handlers[event] = handler;
|
|
return this;
|
|
}
|
|
|
|
postMessage(message) {
|
|
this.messages.push(message);
|
|
queueMicrotask(() => {
|
|
this.handlers.message({
|
|
id: message.id,
|
|
result: { files: 1, reason: message.args.reason },
|
|
});
|
|
});
|
|
}
|
|
|
|
terminate() {
|
|
this.terminated = true;
|
|
}
|
|
}
|
|
|
|
const client = createWorkerBuildIndex({ WorkerImpl: MockWorker, workerPath: '/tmp/indexer-worker.js' });
|
|
const result = await client.buildIndex({ reason: 'watch' });
|
|
|
|
assert.equal(instances.length, 1);
|
|
assert.equal(instances[0].workerPath, '/tmp/indexer-worker.js');
|
|
assert.deepEqual(result, { files: 1, reason: 'watch' });
|
|
|
|
client.stop();
|
|
assert.equal(instances[0].terminated, true);
|
|
});
|
|
|
|
test('worker build client rejects pending builds when worker exits cleanly', async () => {
|
|
class MockWorker {
|
|
constructor() {
|
|
this.handlers = {};
|
|
}
|
|
|
|
on(event, handler) {
|
|
this.handlers[event] = handler;
|
|
return this;
|
|
}
|
|
|
|
postMessage() {
|
|
queueMicrotask(() => {
|
|
this.handlers.exit(0);
|
|
});
|
|
}
|
|
}
|
|
|
|
const client = createWorkerBuildIndex({ WorkerImpl: MockWorker, workerPath: '/tmp/indexer-worker.js' });
|
|
|
|
await assert.rejects(
|
|
client.buildIndex({ reason: 'startup' }),
|
|
/Indexer worker exited with code 0/,
|
|
);
|
|
});
|