Files
claude-code/src/utils/__tests__/messageQueueManager.test.ts
claude-code-best 2bad8df5d7 test: 添加 subagent 僵死场景相关测试用例
覆盖 subagent 生命周期关键模块的零覆盖函数:
- messageQueueManager: 扩展队列操作测试(enqueue/dequeue/优先级排序)
- queueProcessor: 测试 subagent 通知过滤和批量处理
- LocalAgentTask: 测试状态转换、通知防重、进度追踪
- task/framework: 测试 updateTaskState、registerTask、evictTerminalTask

共 66 个测试用例,135 个断言,全部通过。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-28 15:36:54 +08:00

198 lines
5.7 KiB
TypeScript

import { afterEach, beforeEach, describe, expect, test } from 'bun:test'
import {
clearCommandQueue,
dequeue,
dequeueAllMatching,
enqueue,
enqueuePendingNotification,
hasCommandsInQueue,
isSlashCommand,
peek,
resetCommandQueue,
} from '../messageQueueManager.js'
// Reset module-level queue state between tests
beforeEach(() => {
resetCommandQueue()
})
afterEach(() => {
resetCommandQueue()
})
describe('messageQueueManager.isSlashCommand', () => {
test('treats normal slash commands as slash commands', () => {
expect(isSlashCommand({ value: '/help', mode: 'prompt' } as any)).toBe(true)
})
test('keeps remote bridge slash commands slash-routed when bridgeOrigin is set', () => {
expect(
isSlashCommand({
value: '/proactive',
mode: 'prompt',
skipSlashCommands: true,
bridgeOrigin: true,
} as any),
).toBe(true)
})
test('keeps skipSlashCommands text-only when bridgeOrigin is absent', () => {
expect(
isSlashCommand({
value: '/proactive',
mode: 'prompt',
skipSlashCommands: true,
} as any),
).toBe(false)
})
})
describe('messageQueueManager.enqueue', () => {
test('adds command to queue with default next priority', () => {
enqueue({ value: 'hello', mode: 'prompt' } as any)
expect(hasCommandsInQueue()).toBe(true)
const cmd = dequeue()
expect(cmd).toBeDefined()
expect(cmd!.value).toBe('hello')
expect(cmd!.priority).toBe('next')
})
test('preserves explicit priority', () => {
enqueue({ value: 'urgent', mode: 'prompt', priority: 'now' } as any)
const cmd = dequeue()
expect(cmd!.priority).toBe('now')
})
})
describe('messageQueueManager.enqueuePendingNotification', () => {
test('adds command with later priority', () => {
enqueuePendingNotification({ value: '<task-notification/>', mode: 'task-notification' } as any)
const cmd = dequeue()
expect(cmd).toBeDefined()
expect(cmd!.priority).toBe('later')
expect(cmd!.mode).toBe('task-notification')
})
})
describe('messageQueueManager.dequeue', () => {
test('returns undefined when queue empty', () => {
expect(dequeue()).toBeUndefined()
})
test('returns highest priority command', () => {
enqueuePendingNotification({ value: 'later-cmd', mode: 'task-notification' } as any)
enqueue({ value: 'next-cmd', mode: 'prompt' } as any)
enqueue({ value: 'now-cmd', mode: 'prompt', priority: 'now' } as any)
const first = dequeue()
expect(first!.value).toBe('now-cmd')
const second = dequeue()
expect(second!.value).toBe('next-cmd')
const third = dequeue()
expect(third!.value).toBe('later-cmd')
})
test('FIFO within same priority', () => {
enqueue({ value: 'first', mode: 'prompt' } as any)
enqueue({ value: 'second', mode: 'prompt' } as any)
expect(dequeue()!.value).toBe('first')
expect(dequeue()!.value).toBe('second')
})
test('respects filter parameter', () => {
enqueue({ value: 'prompt-cmd', mode: 'prompt' } as any)
enqueuePendingNotification({ value: 'task-cmd', mode: 'task-notification' } as any)
// Filter to only task-notification commands
const cmd = dequeue(c => c.mode === 'task-notification')
expect(cmd).toBeDefined()
expect(cmd!.value).toBe('task-cmd')
// Prompt command should still be in queue
expect(hasCommandsInQueue()).toBe(true)
expect(dequeue()!.value).toBe('prompt-cmd')
})
})
describe('messageQueueManager.peek', () => {
test('returns undefined when queue empty', () => {
expect(peek()).toBeUndefined()
})
test('returns highest priority without removing', () => {
enqueuePendingNotification({ value: 'later', mode: 'task-notification' } as any)
enqueue({ value: 'next', mode: 'prompt' } as any)
expect(peek()!.value).toBe('next')
expect(hasCommandsInQueue()).toBe(true)
expect(dequeue()!.value).toBe('next')
})
})
describe('messageQueueManager.dequeueAllMatching', () => {
test('removes all matching commands', () => {
enqueue({ value: 'a', mode: 'prompt' } as any)
enqueue({ value: 'b', mode: 'task-notification' } as any)
enqueue({ value: 'c', mode: 'task-notification' } as any)
const matched = dequeueAllMatching(c => c.mode === 'task-notification')
expect(matched).toHaveLength(2)
expect(matched.map(c => c.value)).toEqual(['b', 'c'])
// Remaining command should still be in queue
expect(dequeue()!.value).toBe('a')
})
test('returns empty array when no matches', () => {
enqueue({ value: 'a', mode: 'prompt' } as any)
const matched = dequeueAllMatching(c => c.mode === 'bash')
expect(matched).toHaveLength(0)
expect(hasCommandsInQueue()).toBe(true)
})
test('returns empty array when queue empty', () => {
const matched = dequeueAllMatching(() => true)
expect(matched).toHaveLength(0)
})
})
describe('messageQueueManager.clearCommandQueue', () => {
test('removes all commands', () => {
enqueue({ value: 'a', mode: 'prompt' } as any)
enqueue({ value: 'b', mode: 'prompt' } as any)
expect(hasCommandsInQueue()).toBe(true)
clearCommandQueue()
expect(hasCommandsInQueue()).toBe(false)
})
test('no-op on empty queue', () => {
clearCommandQueue()
expect(hasCommandsInQueue()).toBe(false)
})
})
describe('messageQueueManager priority ordering', () => {
test('now dequeued before next and later', () => {
enqueuePendingNotification({ value: 'later', mode: 'task-notification' } as any)
enqueue({ value: 'next', mode: 'prompt' } as any)
enqueue({ value: 'now', mode: 'prompt', priority: 'now' } as any)
expect(dequeue()!.value).toBe('now')
expect(dequeue()!.value).toBe('next')
expect(dequeue()!.value).toBe('later')
})
test('next dequeued before later', () => {
enqueuePendingNotification({ value: 'later', mode: 'task-notification' } as any)
enqueue({ value: 'next', mode: 'prompt' } as any)
expect(dequeue()!.value).toBe('next')
expect(dequeue()!.value).toBe('later')
})
})