ba72264542
* feat: restore group chat system with Socket.IO and SQLite persistence - GroupChatServer: Socket.IO server with room management, message history, typing indicators - SQLite storage for rooms, messages, and agent configuration - AgentClients: manages AI agent connections via socket.io-client, forwards @mentions to Hermes gateway - REST API: room CRUD, agent management, invite codes - Agent auto-restoration on server restart - Tests for all REST endpoints Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: add context-engine design document for group chat compression Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: handle special-character session search * fix: keep unicode dotted session search on quoted FTS path * feat: add context engine and group chat frontend UI - Context engine: three-zone compression (head/tail/summary) with LLM summarization, incremental updates, TTL cache, and graceful degradation - Frontend: group chat page with Socket.IO client, room sidebar, message list, agent/member display, create/join-by-code modals - Integration: wire context engine into agent-clients before /v1/runs - Refactor ChatStorage to use global DB (getDb/ensureTable) with gc_ prefix - Add i18n keys for group chat to all 8 locales - Add sidebar nav entry and router for group chat page Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove leftover main branch code from merge conflict resolution The `isNumericQuery`, `hasUnsafeChars`, and `runLikeContentSearch` functions no longer exist — they were replaced by HEAD's `shouldUseLiteralContentSearch` and `runLiteralContentSearch`. This dead code block caused a TypeScript compile error after the merge. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: install missing socket.io dep and type ack params Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: enable WebSocket proxy and fix socket.io transport for group chat - Add ws: true to Vite proxy config so WebSocket upgrade requests are forwarded to the backend - Allow both polling and websocket transports on server and client (polling as fallback when WebSocket upgrade fails through proxy) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: separate socket.io path from REST routes for group chat socket.io was mounted at /api/hermes/group-chat which intercepted all REST requests to /api/hermes/group-chat/rooms etc, returning "Transport unknown". Changed socket.io path to /api/hermes/group-chat/ws to avoid conflicts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: improve group chat UI, agent management, and socket.io reliability - Redesign GroupChatPanel with Naive UI, stacked agent avatars, and popover management - Match GroupChatInput style with single chat input, add IME composition handling - Add agent add/remove per room with profile selection and duplicate prevention - Use @multiavatar for SVG avatar generation with caching - Decouple joinRoom from socket.io, use REST API for data loading - Switch socket.io to default path with /group-chat namespace to avoid proxy conflicts - Restore agent connections after server is listening - Add getRoomDetail REST endpoint and duplicate agent prevention (409) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: server-side @mention routing with context compression status and queue - Move @mention detection from agent socket listeners to server-side processMentions() - Add per-room processing lock to block mention dispatch during compression - Queue mentions during processing, drain only the latest when ready - Emit context_status events (compressing/replying/ready) to room via Socket.IO - Frontend displays compression status indicator above input - Token-based compression trigger (100k threshold) with CJK-aware estimation - Fix compressor type errors (countTokens parameter type) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: improve group chat profile handling and session sync Refine group chat room/session behavior with per-room compression controls, sidebar updates, and better stale session cleanup so multi-profile group chat state stays consistent. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: group chat improvements — session lifecycle, typing recovery, mention highlighting - Fix cross-profile session deletion with deferred delete queue - Move saveSessionProfile to after gateway response confirmation - Replace all console.log with logger in group-chat modules - Add server-side typing/context_status state tracking for room rejoin - Fix @ mention popup position to follow cursor - Add @ mention highlighting (blue) in chat message content - Fix mention regex to match all occurrences after HTML tags - Enable esbuild minify and treeShaking - Move @multiavatar/multiavatar to devDependencies - Add i18n keys for group chat features - Update tests for new functionality Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * chore: bump version to 0.4.5 and move @multiavatar to devDependencies Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Zhicheng Han <zhicheng.han@mathematik.uni-goettingen.de>
298 lines
9.4 KiB
TypeScript
298 lines
9.4 KiB
TypeScript
// @vitest-environment jsdom
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
import { createPinia, setActivePinia } from 'pinia'
|
|
|
|
const mockChatApi = vi.hoisted(() => ({
|
|
startRun: vi.fn(),
|
|
streamRunEvents: vi.fn(),
|
|
}))
|
|
|
|
const mockSessionsApi = vi.hoisted(() => ({
|
|
fetchSessions: vi.fn(),
|
|
fetchSession: vi.fn(),
|
|
deleteSession: vi.fn(),
|
|
renameSession: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@/api/hermes/chat', () => mockChatApi)
|
|
vi.mock('@/api/hermes/sessions', () => mockSessionsApi)
|
|
|
|
import { useChatStore } from '@/stores/hermes/chat'
|
|
|
|
function makeSummary(id: string, title = 'Session') {
|
|
return {
|
|
id,
|
|
source: 'api_server',
|
|
model: 'gpt-4o',
|
|
title,
|
|
started_at: 1710000000,
|
|
ended_at: 1710000001,
|
|
message_count: 1,
|
|
tool_call_count: 0,
|
|
input_tokens: 10,
|
|
output_tokens: 20,
|
|
cache_read_tokens: 0,
|
|
cache_write_tokens: 0,
|
|
reasoning_tokens: 0,
|
|
billing_provider: 'openai',
|
|
estimated_cost_usd: 0,
|
|
actual_cost_usd: 0,
|
|
cost_status: 'estimated',
|
|
}
|
|
}
|
|
|
|
function makeDetail(id: string, messages: Array<Record<string, any>>) {
|
|
return {
|
|
...makeSummary(id),
|
|
messages,
|
|
}
|
|
}
|
|
|
|
async function flushPromises() {
|
|
await Promise.resolve()
|
|
await Promise.resolve()
|
|
}
|
|
|
|
const PROFILE = 'default'
|
|
const ACTIVE_SESSION_KEY = `hermes_active_session_${PROFILE}`
|
|
const SESSIONS_CACHE_KEY = `hermes_sessions_cache_v1_${PROFILE}`
|
|
const LEGACY_ACTIVE_SESSION_KEY = 'hermes_active_session'
|
|
const LEGACY_SESSIONS_CACHE_KEY = 'hermes_sessions_cache_v1'
|
|
const sessionMessagesKey = (sessionId: string) => `hermes_session_msgs_v1_${PROFILE}_${sessionId}_`
|
|
const inFlightKey = (sessionId: string) => `hermes_in_flight_v1_${PROFILE}_${sessionId}`
|
|
const legacySessionMessagesKey = (sessionId: string) => `hermes_session_msgs_v1_${sessionId}`
|
|
|
|
describe('Chat Store', () => {
|
|
beforeEach(() => {
|
|
setActivePinia(createPinia())
|
|
vi.clearAllMocks()
|
|
vi.useRealTimers()
|
|
window.localStorage.clear()
|
|
mockSessionsApi.fetchSessions.mockResolvedValue([])
|
|
mockSessionsApi.fetchSession.mockResolvedValue(null)
|
|
mockSessionsApi.deleteSession.mockResolvedValue(true)
|
|
mockSessionsApi.renameSession.mockResolvedValue(true)
|
|
mockChatApi.startRun.mockResolvedValue({ run_id: 'run-1', status: 'queued' })
|
|
mockChatApi.streamRunEvents.mockImplementation(() => ({
|
|
abort: vi.fn(),
|
|
}))
|
|
})
|
|
|
|
it('hydrates cached active session immediately and preserves local-only sessions after refresh', async () => {
|
|
const cachedSession = {
|
|
id: 'local-1',
|
|
title: 'Local Draft',
|
|
source: 'api_server',
|
|
messages: [],
|
|
createdAt: 1,
|
|
updatedAt: 1,
|
|
}
|
|
const cachedMessages = [
|
|
{ id: 'm1', role: 'user', content: 'draft', timestamp: 1 },
|
|
]
|
|
|
|
window.localStorage.setItem(ACTIVE_SESSION_KEY, 'local-1')
|
|
window.localStorage.setItem(SESSIONS_CACHE_KEY, JSON.stringify([cachedSession]))
|
|
window.localStorage.setItem(sessionMessagesKey('local-1'), JSON.stringify(cachedMessages))
|
|
// Mark local-1 as in-flight so loadSessions preserves it
|
|
window.localStorage.setItem(inFlightKey('local-1'), JSON.stringify({ runId: 'run-1', startedAt: Date.now() }))
|
|
|
|
mockSessionsApi.fetchSessions.mockResolvedValue([makeSummary('remote-1', 'Remote Session')])
|
|
mockSessionsApi.fetchSession.mockResolvedValue(null)
|
|
|
|
const store = useChatStore()
|
|
const loadPromise = store.loadSessions()
|
|
|
|
expect(store.activeSessionId).toBe('local-1')
|
|
expect(store.messages.map(m => m.content)).toEqual(['draft'])
|
|
|
|
await loadPromise
|
|
|
|
expect(store.sessions.map(s => s.id)).toEqual(['local-1', 'remote-1'])
|
|
expect(store.activeSession?.id).toBe('local-1')
|
|
expect(store.messages.map(m => m.content)).toEqual(['draft'])
|
|
})
|
|
|
|
it('persists the user message immediately before any SSE delta arrives', async () => {
|
|
const store = useChatStore()
|
|
|
|
await flushPromises()
|
|
await store.sendMessage('hello world')
|
|
|
|
const sid = store.activeSessionId
|
|
expect(sid).toBeTruthy()
|
|
expect(window.localStorage.getItem(ACTIVE_SESSION_KEY)).toBe(sid)
|
|
|
|
const cachedMessages = JSON.parse(
|
|
window.localStorage.getItem(sessionMessagesKey(sid!)) || '[]',
|
|
)
|
|
expect(cachedMessages).toEqual(
|
|
expect.arrayContaining([
|
|
expect.objectContaining({
|
|
role: 'user',
|
|
content: 'hello world',
|
|
}),
|
|
]),
|
|
)
|
|
})
|
|
|
|
it('hydrates from default-profile legacy cache and migrates bulky storage to new keys only', async () => {
|
|
const cachedSession = {
|
|
id: 'legacy-1',
|
|
title: 'Legacy Draft',
|
|
source: 'api_server',
|
|
messages: [],
|
|
createdAt: 1,
|
|
updatedAt: 1,
|
|
}
|
|
const cachedMessages = [
|
|
{ id: 'm1', role: 'user', content: 'legacy draft', timestamp: 1 },
|
|
]
|
|
|
|
window.localStorage.setItem(LEGACY_ACTIVE_SESSION_KEY, 'legacy-1')
|
|
window.localStorage.setItem(LEGACY_SESSIONS_CACHE_KEY, JSON.stringify([cachedSession]))
|
|
window.localStorage.setItem(legacySessionMessagesKey('legacy-1'), JSON.stringify(cachedMessages))
|
|
|
|
mockSessionsApi.fetchSessions.mockResolvedValue([makeSummary('legacy-1', 'Legacy Draft')])
|
|
mockSessionsApi.fetchSession.mockResolvedValue(makeDetail('legacy-1', cachedMessages))
|
|
|
|
const store = useChatStore()
|
|
await store.loadSessions()
|
|
|
|
expect(store.activeSessionId).toBe('legacy-1')
|
|
expect(store.messages.map(m => m.content)).toEqual(['legacy draft'])
|
|
|
|
expect(window.localStorage.getItem(ACTIVE_SESSION_KEY)).toBe('legacy-1')
|
|
expect(window.localStorage.getItem(SESSIONS_CACHE_KEY)).toBeTruthy()
|
|
expect(window.localStorage.getItem(sessionMessagesKey('legacy-1'))).toBeTruthy()
|
|
|
|
expect(window.localStorage.getItem(LEGACY_ACTIVE_SESSION_KEY)).toBeNull()
|
|
expect(window.localStorage.getItem(LEGACY_SESSIONS_CACHE_KEY)).toBeNull()
|
|
expect(window.localStorage.getItem(legacySessionMessagesKey('legacy-1'))).toBeNull()
|
|
})
|
|
|
|
it('marks recently active server sessions as live even when this tab did not start the run', async () => {
|
|
vi.useFakeTimers()
|
|
vi.setSystemTime(new Date('2026-04-22T19:00:00.000Z'))
|
|
|
|
mockSessionsApi.fetchSessions.mockResolvedValue([
|
|
{
|
|
...makeSummary('remote-live', 'Remote Live'),
|
|
ended_at: null,
|
|
last_active: Math.floor(Date.now() / 1000) - 60,
|
|
},
|
|
{
|
|
...makeSummary('remote-idle', 'Remote Idle'),
|
|
ended_at: Math.floor(Date.now() / 1000) - 600,
|
|
last_active: Math.floor(Date.now() / 1000) - 600,
|
|
},
|
|
])
|
|
|
|
const store = useChatStore()
|
|
await store.loadSessions()
|
|
|
|
expect(store.isSessionLive('remote-live')).toBe(true)
|
|
expect(store.isSessionLive('remote-idle')).toBe(false)
|
|
})
|
|
|
|
it('silently refreshes from server on SSE error instead of appending a fake error bubble', async () => {
|
|
vi.useFakeTimers()
|
|
|
|
window.localStorage.setItem(ACTIVE_SESSION_KEY, 'sess-1')
|
|
window.localStorage.setItem(
|
|
SESSIONS_CACHE_KEY,
|
|
JSON.stringify([
|
|
{
|
|
id: 'sess-1',
|
|
title: 'Recovered Chat',
|
|
source: 'api_server',
|
|
messages: [],
|
|
createdAt: 1,
|
|
updatedAt: 1,
|
|
},
|
|
]),
|
|
)
|
|
window.localStorage.setItem(
|
|
sessionMessagesKey('sess-1'),
|
|
JSON.stringify([
|
|
{ id: 'old-user', role: 'user', content: 'old prompt', timestamp: 1 },
|
|
]),
|
|
)
|
|
|
|
mockSessionsApi.fetchSessions.mockResolvedValue([makeSummary('sess-1', 'Recovered Chat')])
|
|
|
|
let fetchSessionCalls = 0
|
|
mockSessionsApi.fetchSession.mockImplementation(async () => {
|
|
fetchSessionCalls += 1
|
|
if (fetchSessionCalls === 1) return null
|
|
return makeDetail('sess-1', [
|
|
{
|
|
id: 1,
|
|
session_id: 'sess-1',
|
|
role: 'user',
|
|
content: 'old prompt',
|
|
tool_call_id: null,
|
|
tool_calls: null,
|
|
tool_name: null,
|
|
timestamp: 1710000000,
|
|
token_count: null,
|
|
finish_reason: null,
|
|
reasoning: null,
|
|
},
|
|
{
|
|
id: 2,
|
|
session_id: 'sess-1',
|
|
role: 'user',
|
|
content: 'check this',
|
|
tool_call_id: null,
|
|
tool_calls: null,
|
|
tool_name: null,
|
|
timestamp: 1710000001,
|
|
token_count: null,
|
|
finish_reason: null,
|
|
reasoning: null,
|
|
},
|
|
{
|
|
id: 3,
|
|
session_id: 'sess-1',
|
|
role: 'assistant',
|
|
content: 'final answer',
|
|
tool_call_id: null,
|
|
tool_calls: null,
|
|
tool_name: null,
|
|
timestamp: 1710000002,
|
|
token_count: null,
|
|
finish_reason: 'stop',
|
|
reasoning: null,
|
|
},
|
|
])
|
|
})
|
|
|
|
mockChatApi.streamRunEvents.mockImplementation((
|
|
_runId: string,
|
|
_onEvent: (event: unknown) => void,
|
|
_onDone: () => void,
|
|
onError: (err: Error) => void,
|
|
) => {
|
|
setTimeout(() => {
|
|
onError(new Error('SSE connection error'))
|
|
}, 0)
|
|
return { abort: vi.fn() }
|
|
})
|
|
|
|
const store = useChatStore()
|
|
await flushPromises()
|
|
await store.sendMessage('check this')
|
|
await vi.advanceTimersByTimeAsync(0)
|
|
await flushPromises()
|
|
|
|
await vi.advanceTimersByTimeAsync(9000)
|
|
await flushPromises()
|
|
|
|
expect(store.messages.some(m => m.role === 'system' && m.content.includes('SSE connection error'))).toBe(false)
|
|
expect(store.messages.some(m => m.role === 'assistant' && m.content === 'final answer')).toBe(true)
|
|
expect(store.isRunActive).toBe(false)
|
|
expect(window.localStorage.getItem(inFlightKey('sess-1'))).toBeNull()
|
|
})
|
|
})
|