mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-21 17:38:10 +00:00
用户澄清推翻了早期设计的三处前提,本提交按新模型重做调度核心(行为有意变化): 1) 类别由注入 API 决定,与通道名无关 - InjectInterrupt* -> TaskInterrupt(带级别,可被严格更高级中断打断) - InjectText*/InjectInputSync*/内核自循环 -> TaskQueued(无级别,可被任何中断打断) - 删除按通道名推断的 taskLevel():qq 走 InjectInterruptTextOpts,本就是中断 2) 级别只属于中断 - 插件在 InjectOptions.Priority 声明 L1-L3(空/非法降级 L1,声明 L4 夹到 L3) - L4 内核独占:新增 raiseKernelInterrupt(panic / selfip);requestKernelPreempt 不夹取 - panic 现在产生一条带 kernel 标记的 L4 中断;L4 自身 panic 不再产生新 L4(防自我放大) 3) 选择结构:四容器固定次序,删除统一比较器 - immediate(抢占者立即运行)-> 中断队列 L4..L1 -> 栈顶(与队头比级别) -> 排队 FIFO - 删除 pickTaskIndex/taskBefore 与“同级 pending 优先”补丁(根因是抢占者进了队列) - 中断栈上界改为结构推论 = 4(= 中断级数);删除“超限转 pendingInterrupts”降级 公开 SDK(feature 分支有意新增,纯追加):InjectOptions.Priority + PriorityL1/2/3; 内核 io / proc 桥 / 插件模板同步透传。 设计稿 §2/§3/§4.1/§6.3/§9/§11/§12/§13/§15 按新模型重写。 验收:go build/vet 干净;go test ./... 37 包 ok 0 FAIL;-race 全绿; e2e(抢占-挂起-恢复)+ 压力(200 排队 + 50 中断,L1/L2/L3 轮转)通过。
133 lines
4.2 KiB
Go
133 lines
4.2 KiB
Go
package core
|
||
|
||
// M6 验收测试:任务级回执与断链点统一为终态事件。
|
||
//
|
||
// 设计依据 docs/zh/input-scheduler-design.md §7(不变量 I5)、§11.3(X1–X4)。
|
||
//
|
||
// 问题背景:回执原先由全局 emitResponse 写(无任务归属),且 processInput 有多条
|
||
// 「提前 return 而不 emit」的路径(解析失败、去重、consolidation)——同步调用方
|
||
// 若不自带超时(cli、clawhubadapter)就会永久挂起。
|
||
|
||
import (
|
||
"testing"
|
||
"time"
|
||
|
||
agentAPI "gitcode.com/JianFeeeee/HomeAgent/internal/agent/api"
|
||
agentIO "gitcode.com/JianFeeeee/HomeAgent/internal/agent/io"
|
||
)
|
||
|
||
// X1:回执按任务归属,中断的回执绝不投给被挂起的等待者。
|
||
func TestTerminal_TaskScopedReplyNotMisrouted(t *testing.T) {
|
||
sp := newPreemptProvider("intr-done", "low-done")
|
||
a := newPreemptAgent(t, sp)
|
||
|
||
lowEvt, lowCh := textEvent("qq", "低优先级任务")
|
||
lowTask := newInputTask(lowEvt)
|
||
if !a.sched.enqueue(lowTask) {
|
||
t.Fatal("入队失败")
|
||
}
|
||
lt, _, _ := a.sched.nextRef()
|
||
|
||
done := make(chan struct{})
|
||
go func() { a.executeNewTask(lt); close(done) }()
|
||
select {
|
||
case <-sp.entered:
|
||
case <-time.After(3 * time.Second):
|
||
t.Fatal("provider 未被调用")
|
||
}
|
||
|
||
intrEvt, intrCh := textEvent("cli", "紧急打断")
|
||
intrEvt.Payload["interrupt"] = true
|
||
if !a.sched.requestKernelPreempt(intrEvt) {
|
||
t.Fatal("内核 L4 应抢占排队任务")
|
||
}
|
||
a.cancelCurrentLLM()
|
||
select {
|
||
case <-done:
|
||
case <-time.After(3 * time.Second):
|
||
t.Fatal("未挂起")
|
||
}
|
||
|
||
// 执行中断任务 → 只应写它自己的回执通道。
|
||
it, _, k := a.sched.nextRef()
|
||
if k != nextImmediate {
|
||
t.Fatalf("应取到立即运行的中断,kind=%v", k)
|
||
}
|
||
a.executeNewTask(it)
|
||
if len(intrCh) != 1 {
|
||
t.Fatalf("中断任务应回执到自己的通道,实际 %d", len(intrCh))
|
||
}
|
||
if len(lowCh) != 0 {
|
||
t.Fatal("中断的回执绝不能被投给被挂起的等待者")
|
||
}
|
||
|
||
// 恢复并结束后,原任务才拿到自己的回执。
|
||
rt, rf, k2 := a.sched.nextRef()
|
||
if k2 != nextSuspended {
|
||
t.Fatalf("应恢复被抢占任务,kind=%v", k2)
|
||
}
|
||
a.resumeTask(rt, rf)
|
||
if len(lowCh) != 1 {
|
||
t.Fatalf("恢复任务结束后应恰好回执一次,实际 %d", len(lowCh))
|
||
}
|
||
if got, _ := (<-lowCh).Payload["content"].(string); got != "low-done" {
|
||
t.Fatalf("原任务回执内容=%q,期望 low-done", got)
|
||
}
|
||
}
|
||
|
||
// X2:空输入(解析失败)也必须有终态回执。
|
||
func TestTerminal_EmptyInputGetsSkippedReply(t *testing.T) {
|
||
a := newLifecycleAgent(t, &scriptProvider{}, nil, NewStageHost())
|
||
ch := make(chan *agentIO.OutputEvent, 1)
|
||
evt := &agentIO.InputEvent{
|
||
RequestID: "r-empty",
|
||
Source: "cli",
|
||
Type: "text",
|
||
Payload: map[string]interface{}{}, // 无 content,无媒体块
|
||
OutputChannel: "cli",
|
||
ResponseCh: ch,
|
||
}
|
||
if _, out := a.runInputTask(evt); out != outcomeDone {
|
||
t.Fatalf("空输入应正常返回,实际 %v", out)
|
||
}
|
||
if len(ch) != 1 {
|
||
t.Fatal("空输入必须回 skipped 终态")
|
||
}
|
||
if reason, _ := (<-ch).Payload["reason"].(string); reason != "empty_input" {
|
||
t.Fatalf("reason=%q,期望 empty_input", reason)
|
||
}
|
||
if a.context.Len() != 0 {
|
||
t.Fatal("空输入不得写入上下文")
|
||
}
|
||
}
|
||
|
||
// X4:无超时的同步调用方(cli / clawhubadapter)在断链路径上不再永久挂起。
|
||
//
|
||
// 这是回归判据:修复前 `InjectTextSync` 遇到去重命中会永久阻塞。
|
||
func TestTerminal_NoTimeoutSyncCallerDoesNotHang(t *testing.T) {
|
||
a := newLifecycleAgent(t, &scriptProvider{script: []*agentAPI.CompletionResponse{
|
||
{Content: "第一次"}, {Content: "第二次"},
|
||
}}, nil, NewStageHost())
|
||
|
||
// 第一次成功
|
||
e1, ch1 := textEvent("cli", "重复内容")
|
||
if _, out := a.runInputTask(e1); out != outcomeDone {
|
||
t.Fatalf("首次=%v", out)
|
||
}
|
||
if len(ch1) != 1 {
|
||
t.Fatal("首次应有回执")
|
||
}
|
||
|
||
// 第二次(去重命中):模拟同步调用方阻塞等待——必须在 1s 内拿到终态。
|
||
e2, ch2 := textEvent("cli", "重复内容")
|
||
go a.runInputTask(e2)
|
||
select {
|
||
case r := <-ch2:
|
||
if skipped, _ := r.Payload["skipped"].(bool); !skipped {
|
||
t.Fatalf("应为 skipped 终态,实际 %+v", r.Payload)
|
||
}
|
||
case <-time.After(time.Second):
|
||
t.Fatal("去重命中让同步调用方永久挂起(X4 回归)")
|
||
}
|
||
}
|