feat(plan): register the plan session-projection unit
plan-mode contributes the RFC's complete double-event example: command/run
records named plan set the wanted target (off -> false, else true),
plan/mode commits and clears it, and view derives {active, pending}.
Pending is thereby a pure replay quantity recovered from the log alone.
The plan key merges into SessionProjectionMap from src/types.ts, served
through the new ./types and ./client outlets (session-title template);
compositions without the registry are unaffected.
This commit is contained in:
130
packages/plan/plan-mode/tests/projection.spec.ts
Normal file
130
packages/plan/plan-mode/tests/projection.spec.ts
Normal file
@@ -0,0 +1,130 @@
|
||||
/**
|
||||
* The `plan` projection unit (session-projection RFC's complete example): a
|
||||
* double-event fold over the session log. `command/run` records named `plan`
|
||||
* set the wanted target (`off` → false, anything else → true); `plan/mode`
|
||||
* commits and clears it; `view` derives `{ active, pending }` where pending
|
||||
* is true only while an outstanding selection differs from the logged state.
|
||||
* Pending is thereby a pure replay quantity — a cold fold answers it without
|
||||
* the service's in-memory intent. Composition without plan-mode has no `plan`
|
||||
* key; unloading the fiber removes it (HMR safety).
|
||||
*/
|
||||
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import { Context } from 'cordis'
|
||||
import AgentRegistry from '@deepseek-ai/dsh-agent'
|
||||
import type { Agent } from '@deepseek-ai/dsh-agent'
|
||||
import { createUserMessage } from '@deepseek-ai/dsh-llm'
|
||||
import SessionStore from '@deepseek-ai/dsh-session'
|
||||
import type { Session } from '@deepseek-ai/dsh-session'
|
||||
import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
|
||||
import ToolRegistry from '@deepseek-ai/dsh-tools'
|
||||
import SessionProjectionRegistry from '@deepseek-ai/dsh-session-projection'
|
||||
import UserInteractionService from '@deepseek-ai/dsh-user-interaction'
|
||||
import { CommandId } from '@deepseek-ai/dsh-commands/brand'
|
||||
import PlanModeService from '@deepseek-ai/dsh-plan-mode'
|
||||
|
||||
interface Bench {
|
||||
ctx: Context
|
||||
session: Session
|
||||
values(): Record<string, unknown>
|
||||
}
|
||||
|
||||
async function harness(withPlanMode: boolean): Promise<Bench> {
|
||||
const ctx = new Context()
|
||||
await ctx.plugin(SessionStore)
|
||||
await ctx.plugin(SystemPrompt, { persona: '' })
|
||||
await ctx.plugin(ToolRegistry)
|
||||
await ctx.plugin(UserInteractionService)
|
||||
await ctx.plugin(AgentRegistry)
|
||||
await ctx.plugin(SessionProjectionRegistry)
|
||||
if (withPlanMode) await ctx.plugin(PlanModeService, { section: 'plan policy' })
|
||||
const session = ctx.sessions.create()
|
||||
ctx.agents.register({ id: session.id, session, status: 'idle', ctx } as Agent)
|
||||
return {
|
||||
ctx,
|
||||
session,
|
||||
values: () => ctx.sessionProjections.snapshot(session).values as Record<string, unknown>,
|
||||
}
|
||||
}
|
||||
|
||||
/** Append one logged /plan selection record (the executor's command/run shape). */
|
||||
function runPlanCommand(session: Session, args: string, index: number): void {
|
||||
session.append('command/run', {
|
||||
commandId: CommandId(`plan-proj-${String(index)}`),
|
||||
name: 'plan',
|
||||
args,
|
||||
source: { kind: 'user' },
|
||||
})
|
||||
}
|
||||
|
||||
/** Commit one plan/mode flip inside an open turn (the invariant's turn-enclosure rule). */
|
||||
function commitPlanMode(session: Session, active: boolean, turn: number): void {
|
||||
session.append('turn/start', { turn, trigger: { kind: 'message', source: { kind: 'user' } } })
|
||||
session.append('plan/mode', { active })
|
||||
session.append('turn/end', { turn, reason: { kind: 'completed' } })
|
||||
}
|
||||
|
||||
describe('plan projection unit', () => {
|
||||
it('serves inactive/not-pending for the empty log', async () => {
|
||||
const bench = await harness(true)
|
||||
expect(bench.values()).toEqual({ plan: { active: false, pending: false } })
|
||||
})
|
||||
|
||||
it('a logged /plan selection reads pending until the boundary commit resolves it', async () => {
|
||||
const bench = await harness(true)
|
||||
runPlanCommand(bench.session, '', 0)
|
||||
expect(bench.values().plan).toEqual({ active: false, pending: true })
|
||||
commitPlanMode(bench.session, true, 0)
|
||||
expect(bench.values().plan).toEqual({ active: true, pending: false })
|
||||
})
|
||||
|
||||
it('folds `off` args and non-plan commands correctly, and a matching selection is not pending', async () => {
|
||||
const bench = await harness(true)
|
||||
commitPlanMode(bench.session, true, 0)
|
||||
// Another command's record never touches plan state.
|
||||
bench.session.append('command/run', {
|
||||
commandId: CommandId('other-1'), name: 'compact', args: '', source: { kind: 'user' },
|
||||
})
|
||||
expect(bench.values().plan).toEqual({ active: true, pending: false })
|
||||
runPlanCommand(bench.session, ' off', 1)
|
||||
expect(bench.values().plan).toEqual({ active: true, pending: true })
|
||||
commitPlanMode(bench.session, false, 1)
|
||||
expect(bench.values().plan).toEqual({ active: false, pending: false })
|
||||
// Selecting the already-committed state folds to not-pending (net zero).
|
||||
runPlanCommand(bench.session, 'off', 2)
|
||||
expect(bench.values().plan).toEqual({ active: false, pending: false })
|
||||
})
|
||||
|
||||
it('a /plan message-argument selection targets plan mode', async () => {
|
||||
const bench = await harness(true)
|
||||
runPlanCommand(bench.session, ' sketch the refactor first', 0)
|
||||
expect(bench.values().plan).toEqual({ active: false, pending: true })
|
||||
})
|
||||
|
||||
it('has no plan key when plan-mode is not composed', async () => {
|
||||
const bench = await harness(false)
|
||||
expect('plan' in bench.values()).toBe(false)
|
||||
})
|
||||
|
||||
it('drops the key when the plan-mode fiber unloads (HMR safety)', async () => {
|
||||
const bench = await harness(false)
|
||||
const fiber = await bench.ctx.plugin(PlanModeService, { section: 'plan policy' })
|
||||
expect(bench.values().plan).toEqual({ active: false, pending: false })
|
||||
await fiber.dispose()
|
||||
expect('plan' in bench.values()).toBe(false)
|
||||
})
|
||||
|
||||
it('cold replay recovers pending from the log alone (a fresh registry refolds it)', async () => {
|
||||
const bench = await harness(true)
|
||||
runPlanCommand(bench.session, '', 0)
|
||||
// A second registry over the same log (the cold-read shape): no service
|
||||
// memory involved, the fold alone answers {active:false, pending:true}.
|
||||
const cold = await harness(true)
|
||||
for (const event of bench.session.events) {
|
||||
if (event.type === 'command/run' || event.type === 'plan/mode') {
|
||||
cold.session.append(event.type, event.data as never)
|
||||
}
|
||||
}
|
||||
expect(cold.values().plan).toEqual({ active: false, pending: true })
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user