// @vitest-environment jsdom import { beforeEach, describe, expect, it, vi } from 'vitest' import { flushPromises, mount } from '@vue/test-utils' const mockSettingsStore = vi.hoisted(() => ({ sessionReset: { mode: 'both', idle_minutes: 60, at_hour: 0 }, approvals: { mode: 'manual' }, memory: { write_approval: false }, skills: { write_approval: true }, updateLocal: vi.fn((section: string, values: Record) => { Object.assign((mockSettingsStore as any)[section], values) }), saveSection: vi.fn(), })) const mockPrefsStore = vi.hoisted(() => ({ humanOnly: true, setHumanOnly: vi.fn((value: boolean) => { mockPrefsStore.humanOnly = value }), })) vi.mock('@/stores/hermes/settings', () => ({ useSettingsStore: () => mockSettingsStore, })) vi.mock('@/stores/hermes/session-browser-prefs', () => ({ useSessionBrowserPrefsStore: () => mockPrefsStore, })) vi.mock('vue-i18n', () => ({ useI18n: () => ({ t: (key: string) => key, }), })) vi.mock('naive-ui', async () => { const actual = await vi.importActual('naive-ui') return { ...actual, useMessage: () => ({ success: vi.fn(), error: vi.fn(), }), } }) import SessionSettings from '@/components/hermes/settings/SessionSettings.vue' describe('SessionSettings', () => { beforeEach(() => { vi.clearAllMocks() mockPrefsStore.humanOnly = true mockSettingsStore.memory.write_approval = false mockSettingsStore.skills.write_approval = true }) it('surfaces the human-only preference in the Session tab', async () => { let emittedValue: boolean | undefined const wrapper = mount(SessionSettings, { global: { stubs: { SettingRow: { props: ['label', 'hint'], template: '
{{ label }}
', }, NSelect: true, NInputNumber: true, NButton: { template: '' }, NTag: { template: '' }, NSwitch: { props: ['value'], emits: ['update:value'], template: '
', setup(props: any, { emit }: any) { return { onClick: () => { emittedValue = !props.value emit('update:value', emittedValue) }, } }, }, }, }, }) await flushPromises() expect(wrapper.text()).toContain('settings.session.liveMonitorHumanOnly') const toggles = wrapper.findAll('.n-switch') expect(toggles.length).toBe(4) const humanOnlyToggle = toggles[3] await humanOnlyToggle.trigger('click') await Promise.resolve() expect(mockPrefsStore.setHumanOnly).toHaveBeenCalledWith(false) }) it('saves write approval toggles to memory and skills config sections', async () => { const wrapper = mount(SessionSettings, { global: { stubs: { SettingRow: { props: ['label', 'hint'], template: '
{{ label }}
', }, NSelect: true, NInputNumber: true, NButton: { template: '' }, NTag: { template: '' }, NSwitch: { props: ['value'], emits: ['update:value'], template: '', }, }, }, }) await flushPromises() expect(wrapper.text()).toContain('settings.session.memoryWriteApproval') expect(wrapper.text()).toContain('settings.session.skillsWriteApproval') const toggles = wrapper.findAll('.n-switch') await toggles[1].trigger('click') await Promise.resolve() await toggles[2].trigger('click') await Promise.resolve() expect(mockSettingsStore.updateLocal).toHaveBeenCalledWith('memory', { write_approval: true }) expect(mockSettingsStore.saveSection).toHaveBeenCalledWith('memory', { write_approval: true }) expect(mockSettingsStore.updateLocal).toHaveBeenCalledWith('skills', { write_approval: false }) expect(mockSettingsStore.saveSection).toHaveBeenCalledWith('skills', { write_approval: false }) }) it('shows write approval toggles without probing Hermes Agent support', async () => { const wrapper = mount(SessionSettings, { global: { stubs: { SettingRow: { props: ['label', 'hint'], template: '
{{ label }}
', }, NSelect: true, NInputNumber: true, NSwitch: { props: ['value'], emits: ['update:value'], template: '', }, }, }, }) await flushPromises() expect(wrapper.text()).toContain('settings.session.memoryWriteApproval') expect(wrapper.text()).toContain('settings.session.skillsWriteApproval') }) })