mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-28 15:01:34 +08:00
- normalizeStatusBar: trim/lowercase + 'on' → 'top' alias so user-edited YAML variants (Top, " bottom ", on) coerce correctly - shift-tab yolo: no-op with sys note when no live session; success-gated echo and catch fallback so RPC failures don't report as 'yolo off' - tui_gateway config.set/get statusbar: isinstance(display, dict) guards mirroring the compact branch so a malformed display scalar in config.yaml can't raise Tests: +1 vitest for trim/case/on, +2 pytest for non-dict display survival.
116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
import { $uiState, resetUiState } from '../app/uiStore.js'
|
|
import { applyDisplay, normalizeStatusBar } from '../app/useConfigSync.js'
|
|
|
|
describe('applyDisplay', () => {
|
|
beforeEach(() => {
|
|
resetUiState()
|
|
})
|
|
|
|
it('fans every display flag out to $uiState and the bell callback', () => {
|
|
const setBell = vi.fn()
|
|
|
|
applyDisplay(
|
|
{
|
|
config: {
|
|
display: {
|
|
bell_on_complete: true,
|
|
details_mode: 'expanded',
|
|
inline_diffs: false,
|
|
show_cost: true,
|
|
show_reasoning: true,
|
|
streaming: false,
|
|
tui_compact: true,
|
|
tui_statusbar: false
|
|
}
|
|
}
|
|
},
|
|
setBell
|
|
)
|
|
|
|
const s = $uiState.get()
|
|
expect(setBell).toHaveBeenCalledWith(true)
|
|
expect(s.compact).toBe(true)
|
|
expect(s.detailsMode).toBe('expanded')
|
|
expect(s.inlineDiffs).toBe(false)
|
|
expect(s.showCost).toBe(true)
|
|
expect(s.showReasoning).toBe(true)
|
|
expect(s.statusBar).toBe('off')
|
|
expect(s.streaming).toBe(false)
|
|
})
|
|
|
|
it('coerces legacy true + "on" alias to top', () => {
|
|
const setBell = vi.fn()
|
|
|
|
applyDisplay({ config: { display: { tui_statusbar: true as unknown as 'on' } } }, setBell)
|
|
expect($uiState.get().statusBar).toBe('top')
|
|
|
|
applyDisplay({ config: { display: { tui_statusbar: 'on' } } }, setBell)
|
|
expect($uiState.get().statusBar).toBe('top')
|
|
})
|
|
|
|
it('applies v1 parity defaults when display fields are missing', () => {
|
|
const setBell = vi.fn()
|
|
|
|
applyDisplay({ config: { display: {} } }, setBell)
|
|
|
|
const s = $uiState.get()
|
|
expect(setBell).toHaveBeenCalledWith(false)
|
|
expect(s.inlineDiffs).toBe(true)
|
|
expect(s.showCost).toBe(false)
|
|
expect(s.showReasoning).toBe(false)
|
|
expect(s.statusBar).toBe('top')
|
|
expect(s.streaming).toBe(true)
|
|
})
|
|
|
|
it('treats a null config like an empty display block', () => {
|
|
const setBell = vi.fn()
|
|
|
|
applyDisplay(null, setBell)
|
|
|
|
const s = $uiState.get()
|
|
expect(setBell).toHaveBeenCalledWith(false)
|
|
expect(s.inlineDiffs).toBe(true)
|
|
expect(s.streaming).toBe(true)
|
|
})
|
|
|
|
it('accepts the new string statusBar modes', () => {
|
|
const setBell = vi.fn()
|
|
|
|
applyDisplay({ config: { display: { tui_statusbar: 'bottom' } } }, setBell)
|
|
expect($uiState.get().statusBar).toBe('bottom')
|
|
|
|
applyDisplay({ config: { display: { tui_statusbar: 'top' } } }, setBell)
|
|
expect($uiState.get().statusBar).toBe('top')
|
|
})
|
|
})
|
|
|
|
describe('normalizeStatusBar', () => {
|
|
it('maps legacy bool + on alias to top/off', () => {
|
|
expect(normalizeStatusBar(true)).toBe('top')
|
|
expect(normalizeStatusBar(false)).toBe('off')
|
|
expect(normalizeStatusBar('on')).toBe('top')
|
|
})
|
|
|
|
it('passes through the canonical enum', () => {
|
|
expect(normalizeStatusBar('off')).toBe('off')
|
|
expect(normalizeStatusBar('top')).toBe('top')
|
|
expect(normalizeStatusBar('bottom')).toBe('bottom')
|
|
})
|
|
|
|
it('defaults missing/unknown values to top', () => {
|
|
expect(normalizeStatusBar(undefined)).toBe('top')
|
|
expect(normalizeStatusBar(null)).toBe('top')
|
|
expect(normalizeStatusBar('sideways')).toBe('top')
|
|
expect(normalizeStatusBar(42)).toBe('top')
|
|
})
|
|
|
|
it('trims whitespace and folds case', () => {
|
|
expect(normalizeStatusBar(' Bottom ')).toBe('bottom')
|
|
expect(normalizeStatusBar('TOP')).toBe('top')
|
|
expect(normalizeStatusBar(' on ')).toBe('top')
|
|
expect(normalizeStatusBar('OFF')).toBe('off')
|
|
})
|
|
})
|