mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 00:02:31 +00:00
* docs: full design + context for agent status over WSL (STA-1515) Why hooks don't work on Windows+WSL (loopback transport gap + WSL-side installation gap), per-client transport map, the OMP-only fixes that shipped (7642/7641) and why they don't generalize, the recommended guest-resident relay over wsl.exe stdio mirroring the SSH relay plus WSL-side hook installers, alternatives considered, validation facts and gotchas from the 2026-07-08 Windows rig run, and acceptance criteria. Co-authored-by: Orca <help@stably.ai> * feat(agent-hooks): agent status over WSL — guest relay + WSL-side hook installers (STA-1515) Agent hooks have never worked from inside WSL: under default NAT networking, WSL's 127.0.0.1 is its own loopback, so every hook POST to the Windows listener dies silently, and hook configs were only ever written to the Windows home where WSL agents never see them. Transport: a hooks-only guest relay (src/relay/wsl-agent-hook-relay.ts) runs inside the distro, binds WSL loopback on the very port the clients were already given (host-issued token; EADDRINUSE falls back to :0 with endpoint-file re-coordination, which also covers mirrored networking), and forwards parsed envelopes over its own wsl.exe stdio into agentHookServer.ingestRemote — the same shape as the SSH relay. It exits when stdin closes so a freed Windows port can never be forwarded into a dead guest listener. Installation: the unchanged SSH remote hook installers run against an SFTP-shaped adapter whose primitives are home-scoped fs RPCs served by the relay, so all 14 managed agents' hooks land in the WSL home over the already-open channel with zero per-file wsl.exe spawns. Lifecycle: per-distro manager ensured from buildPtyHostEnv on every WSL PTY spawn (covers post-restart daemon reattach re-spawns), stale-bundle reinstall via exit 42, no-node-43 cooldown, bounded retry for wsl.exe 'Catastrophic failure (E_UNEXPECTED)', breadcrumbed failures. Zero per-client transport changes; listener stays Windows-loopback-only. Co-authored-by: Orca <help@stably.ai> * fix(agent-hooks): WSL relay link-death recovery + Codex runtime-home hook install (STA-1515) Follow-ups from the first Windows-rig validation of PR #7903: Link death: a mux protocol error or keepalive timeout could kill the host<->guest link while the guest relay stayed alive returning 204s — the manager stayed 'running' and every later envelope blackholed silently (the exact observed signature: Claude hooks POST 204, store never populates). wsl-hook-relay-link.ts now guarantees exactly-once death handling from either signal (mux dispose OR child exit); the manager breadcrumbs it, kills the child, and self-restarts after a short cooldown since a live agent session produces no new PTY spawns to re-trigger ensure. ORCA_WSL_HOOK_RELAY_DEBUG=1 traces each received envelope pre-ingest. A live integration test pins the full host chain: the real esbuild bundle over real child stdio through the real manager into a real AgentHookServer.ingestRemote, exact Claude POST shape. Codex: Orca launches WSL Codex with CODEX_HOME redirected to the managed runtime home (~/.local/share/orca/codex-runtime-home/home), so hooks installed to ~/.codex were never read. installRemote now accepts an explicit codex home (flat layout), threaded from the relay manager; the config.toml trust write is deferred while the file doesn't exist (the launch path seeds it only-if-absent — creating it first would cancel the seed), and the manager re-runs the byte-equality-idempotent installers on later ensures (30s throttle) to upsert trust once the seed lands. Also: WSL test suites now run on Windows dev hosts (fs-backed suites skip with rig coverage noted; manager suite uses a fixed POSIX home). Co-authored-by: Orca <help@stably.ai> * fix(agent-hooks): renderer ownership gate treats wsl:* connection ids as local (STA-1515) Round-2 rig finding: with the link fixed, WSL hook envelopes reached ingestRemote and the durable cache, but useIpcEvents.applyAgentStatus drops any status whose stamped connectionId differs from the owning repo's — 'wsl:<distro>' !== null for a local repo, so every WSL-relayed status died before setAgentStatus and notifications. wsl:* ids are transport provenance, not ownership: the gate now normalizes them to local via isWslHookRelayConnectionId (shared contract, also used by the relay link when stamping), while still rejecting WSL-stamped events against SSH-owned repos. Provenance stays stamped — it is what made this drop diagnosable. Co-authored-by: Orca <help@stably.ai> * fix(agent-hooks): adversarial-review hardening for the WSL hook relay (STA-1515) Four independent review lenses over the branch; all confirmed findings fixed before the next rig round: Endpoint identity (4/4 reviewers): the guest endpoint dir was keyed by the EPHEMERAL Windows hook port, so a daemon-surviving agent kept sourcing the dead port-P1 file after an Orca restart — breaking the restart-resume acceptance criterion and regressing shipped OMP recovery. Now keyed by a restart-stable instance key (hash of the Windows endpoint file path, crossed via ORCA_WSL_HOOK_INSTANCE): the restarted instance's relay rewrites the SAME file, which is exactly what re-coordinates survivors. Restart policy: every failure arms the restart timer (one failed relaunch no longer ends self-recovery), and the timer probes wsl --list --running first — wsl -d BOOTS a stopped distro, so recovery must never resurrect a VM the user shut down; stopped-distro state is dropped instead. Failure counters reset only after 2min of stable uptime, so connect-then-die loops escalate to the 10-min cap instead of cycling every 10s. Timer policy extracted to wsl-hook-relay-recovery.ts with direct tests. Also: version-namespaced guest install dir (dev+prod instances no longer reinstall over each other; PID-suffixed tmp files), 30s install timeout (a wedged wsl.exe could pin the state machine at 'starting' forever), per-candidate node version probing (apt node 12 on PATH no longer masks nvm node 20 into a false no-node cooldown), WSL_UTF8=1 + NUL-stripped stderr (catastrophic-failure matcher survives UTF-16LE), ordered post-sentinel chunk handoff, port-fallback breadcrumb via the home handshake, bad home reply now fails the connect, missing-bundle warn-once, case-normalized distro keys, disposeAll wired to will-quit, one-shot 60s reinstall timer for single-spawn Codex trust catch-up, escaped + contract-derived spawn command. Co-authored-by: Orca <help@stably.ai> * docs: record round-3 rig validation status for agent status over WSL (STA-1515) Co-authored-by: Orca <help@stably.ai> * fix(agent-hooks): round-4 adversarial-review fixes for the WSL hook relay (STA-1515) - dropState identity race: recovery re-checks state identity after the distro-running probe await, and the manager's dropState only deletes the exact state it was armed for — an ensure() landing mid-probe can no longer have its fresh relay orphaned outside the map. - Distro-running probe fails CLOSED: a probe error no longer reports 'running', so recovery can never wsl-d-boot a distro the user shut down. - Relay spawns use --exec: bypasses the distro's default login shell (fish/nushell chsh) and passes argv verbatim, dropping the $-escape shim; same form as the Codex WSL login spawn. - Post-sentinel chunk handoff rides a microtask so an envelope in the trailing bytes can no longer dispatch before the link's notification handler is registered. - Guest relay mirrors the SSH relay's uncaughtException/unhandledRejection posture. - Replay cache capped at 256 panes with recency eviction (the WSL relay has no per-pane teardown signal); meta map kept in lockstep. - Launch script derives the stale-exit code from the shared contract constant; one-shot reinstall timer refuses to arm after dispose. - New oracles: sentinel unit suite, fs-bridge scoping suite, fixed-token 403/204, EADDRINUSE endpoint-file rewrite, cache-cap eviction, and the recovery/manager race regressions (verified to fail with fixes reverted). - Doc: round-4 review section + revised curl.exe stance (kept as the no-node fallback — Codex is a native binary; fresh distros ship no node). * docs: record round-4 pinned rig validation for agent status over WSL (STA-1515) --------- Co-authored-by: Orca <help@stably.ai> Co-authored-by: Brennan Benson <brennanbenson@Brennans-MacBook-Pro.local>
382 lines
14 KiB
TypeScript
382 lines
14 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs'
|
|
import { homedir, tmpdir } from 'node:os'
|
|
import { join } from 'node:path'
|
|
import { endpointDirForRelaySocket, RelayAgentHookServer } from './agent-hook-server'
|
|
import type { AgentHookRelayEnvelope } from '../shared/agent-hook-relay'
|
|
import { makePaneKey } from '../shared/stable-pane-id'
|
|
|
|
const LEAF_ID = '11111111-1111-4111-8111-111111111111'
|
|
const PANE_KEY = makePaneKey('tab-1', LEAF_ID)
|
|
|
|
describe('RelayAgentHookServer', () => {
|
|
let dir: string
|
|
beforeEach(() => {
|
|
dir = mkdtempSync(join(tmpdir(), 'relay-hook-server-'))
|
|
})
|
|
afterEach(() => {
|
|
rmSync(dir, { recursive: true, force: true })
|
|
})
|
|
|
|
it('scopes endpoint files by relay socket path', () => {
|
|
const first = endpointDirForRelaySocket(join(dir, 'relay-a.sock'))
|
|
const second = endpointDirForRelaySocket(join(dir, 'relay-b.sock'))
|
|
|
|
expect(first).toBe(join(dir, 'agent-hooks', 'relay-a.sock'))
|
|
expect(second).toBe(join(dir, 'agent-hooks', 'relay-b.sock'))
|
|
expect(first).not.toBe(second)
|
|
})
|
|
|
|
it('keeps named-pipe endpoint files on a real filesystem path', () => {
|
|
const endpointDir = endpointDirForRelaySocket('\\\\.\\pipe\\orca-relay-abc123')
|
|
|
|
expect(endpointDir).toBe(join(homedir(), '.orca-relay', 'agent-hooks', 'orca-relay-abc123'))
|
|
expect(endpointDir).not.toContain('\\\\.\\pipe')
|
|
})
|
|
|
|
it('forwards a parsed Claude UserPromptSubmit POST as a normalized envelope', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
const res = await fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
worktreeId: 'wt-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hook_event_name: 'UserPromptSubmit', prompt: 'hi' }
|
|
})
|
|
})
|
|
expect(res.status).toBe(204)
|
|
expect(forward).toHaveBeenCalledTimes(1)
|
|
const envelope = forward.mock.calls[0][0]
|
|
expect(envelope.source).toBe('claude')
|
|
expect(envelope.paneKey).toBe(PANE_KEY)
|
|
expect(envelope.tabId).toBe('tab-1')
|
|
expect(envelope.connectionId).toBeNull()
|
|
expect(envelope.payload.state).toBe('working')
|
|
expect(envelope.payload.prompt).toBe('hi')
|
|
// Why: the relay forwards body env/version so Orca's warn-once
|
|
// protocol diagnostics and remote-location marker survive the wire.
|
|
expect(envelope.env).toBe('remote')
|
|
expect(envelope.version).toBe('1')
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('rejects requests with the wrong bearer token (403)', async () => {
|
|
const forward = vi.fn()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port } = server.getCoordinates()
|
|
const res = await fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': 'wrong'
|
|
},
|
|
body: '{}'
|
|
})
|
|
expect(res.status).toBe(403)
|
|
expect(forward).not.toHaveBeenCalled()
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('replays cached payloads on demand', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
await fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hook_event_name: 'UserPromptSubmit', prompt: 'cache me' }
|
|
})
|
|
})
|
|
forward.mockClear()
|
|
const replayed = server.replayCachedPayloadsForPanes()
|
|
expect(replayed).toBe(1)
|
|
expect(forward).toHaveBeenCalledTimes(1)
|
|
expect(forward.mock.calls[0][0].payload.prompt).toBe('cache me')
|
|
// Why: replay must preserve the wire envelope's env/version (and source)
|
|
// so protocol diagnostics and the remote-location marker survive replay.
|
|
expect(forward.mock.calls[0][0].source).toBe('claude')
|
|
expect(forward.mock.calls[0][0].env).toBe('remote')
|
|
expect(forward.mock.calls[0][0].version).toBe('1')
|
|
expect(forward.mock.calls[0][0].isReplay).toBe(true)
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('does not replay paneKeys after clearPaneState', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
await fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
payload: { hook_event_name: 'UserPromptSubmit', prompt: 'gone' }
|
|
})
|
|
})
|
|
server.clearPaneState(PANE_KEY)
|
|
forward.mockClear()
|
|
const replayed = server.replayCachedPayloadsForPanes()
|
|
expect(replayed).toBe(0)
|
|
expect(forward).not.toHaveBeenCalled()
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
// Why: the relay should still drop malformed HTTP events before they reach
|
|
// the wire, even though Orca main re-validates at the SSH trust boundary.
|
|
it('does not forward when normalizeHookPayload rejects the event', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
const res = await fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: 'tab-1:0',
|
|
tabId: 'tab-1',
|
|
worktreeId: 'wt-1',
|
|
// Why: bogus hook_event_name — normalizeClaudeEvent returns null for
|
|
// any value outside its known set, which propagates up so
|
|
// normalizeHookPayload returns null.
|
|
payload: { hook_event_name: 'BogusEvent', prompt: 'ignored' }
|
|
})
|
|
})
|
|
// Why: hook server fails open with 204 even on rejected input — the
|
|
// contract is "never block the agent", not "tell the agent it lost".
|
|
expect(res.status).toBe(204)
|
|
expect(forward).not.toHaveBeenCalled()
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('exposes ORCA_AGENT_HOOK_* env vars after start', async () => {
|
|
const forward = vi.fn()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const env = server.buildPtyEnv()
|
|
expect(env.ORCA_AGENT_HOOK_PORT).toMatch(/^\d+$/)
|
|
expect(env.ORCA_AGENT_HOOK_TOKEN).toBeTruthy()
|
|
expect(env.ORCA_AGENT_HOOK_ENV).toBe('remote')
|
|
expect(env.ORCA_AGENT_HOOK_VERSION).toBe('1')
|
|
expect(env.ORCA_AGENT_HOOK_ENDPOINT).toBeTruthy()
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('can defer endpoint file publication until relay socket ownership is proven', async () => {
|
|
const forward = vi.fn()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start({ publishEndpoint: false })
|
|
try {
|
|
expect(server.buildPtyEnv().ORCA_AGENT_HOOK_ENDPOINT).toBeUndefined()
|
|
expect(server.publishEndpointFile()).toBe(true)
|
|
expect(server.buildPtyEnv().ORCA_AGENT_HOOK_ENDPOINT).toBeTruthy()
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('keeps Copilot transcript retry alive across a following SessionEnd event', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
const transcriptPath = join(dir, 'events.jsonl')
|
|
writeFileSync(transcriptPath, '')
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
await fetch(`http://127.0.0.1:${port}/hook/copilot`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hook_event_name: 'Stop', transcriptPath }
|
|
})
|
|
})
|
|
await fetch(`http://127.0.0.1:${port}/hook/copilot`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hook_event_name: 'SessionEnd', reason: 'complete' }
|
|
})
|
|
})
|
|
expect(forward.mock.calls.at(-1)?.[0].payload.lastAssistantMessage).toBeUndefined()
|
|
|
|
writeFileSync(
|
|
transcriptPath,
|
|
`${JSON.stringify({
|
|
type: 'assistant.message',
|
|
data: { content: 'Relay transcript completed.' }
|
|
})}\n`
|
|
)
|
|
await new Promise((resolve) => setTimeout(resolve, 120))
|
|
|
|
expect(forward.mock.calls.at(-1)?.[0].payload.lastAssistantMessage).toBe(
|
|
'Relay transcript completed.'
|
|
)
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
})
|
|
|
|
it('retries Grok chat history on the relay without blocking the hook POST', async () => {
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
const sessionId = '019e37f4-5135-7b63-a4ab-6d13aa6bf528'
|
|
const cwd = join(dir, 'workspace')
|
|
const sessionDir = join(dir, '.grok', 'sessions', encodeURIComponent(cwd), sessionId)
|
|
mkdirSync(sessionDir, { recursive: true })
|
|
writeFileSync(join(sessionDir, 'chat_history.jsonl'), '')
|
|
vi.stubEnv('HOME', dir)
|
|
vi.stubEnv('USERPROFILE', dir)
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
await fetch(`http://127.0.0.1:${port}/hook/grok`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hookEventName: 'user_prompt_submit', prompt: 'hihi' }
|
|
})
|
|
})
|
|
const response = await fetch(`http://127.0.0.1:${port}/hook/grok`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey: PANE_KEY,
|
|
tabId: 'tab-1',
|
|
env: 'remote',
|
|
version: '1',
|
|
payload: { hookEventName: 'Stop', sessionId, cwd }
|
|
})
|
|
})
|
|
|
|
expect(response.status).toBe(204)
|
|
expect(forward.mock.calls.at(-1)?.[0].payload.lastAssistantMessage).toBeUndefined()
|
|
|
|
writeFileSync(
|
|
join(sessionDir, 'chat_history.jsonl'),
|
|
`${JSON.stringify({ type: 'assistant', content: 'Relay Grok reply.' })}\n`
|
|
)
|
|
await new Promise((resolve) => setTimeout(resolve, 120))
|
|
|
|
expect(forward.mock.calls.at(-1)?.[0].payload.lastAssistantMessage).toBe('Relay Grok reply.')
|
|
} finally {
|
|
server.stop()
|
|
vi.unstubAllEnvs()
|
|
}
|
|
})
|
|
|
|
it('caps the replay cache at 256 panes, evicting the least-recently-updated', async () => {
|
|
// Mirrors the server's private MAX_CACHED_PANES. The WSL relay never gets a
|
|
// per-pane teardown signal, so the cache is recency-capped instead.
|
|
const CAP = 256
|
|
const forward = vi.fn<(envelope: AgentHookRelayEnvelope) => void>()
|
|
const server = new RelayAgentHookServer({ endpointDir: dir, forward })
|
|
await server.start()
|
|
try {
|
|
const { port, token } = server.getCoordinates()
|
|
const paneKeyFor = (i: number): string => makePaneKey(`tab-${i}`, LEAF_ID)
|
|
const postPane = (paneKey: string): Promise<Response> =>
|
|
fetch(`http://127.0.0.1:${port}/hook/claude`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'X-Orca-Agent-Hook-Token': token
|
|
},
|
|
body: JSON.stringify({
|
|
paneKey,
|
|
payload: { hook_event_name: 'UserPromptSubmit', prompt: 'p' }
|
|
})
|
|
})
|
|
|
|
// Fill the cache to exactly the cap in insertion order 0..CAP-1. Sequential
|
|
// awaits pin Map order = update recency, which the eviction relies on.
|
|
for (let i = 0; i < CAP; i++) {
|
|
await postPane(paneKeyFor(i))
|
|
}
|
|
// Refresh the OLDEST pane just before overflow, then push one more pane.
|
|
// Recency (not insertion) order must now evict pane 1, sparing pane 0.
|
|
await postPane(paneKeyFor(0))
|
|
await postPane(paneKeyFor(CAP))
|
|
|
|
forward.mockClear()
|
|
const replayed = server.replayCachedPayloadsForPanes()
|
|
expect(replayed).toBe(CAP)
|
|
|
|
const cachedPaneKeys = new Set(forward.mock.calls.map((call) => call[0].paneKey))
|
|
expect(cachedPaneKeys.size).toBe(CAP)
|
|
expect(cachedPaneKeys.has(paneKeyFor(0))).toBe(true)
|
|
expect(cachedPaneKeys.has(paneKeyFor(CAP))).toBe(true)
|
|
expect(cachedPaneKeys.has(paneKeyFor(1))).toBe(false)
|
|
} finally {
|
|
server.stop()
|
|
}
|
|
}, 30_000)
|
|
})
|