fix(companion): reject pending event waits on teardown

This commit is contained in:
William Valentin
2026-02-16 19:26:04 -08:00
parent a76e3e03dc
commit f7c6947d22
4 changed files with 56 additions and 2 deletions
+1 -1
View File
@@ -1190,7 +1190,7 @@ Methods:
- `system.capabilities` returns gateway protocol and node policy snapshot.
Companion runtime helper:
- `src/companion/runtimeClient.ts` provides a typed Node/WebSocket client for companion runtimes (macOS/iOS/Android workers) with wrappers for `node.register`, `node.capabilities.get`, `node.location.set/get`, `node.status.set`, `node.push_token.set`, `system.capabilities`, `system.nodes`, and canvas artifact RPCs (`canvas.put/get/list/delete/clear`), plus convenience helpers (`bootstrapNode`, optional `autoConnect`, `dispose()`) and event helpers (`subscribeEvents()`, `subscribeEvent()`, `subscribeAgentStream()`, `subscribeAgentTyping()`, `subscribeContextWarning()`, `waitForEvent()` with timeout/predicate/abort support, `waitForAgentStream()`, `waitForAgentTyping()`, `waitForContextWarning()`, `clearEventSubscriptions()`).
- `src/companion/runtimeClient.ts` provides a typed Node/WebSocket client for companion runtimes (macOS/iOS/Android workers) with wrappers for `node.register`, `node.capabilities.get`, `node.location.set/get`, `node.status.set`, `node.push_token.set`, `system.capabilities`, `system.nodes`, and canvas artifact RPCs (`canvas.put/get/list/delete/clear`), plus convenience helpers (`bootstrapNode`, optional `autoConnect`, `dispose()`) and event helpers (`subscribeEvents()`, `subscribeEvent()`, `subscribeAgentStream()`, `subscribeAgentTyping()`, `subscribeContextWarning()`, `waitForEvent()` with timeout/predicate/abort support and deterministic teardown cancellation, `waitForAgentStream()`, `waitForAgentTyping()`, `waitForContextWarning()`, `clearEventSubscriptions()`).
- `src/companion/platformClients.ts` provides platform-focused wrappers:
- `MacOSCompanionClient` (`platform: "macos"`, APNs push registration)
- `IOSCompanionClient` (`platform: "ios"`, APNs push registration)
+13
View File
@@ -580,6 +580,19 @@
],
"test_status": "pnpm test:run src/companion/platformClients.test.ts src/companion/runtimeClient.test.ts src/companion/heartbeatLoop.test.ts src/companion/platformClients.integration.test.ts + pnpm typecheck passing"
},
"companion-runtime-waiter-teardown-rejection": {
"status": "completed",
"date": "2026-02-17",
"updated": "2026-02-17",
"summary": "Hardened `waitForEvent()` lifecycle semantics by rejecting pending waiters immediately on teardown paths (`disconnect`, `dispose`, `clearEventSubscriptions`) instead of waiting for timeout.",
"files_modified": [
"src/companion/runtimeClient.ts",
"src/companion/runtimeClient.test.ts",
"README.md",
"docs/plans/state.json"
],
"test_status": "pnpm test:run src/companion/runtimeClient.test.ts src/companion/platformClients.test.ts src/companion/heartbeatLoop.test.ts src/companion/platformClients.integration.test.ts + pnpm typecheck passing"
},
"browser-tools-activation-clarity": {
"status": "completed",
"date": "2026-02-17",
+24
View File
@@ -339,6 +339,30 @@ describe('CompanionRuntimeClient', () => {
await awaited;
});
it('waitForEvent rejects immediately when event subscriptions are cleared', async () => {
const client = new CompanionRuntimeClient({
url: 'ws://127.0.0.1:1',
});
const awaited = expect(
client.waitForEvent('agent.stream', { timeoutMs: 10_000 }),
).rejects.toThrow('Event subscriptions cleared');
client.clearEventSubscriptions();
await awaited;
});
it('waitForEvent rejects immediately on disconnect', async () => {
const client = new CompanionRuntimeClient({
url: 'ws://127.0.0.1:1',
});
const awaited = expect(
client.waitForEvent('agent.stream', { timeoutMs: 10_000 }),
).rejects.toThrow('Disconnected');
client.disconnect();
await awaited;
});
it('waitForAgentStream resolves on agent.stream events', async () => {
const client = new CompanionRuntimeClient({
url: 'ws://127.0.0.1:1',
+18 -1
View File
@@ -274,6 +274,7 @@ export class CompanionRuntimeClient {
private nextId = 1;
private pending = new Map<number, PendingRequest>();
private readonly eventHandlers = new Set<CompanionEventHandler>();
private readonly pendingEventWaits = new Set<(error: Error) => void>();
constructor(options: CompanionRuntimeClientOptions) {
const requestTimeoutMs = options.requestTimeoutMs ?? 15_000;
@@ -354,12 +355,14 @@ export class CompanionRuntimeClient {
disconnect(code?: number, reason?: string): void {
if (!this.ws) {
this.rejectEventWaits(new Error('Disconnected'));
return;
}
const ws = this.ws;
this.ws = null;
this.rejectAllPending(new Error('Disconnected'));
this.rejectEventWaits(new Error('Disconnected'));
ws.close(code, reason);
}
@@ -377,6 +380,7 @@ export class CompanionRuntimeClient {
clearEventSubscriptions(): void {
this.eventHandlers.clear();
this.rejectEventWaits(new Error('Event subscriptions cleared'));
}
subscribeEvent<TData = unknown>(
@@ -436,9 +440,15 @@ export class CompanionRuntimeClient {
abortCleanup();
abortCleanup = null;
}
this.pendingEventWaits.delete(cancelWait);
fn();
};
const cancelWait = (error: Error) => {
finish(() => reject(error));
};
this.pendingEventWaits.add(cancelWait);
const unsubscribe = this.subscribeEvent<TData>(eventName, (data) => {
if (predicate && !predicate(data)) {
return;
@@ -452,7 +462,7 @@ export class CompanionRuntimeClient {
if (signal) {
const onAbort = () => {
finish(() => reject(new Error(`Aborted while waiting for event ${eventName}`)));
cancelWait(new Error(`Aborted while waiting for event ${eventName}`));
};
signal.addEventListener('abort', onAbort, { once: true });
abortCleanup = () => {
@@ -697,6 +707,13 @@ export class CompanionRuntimeClient {
}
this.pending.clear();
}
private rejectEventWaits(error: Error): void {
for (const cancel of this.pendingEventWaits) {
cancel(error);
}
this.pendingEventWaits.clear();
}
}
function withToken(url: string, token?: string): string {