mirror of
https://github.com/EKKOLearnAI/hermes-web-ui.git
synced 2026-07-16 13:40:14 +00:00
1d54f36b2b
Add observable-behavior baseline coverage for Group Chat sockets, REST routes, mention routing, chat-run, coding-agent dispatch, and client store state. Keep the PR source diff focused on code/tests only; architecture context belongs in the PR body.
114 lines
4.1 KiB
TypeScript
114 lines
4.1 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import {
|
|
connectGroupChatClient,
|
|
createTestGroupChatServer,
|
|
emitAck,
|
|
once,
|
|
} from './group-chat-test-helpers'
|
|
import type { GroupChatServer } from '../../packages/server/src/services/hermes/group-chat'
|
|
|
|
describe('group chat approval and context baseline', () => {
|
|
let harness: Awaited<ReturnType<typeof createTestGroupChatServer>>
|
|
let groupServer: GroupChatServer
|
|
let port: number
|
|
|
|
beforeEach(async () => {
|
|
vi.clearAllMocks()
|
|
harness = await createTestGroupChatServer()
|
|
groupServer = harness.groupServer
|
|
port = harness.port
|
|
groupServer.getStorage().saveRoom('room-1', 'Room 1', 'ROOM1')
|
|
})
|
|
|
|
afterEach(() => {
|
|
harness?.cleanup()
|
|
})
|
|
|
|
async function joinPair() {
|
|
const agent = await connectGroupChatClient(port, 'agent-1', 'Agent')
|
|
const human = await connectGroupChatClient(port, 'human-1', 'Human')
|
|
harness.sockets.push(agent, human)
|
|
await emitAck(agent, 'join', { roomId: 'room-1' })
|
|
await emitAck(human, 'join', { roomId: 'room-1' })
|
|
return { agent, human }
|
|
}
|
|
|
|
it('relays context status and updates room token count', async () => {
|
|
const { agent, human } = await joinPair()
|
|
const statusEvent = once<any>(human, 'context_status')
|
|
const roomUpdated = once<any>(human, 'room_updated')
|
|
|
|
agent.emit('context_status', { roomId: 'room-1', agentName: 'Agent', status: 'replying', totalTokens: 123 })
|
|
|
|
expect(await statusEvent).toEqual({ roomId: 'room-1', agentName: 'Agent', status: 'replying' })
|
|
expect(await roomUpdated).toEqual({ roomId: 'room-1', totalTokens: 123 })
|
|
expect(groupServer.getStorage().getRoom('room-1')).toMatchObject({ totalTokens: 123 })
|
|
})
|
|
|
|
it('clears ready context status from join recovery', async () => {
|
|
const { agent } = await joinPair()
|
|
agent.emit('context_status', { roomId: 'room-1', agentName: 'Agent', status: 'replying' })
|
|
agent.emit('context_status', { roomId: 'room-1', agentName: 'Agent', status: 'ready' })
|
|
|
|
const lateJoiner = await connectGroupChatClient(port, 'human-2', 'Late')
|
|
harness.sockets.push(lateJoiner)
|
|
const joined = await emitAck<any>(lateJoiner, 'join', { roomId: 'room-1' })
|
|
|
|
expect(joined.contextStatuses).toEqual([])
|
|
})
|
|
|
|
it('relays approval requested with default choices', async () => {
|
|
const { agent, human } = await joinPair()
|
|
const requested = once<any>(human, 'approval.requested')
|
|
|
|
agent.emit('approval.requested', {
|
|
roomId: 'room-1',
|
|
agentName: 'Agent',
|
|
approval_id: 'approval-1',
|
|
command: 'touch file',
|
|
description: 'needs approval',
|
|
})
|
|
|
|
expect(await requested).toMatchObject({
|
|
event: 'approval.requested',
|
|
roomId: 'room-1',
|
|
agentName: 'Agent',
|
|
approval_id: 'approval-1',
|
|
choices: ['once', 'session', 'deny'],
|
|
})
|
|
})
|
|
|
|
it('relays approval resolved with normalized choice', async () => {
|
|
const { agent, human } = await joinPair()
|
|
const resolved = once<any>(human, 'approval.resolved')
|
|
|
|
agent.emit('approval.resolved', { roomId: 'room-1', agentName: 'Agent', approval_id: 'approval-1', choice: 'deny' })
|
|
|
|
expect(await resolved).toEqual({
|
|
event: 'approval.resolved',
|
|
roomId: 'room-1',
|
|
agentName: 'Agent',
|
|
approval_id: 'approval-1',
|
|
choice: 'deny',
|
|
})
|
|
})
|
|
|
|
it('rejects approval responses from sockets that have not joined the room', async () => {
|
|
const outsider = await connectGroupChatClient(port, 'outsider', 'Outsider')
|
|
harness.sockets.push(outsider)
|
|
|
|
await expect(emitAck(outsider, 'approval.respond', { roomId: 'room-1', approval_id: 'approval-1', choice: 'deny' })).resolves.toEqual({ error: 'Not in room' })
|
|
})
|
|
|
|
it('emits room_cleared and room_updated when runtime state is cleared', async () => {
|
|
const { human } = await joinPair()
|
|
const cleared = once<any>(human, 'room_cleared')
|
|
const updated = once<any>(human, 'room_updated')
|
|
|
|
groupServer.clearRoomRuntimeState('room-1')
|
|
|
|
expect(await cleared).toEqual({ roomId: 'room-1', totalTokens: 0 })
|
|
expect(await updated).toEqual({ roomId: 'room-1', totalTokens: 0 })
|
|
})
|
|
})
|