Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import { readFileSync } from 'node:fs';
|
|
import test from 'node:test';
|
|
|
|
import { createLatestPayloadSync } from './useExternalMcpSessionSync.ts';
|
|
|
|
const hookSource = readFileSync(new URL('./useExternalMcpSessionSync.ts', import.meta.url), 'utf8');
|
|
const appSource = readFileSync(new URL('../app/AppSideEffects.tsx', import.meta.url), 'utf8');
|
|
const preloadSource = readFileSync(new URL('../../electron/preload/api.cjs', import.meta.url), 'utf8');
|
|
const handlerSource = readFileSync(
|
|
new URL('../../electron/bridges/aiBridge/agentProcessHandlers.cjs', import.meta.url),
|
|
'utf8',
|
|
);
|
|
|
|
test('app live session sync stays mounted and is independent of External MCP enablement', () => {
|
|
assert.match(appSource, /useExternalMcpSessionSync\(\{/);
|
|
assert.match(hookSource, /bridge\.aiMcpUpdateLiveSessions\?\.\(nextPayload\)/);
|
|
assert.match(hookSource, /liveSyncRef\.current\.push\(payload, serialized\)/);
|
|
assert.match(hookSource, /bridge\.aiMcpUpdateSessions\?\.\(/);
|
|
assert.match(hookSource, /externalSyncRef\.current\.push\(payload, serialized\)/);
|
|
assert.doesNotMatch(
|
|
hookSource,
|
|
/if \(!enabled\)[\s\S]{0,300}aiMcpUpdateLiveSessions/,
|
|
);
|
|
});
|
|
|
|
test('live session sync has a complete renderer to main-process IPC path', () => {
|
|
assert.match(preloadSource, /netcatty:ai:mcp:update-live-sessions/);
|
|
assert.match(handlerSource, /netcatty:ai:mcp:update-live-sessions/);
|
|
assert.match(handlerSource, /mcpServerBridge\.updateLiveSessionMetadata/);
|
|
});
|
|
|
|
test('latest payload sync converges to A-B-A while B is in flight', async () => {
|
|
let releaseB: (() => void) | undefined;
|
|
const sent: string[] = [];
|
|
const sync = createLatestPayloadSync(async (payload: string) => {
|
|
sent.push(payload);
|
|
if (payload === 'B') {
|
|
await new Promise<void>((resolve) => {
|
|
releaseB = resolve;
|
|
});
|
|
}
|
|
return { ok: true };
|
|
});
|
|
|
|
await sync.push('A');
|
|
const sendingB = sync.push('B');
|
|
void sync.push('A');
|
|
releaseB?.();
|
|
await sendingB;
|
|
|
|
assert.deepEqual(sent, ['A', 'B', 'A']);
|
|
});
|
|
|
|
test('cancelling a payload sync drops a queued update', async () => {
|
|
let releaseA: (() => void) | undefined;
|
|
const sent: string[] = [];
|
|
const sync = createLatestPayloadSync(async (payload: string) => {
|
|
sent.push(payload);
|
|
if (payload === 'A') {
|
|
await new Promise<void>((resolve) => {
|
|
releaseA = resolve;
|
|
});
|
|
}
|
|
return { ok: true };
|
|
});
|
|
|
|
const sendingA = sync.push('A');
|
|
void sync.push('B');
|
|
sync.cancel();
|
|
releaseA?.();
|
|
await sendingA;
|
|
|
|
assert.deepEqual(sent, ['A']);
|
|
});
|