2026-04-18 09:23:29 -05:00
|
|
|
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
|
|
|
|
|
|
import { $uiState, resetUiState } from '../app/uiStore.js'
|
2026-04-22 13:41:01 -05:00
|
|
|
import { applyDisplay, normalizeStatusBar } from '../app/useConfigSync.js'
|
2026-04-18 09:23:29 -05:00
|
|
|
|
|
|
|
|
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)
|
2026-04-22 13:41:01 -05:00
|
|
|
expect(s.statusBar).toBe('off')
|
2026-04-18 09:23:29 -05:00
|
|
|
expect(s.streaming).toBe(false)
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-22 13:55:40 -05:00
|
|
|
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')
|
|
|
|
|
})
|
|
|
|
|
|
2026-04-18 09:23:29 -05:00
|
|
|
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)
|
2026-04-22 13:55:40 -05:00
|
|
|
expect(s.statusBar).toBe('top')
|
2026-04-18 09:23:29 -05:00
|
|
|
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)
|
|
|
|
|
})
|
2026-04-22 13:41:01 -05:00
|
|
|
|
|
|
|
|
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', () => {
|
2026-04-22 13:55:40 -05:00
|
|
|
it('maps legacy bool + on alias to top/off', () => {
|
|
|
|
|
expect(normalizeStatusBar(true)).toBe('top')
|
2026-04-22 13:41:01 -05:00
|
|
|
expect(normalizeStatusBar(false)).toBe('off')
|
2026-04-22 13:55:40 -05:00
|
|
|
expect(normalizeStatusBar('on')).toBe('top')
|
2026-04-22 13:41:01 -05:00
|
|
|
})
|
|
|
|
|
|
2026-04-22 13:55:40 -05:00
|
|
|
it('passes through the canonical enum', () => {
|
2026-04-22 13:41:01 -05:00
|
|
|
expect(normalizeStatusBar('off')).toBe('off')
|
|
|
|
|
expect(normalizeStatusBar('top')).toBe('top')
|
2026-04-22 13:55:40 -05:00
|
|
|
expect(normalizeStatusBar('bottom')).toBe('bottom')
|
2026-04-22 13:41:01 -05:00
|
|
|
})
|
|
|
|
|
|
2026-04-22 13:55:40 -05:00
|
|
|
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')
|
2026-04-22 13:41:01 -05:00
|
|
|
})
|
2026-04-22 15:19:50 -05:00
|
|
|
|
|
|
|
|
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')
|
|
|
|
|
})
|
2026-04-18 09:23:29 -05:00
|
|
|
})
|