715 lines
22 KiB
TypeScript
715 lines
22 KiB
TypeScript
import { act, render, screen, fireEvent, waitFor, within } from '@testing-library/react'
|
|
import type { ReactNode } from 'react'
|
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
|
|
// Provide a localStorage mock that supports all methods (jsdom's may be incomplete)
|
|
const localStorageMock = (() => {
|
|
let store: Record<string, string> = {}
|
|
return {
|
|
getItem: (key: string) => store[key] ?? null,
|
|
setItem: (key: string, value: string) => { store[key] = value },
|
|
removeItem: (key: string) => { delete store[key] },
|
|
clear: () => { store = {} },
|
|
}
|
|
})()
|
|
Object.defineProperty(globalThis, 'localStorage', { value: localStorageMock, writable: true })
|
|
Object.defineProperty(window, 'matchMedia', {
|
|
writable: true,
|
|
value: vi.fn().mockImplementation((query: string) => ({
|
|
matches: false,
|
|
media: query,
|
|
onchange: null,
|
|
addListener: vi.fn(),
|
|
removeListener: vi.fn(),
|
|
addEventListener: vi.fn(),
|
|
removeEventListener: vi.fn(),
|
|
dispatchEvent: vi.fn(),
|
|
})),
|
|
})
|
|
|
|
// Mock @tauri-apps/api/core before importing App
|
|
vi.mock('@tauri-apps/api/core', () => ({
|
|
invoke: vi.fn(),
|
|
}))
|
|
|
|
vi.mock('@tauri-apps/api/window', async () => {
|
|
const actual = await vi.importActual<typeof import('@tauri-apps/api/window')>('@tauri-apps/api/window')
|
|
|
|
return {
|
|
...actual,
|
|
getCurrentWindow: () => ({
|
|
innerSize: vi.fn(async () => ({ toLogical: () => ({ width: 1400, height: 900 }) })),
|
|
scaleFactor: vi.fn(async () => 1),
|
|
setMinSize: vi.fn(async () => {}),
|
|
setSize: vi.fn(async () => {}),
|
|
}),
|
|
}
|
|
})
|
|
|
|
// Mock mock-tauri module
|
|
const mockEntries = [
|
|
{
|
|
path: '/vault/project/test.md',
|
|
filename: 'test.md',
|
|
title: 'Test Project',
|
|
isA: 'Project',
|
|
aliases: [],
|
|
belongsTo: [],
|
|
relatedTo: [],
|
|
status: 'Active',
|
|
owner: 'Luca',
|
|
cadence: null,
|
|
modifiedAt: 1700000000,
|
|
createdAt: null,
|
|
fileSize: 1024,
|
|
template: null, sort: null,
|
|
outgoingLinks: [],
|
|
},
|
|
{
|
|
path: '/vault/topic/dev.md',
|
|
filename: 'dev.md',
|
|
title: 'Software Development',
|
|
isA: 'Topic',
|
|
aliases: ['Dev'],
|
|
belongsTo: [],
|
|
relatedTo: [],
|
|
status: null,
|
|
owner: null,
|
|
cadence: null,
|
|
modifiedAt: 1700000000,
|
|
createdAt: null,
|
|
fileSize: 256,
|
|
template: null, sort: null,
|
|
outgoingLinks: [],
|
|
},
|
|
]
|
|
|
|
const mockAllContent: Record<string, string> = {
|
|
'/vault/project/test.md': '---\ntitle: Test Project\nis_a: Project\n---\n\n# Test Project\n\nSome content.',
|
|
'/vault/topic/dev.md': '---\ntitle: Software Development\nis_a: Topic\n---\n\n# Software Development\n',
|
|
}
|
|
|
|
const mockVaultList = {
|
|
vaults: [{ label: 'Test Vault', path: '/vault' }],
|
|
active_vault: '/vault',
|
|
hidden_defaults: [],
|
|
}
|
|
|
|
const mockCommandResults: Record<string, unknown> = {
|
|
load_vault_list: mockVaultList,
|
|
list_vault: mockEntries,
|
|
list_vault_folders: [],
|
|
list_views: [],
|
|
get_all_content: mockAllContent,
|
|
get_modified_files: [],
|
|
get_note_content: mockAllContent['/vault/project/test.md'] || '',
|
|
get_file_history: [],
|
|
get_settings: { auto_pull_interval_minutes: null, telemetry_consent: true, crash_reporting_enabled: null, analytics_enabled: null, anonymous_id: null, release_channel: null },
|
|
git_pull: { status: 'up_to_date', message: 'Already up to date', updatedFiles: [], conflictFiles: [] },
|
|
save_settings: null,
|
|
check_vault_exists: true,
|
|
get_default_vault_path: '/Users/mock/Documents/Getting Started',
|
|
list_themes: [],
|
|
get_vault_settings: { theme: null },
|
|
}
|
|
|
|
function buildNeighborhoodEntry({
|
|
path,
|
|
title,
|
|
relatedRefs,
|
|
outgoingLinks,
|
|
modifiedAt,
|
|
}: {
|
|
path: string
|
|
title: string
|
|
relatedRefs: string[]
|
|
outgoingLinks: string[]
|
|
modifiedAt: number
|
|
}) {
|
|
return {
|
|
path,
|
|
filename: path.split('/').pop() ?? `${title.toLowerCase()}.md`,
|
|
title,
|
|
isA: 'Note',
|
|
aliases: [],
|
|
belongsTo: [],
|
|
relatedTo: relatedRefs,
|
|
status: null,
|
|
modifiedAt,
|
|
createdAt: null,
|
|
fileSize: 128,
|
|
archived: false,
|
|
snippet: '',
|
|
wordCount: 12,
|
|
relationships: relatedRefs.length > 0 ? { 'Related to': relatedRefs } : {},
|
|
icon: null,
|
|
color: null,
|
|
order: null,
|
|
sidebarLabel: null,
|
|
template: null,
|
|
sort: null,
|
|
view: null,
|
|
visible: true,
|
|
organized: false,
|
|
favorite: false,
|
|
favoriteIndex: null,
|
|
listPropertiesDisplay: [],
|
|
outgoingLinks,
|
|
properties: {},
|
|
hasH1: true,
|
|
fileKind: 'markdown',
|
|
}
|
|
}
|
|
|
|
const neighborhoodEntries = [
|
|
buildNeighborhoodEntry({
|
|
path: '/vault/alpha.md',
|
|
title: 'Alpha',
|
|
relatedRefs: ['[[Beta]]'],
|
|
outgoingLinks: ['Beta'],
|
|
modifiedAt: 1700000003,
|
|
}),
|
|
buildNeighborhoodEntry({
|
|
path: '/vault/beta.md',
|
|
title: 'Beta',
|
|
relatedRefs: ['[[Gamma]]'],
|
|
outgoingLinks: ['Gamma'],
|
|
modifiedAt: 1700000002,
|
|
}),
|
|
buildNeighborhoodEntry({
|
|
path: '/vault/gamma.md',
|
|
title: 'Gamma',
|
|
relatedRefs: [],
|
|
outgoingLinks: [],
|
|
modifiedAt: 1700000001,
|
|
}),
|
|
]
|
|
|
|
const neighborhoodContent: Record<string, string> = {
|
|
'/vault/alpha.md': '# Alpha\n\n[[Beta]]',
|
|
'/vault/beta.md': '# Beta\n\n[[Gamma]]',
|
|
'/vault/gamma.md': '# Gamma',
|
|
}
|
|
|
|
function configureNeighborhoodVault() {
|
|
mockCommandResults.list_vault = neighborhoodEntries
|
|
mockCommandResults.get_all_content = neighborhoodContent
|
|
mockCommandResults.get_note_content = ({ path }: { path: string }) => neighborhoodContent[path] ?? ''
|
|
}
|
|
|
|
function configureNeighborhoodFavoritesVault() {
|
|
mockCommandResults.list_vault = neighborhoodEntries.map((entry) =>
|
|
entry.path === '/vault/alpha.md'
|
|
? { ...entry, favorite: true, favoriteIndex: 0 }
|
|
: entry,
|
|
)
|
|
mockCommandResults.get_all_content = neighborhoodContent
|
|
mockCommandResults.get_note_content = ({ path }: { path: string }) => neighborhoodContent[path] ?? ''
|
|
}
|
|
|
|
function getHeaderForNoteList(noteListContainer: HTMLElement) {
|
|
return within(noteListContainer.parentElement as HTMLElement).getByRole('heading', { level: 3 })
|
|
}
|
|
|
|
async function enterNeighborhood(noteListContainer: HTMLElement, title: string) {
|
|
await act(async () => {
|
|
fireEvent.click(within(noteListContainer).getByText(title), { metaKey: true })
|
|
await Promise.resolve()
|
|
})
|
|
}
|
|
|
|
async function pressEscape() {
|
|
await act(async () => {
|
|
fireEvent.keyDown(window, { key: 'Escape' })
|
|
await Promise.resolve()
|
|
})
|
|
}
|
|
|
|
function resetMockCommandResults() {
|
|
Object.assign(mockCommandResults, {
|
|
load_vault_list: mockVaultList,
|
|
list_vault: mockEntries,
|
|
list_vault_folders: [],
|
|
list_views: [],
|
|
get_all_content: mockAllContent,
|
|
get_modified_files: [],
|
|
get_note_content: mockAllContent['/vault/project/test.md'] || '',
|
|
get_file_history: [],
|
|
get_settings: {
|
|
auto_pull_interval_minutes: null,
|
|
telemetry_consent: true,
|
|
crash_reporting_enabled: null,
|
|
analytics_enabled: null,
|
|
anonymous_id: null,
|
|
release_channel: null,
|
|
},
|
|
save_settings: null,
|
|
check_vault_exists: true,
|
|
get_default_vault_path: '/Users/mock/Documents/Getting Started',
|
|
list_themes: [],
|
|
get_vault_settings: { theme: null },
|
|
})
|
|
}
|
|
|
|
function resolveMockCommandResult(cmd: string, args?: unknown) {
|
|
const result = mockCommandResults[cmd]
|
|
return typeof result === 'function'
|
|
? (result as (input?: unknown) => unknown)(args)
|
|
: result ?? null
|
|
}
|
|
|
|
vi.mock('./mock-tauri', () => ({
|
|
isTauri: () => false,
|
|
mockInvoke: vi.fn(async (cmd: string, args?: unknown) => resolveMockCommandResult(cmd, args)),
|
|
addMockEntry: vi.fn(),
|
|
updateMockContent: vi.fn(),
|
|
}))
|
|
|
|
// Mock ai-chat utilities
|
|
vi.mock('./utils/ai-chat', () => ({
|
|
buildSystemPrompt: vi.fn(() => ({ prompt: '', totalTokens: 0, truncated: false })),
|
|
checkClaudeCli: vi.fn(async () => ({ installed: false })),
|
|
streamClaudeChat: vi.fn(async () => 'mock-session'),
|
|
}))
|
|
|
|
// Mock BlockNote components (they need DOM APIs not available in jsdom)
|
|
vi.mock('@blocknote/core', () => ({
|
|
BlockNoteSchema: { create: () => ({ extend: () => ({}) }) },
|
|
createCodeBlockSpec: vi.fn(() => ({})),
|
|
defaultInlineContentSpecs: {},
|
|
filterSuggestionItems: vi.fn(() => []),
|
|
}))
|
|
|
|
vi.mock('@blocknote/code-block', () => ({
|
|
codeBlockOptions: {},
|
|
}))
|
|
|
|
vi.mock('@blocknote/core/extensions', () => ({
|
|
filterSuggestionItems: vi.fn(() => []),
|
|
}))
|
|
|
|
vi.mock('@blocknote/react', () => ({
|
|
createReactInlineContentSpec: () => ({ render: () => null }),
|
|
BlockNoteViewRaw: ({ children }: { children?: ReactNode }) => (
|
|
<div data-testid="blocknote-view">
|
|
<div contentEditable suppressContentEditableWarning data-testid="mock-editor">
|
|
mock editor
|
|
</div>
|
|
{children}
|
|
</div>
|
|
),
|
|
ComponentsContext: {
|
|
Provider: ({ children }: { children?: ReactNode }) => <>{children}</>,
|
|
},
|
|
useCreateBlockNote: () => ({
|
|
tryParseMarkdownToBlocks: async () => [],
|
|
replaceBlocks: () => {},
|
|
document: [],
|
|
insertInlineContent: () => {},
|
|
setTextCursorPosition: () => {},
|
|
focus: () => {},
|
|
onMount: (cb: () => void) => { cb(); return () => {} },
|
|
}),
|
|
SideMenuController: () => null,
|
|
SuggestionMenuController: () => null,
|
|
}))
|
|
|
|
vi.mock('@blocknote/mantine', () => ({
|
|
components: {},
|
|
BlockNoteView: ({ children }: { children?: React.ReactNode }) => <div data-testid="blocknote-view">{children}</div>,
|
|
}))
|
|
|
|
vi.mock('@blocknote/mantine/style.css', () => ({}))
|
|
|
|
vi.mock('./components/tolariaEditorFormatting', () => ({
|
|
TolariaFormattingToolbar: () => null,
|
|
TolariaFormattingToolbarController: () => null,
|
|
}))
|
|
|
|
import App from './App'
|
|
|
|
const CLAUDE_CODE_ONBOARDING_DISMISSED_KEY = 'tolaria:claude-code-onboarding-dismissed'
|
|
|
|
describe('App', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
resetMockCommandResults()
|
|
localStorage.clear()
|
|
localStorage.setItem(CLAUDE_CODE_ONBOARDING_DISMISSED_KEY, '1')
|
|
})
|
|
|
|
it('renders the four-panel layout', async () => {
|
|
render(<App />)
|
|
expect(await screen.findByText('All Notes', {}, { timeout: 5000 })).toBeInTheDocument()
|
|
})
|
|
|
|
it('loads and displays vault entries in sidebar', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
// Entries appear in both Sidebar and NoteList
|
|
expect(screen.getAllByText('Test Project').length).toBeGreaterThan(0)
|
|
expect(screen.getAllByText('Software Development').length).toBeGreaterThan(0)
|
|
})
|
|
})
|
|
|
|
it('shows empty state in editor when no note is selected', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('Select a note to start editing')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('shows keyboard shortcut hints', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText(/Cmd\+P or Cmd\+O to search/)).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('registers keyboard shortcuts without error', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
// Cmd+S with no pending changes shows "Nothing to save"
|
|
fireEvent.keyDown(window, { key: 's', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(screen.getByText('Nothing to save')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('shows onboarding after telemetry consent when no active vault is configured', async () => {
|
|
mockCommandResults.get_settings = {
|
|
auto_pull_interval_minutes: null,
|
|
telemetry_consent: null,
|
|
crash_reporting_enabled: null,
|
|
analytics_enabled: null,
|
|
anonymous_id: null,
|
|
release_channel: null,
|
|
}
|
|
mockCommandResults.load_vault_list = { vaults: [], active_vault: null, hidden_defaults: [] }
|
|
mockCommandResults.check_vault_exists = (args?: { path?: string }) => args?.path === '/Users/mock/Documents/Getting Started'
|
|
|
|
render(<App />)
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByText('Help improve Tolaria')).toBeInTheDocument()
|
|
})
|
|
|
|
fireEvent.click(screen.getByTestId('telemetry-accept'))
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByTestId('welcome-screen')).toBeInTheDocument()
|
|
})
|
|
expect(screen.getByTestId('welcome-open-folder')).toHaveTextContent('Open existing vault')
|
|
})
|
|
|
|
it.each([
|
|
['telemetry-accept', 'Allow anonymous reporting'],
|
|
['telemetry-decline', 'No thanks'],
|
|
])('ignores a remembered default vault after %s when onboarding was never completed', async (buttonTestId) => {
|
|
const rememberedDefaultVaultPath = '/Volumes/Jupiter/Workspace/laputa-app/demo-vault-v2'
|
|
localStorage.setItem('tolaria_welcome_dismissed', '1')
|
|
mockCommandResults.get_default_vault_path = rememberedDefaultVaultPath
|
|
mockCommandResults.get_settings = {
|
|
auto_pull_interval_minutes: null,
|
|
telemetry_consent: null,
|
|
crash_reporting_enabled: null,
|
|
analytics_enabled: null,
|
|
anonymous_id: null,
|
|
release_channel: null,
|
|
}
|
|
mockCommandResults.load_vault_list = {
|
|
vaults: [],
|
|
active_vault: rememberedDefaultVaultPath,
|
|
hidden_defaults: [],
|
|
}
|
|
mockCommandResults.check_vault_exists = (args?: { path?: string }) => args?.path === rememberedDefaultVaultPath
|
|
|
|
render(<App />)
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByText('Help improve Tolaria')).toBeInTheDocument()
|
|
})
|
|
|
|
fireEvent.click(screen.getByTestId(buttonTestId))
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByTestId('welcome-screen')).toBeInTheDocument()
|
|
})
|
|
expect(screen.getByTestId('welcome-open-folder')).toHaveTextContent('Open existing vault')
|
|
})
|
|
|
|
it('keeps startup on a neutral loading state while the last vault is still resolving', async () => {
|
|
localStorage.setItem('tolaria_welcome_dismissed', '1')
|
|
|
|
let resolveVaultList: ((value: typeof mockVaultList) => void) | null = null
|
|
|
|
mockCommandResults.load_vault_list = () =>
|
|
new Promise<typeof mockVaultList>((resolve) => {
|
|
resolveVaultList = resolve
|
|
})
|
|
mockCommandResults.check_vault_exists = (args?: { path?: string }) => args?.path === '/work'
|
|
|
|
render(<App />)
|
|
|
|
await act(async () => {
|
|
await Promise.resolve()
|
|
await Promise.resolve()
|
|
await Promise.resolve()
|
|
})
|
|
|
|
expect(screen.getByText('Loading…')).toBeInTheDocument()
|
|
expect(screen.queryByText('Vault not found')).not.toBeInTheDocument()
|
|
|
|
await act(async () => {
|
|
resolveVaultList?.({
|
|
vaults: [{ label: 'Work Vault', path: '/work' }],
|
|
active_vault: '/work',
|
|
hidden_defaults: [],
|
|
})
|
|
await Promise.resolve()
|
|
})
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByTestId('status-vault-trigger')).toHaveTextContent('Work Vault')
|
|
})
|
|
expect(screen.queryByText('Vault not found')).not.toBeInTheDocument()
|
|
})
|
|
|
|
it('shows the missing-vault screen once the resolved active vault is confirmed missing', async () => {
|
|
localStorage.setItem('tolaria_welcome_dismissed', '1')
|
|
mockCommandResults.load_vault_list = {
|
|
vaults: [{ label: 'Old Vault', path: '/missing-vault' }],
|
|
active_vault: '/missing-vault',
|
|
hidden_defaults: [],
|
|
}
|
|
mockCommandResults.check_vault_exists = (args?: { path?: string }) => args?.path === '/Users/mock/Documents/Getting Started'
|
|
|
|
render(<App />)
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByText('Vault not found')).toBeInTheDocument()
|
|
})
|
|
expect(screen.getByTestId('welcome-open-folder')).toHaveTextContent('Choose a different folder')
|
|
})
|
|
|
|
it('renders sidebar with correct default selection (All Notes)', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
// "All Notes" should be rendered as the selected nav item
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
expect(screen.getByText('Archive')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('pressing Escape in Neighborhood mode blurs the editor before unwinding note-list history', async () => {
|
|
configureNeighborhoodVault()
|
|
|
|
render(<App />)
|
|
|
|
const noteListContainer = await screen.findByTestId('note-list-container')
|
|
const getHeader = () => getHeaderForNoteList(noteListContainer)
|
|
|
|
await waitFor(() => {
|
|
expect(getHeader()).toHaveTextContent('Inbox')
|
|
})
|
|
|
|
await enterNeighborhood(noteListContainer, 'Alpha')
|
|
|
|
await waitFor(() => {
|
|
expect(getHeader()).toHaveTextContent('Alpha')
|
|
})
|
|
|
|
const editor = screen.getByTestId('mock-editor')
|
|
editor.focus()
|
|
expect(editor).toHaveFocus()
|
|
|
|
await pressEscape()
|
|
|
|
await waitFor(() => {
|
|
expect(noteListContainer).toHaveFocus()
|
|
expect(getHeader()).toHaveTextContent('Alpha')
|
|
})
|
|
|
|
await enterNeighborhood(noteListContainer, 'Beta')
|
|
|
|
await waitFor(() => {
|
|
expect(getHeader()).toHaveTextContent('Beta')
|
|
})
|
|
|
|
await pressEscape()
|
|
|
|
await waitFor(() => {
|
|
expect(getHeader()).toHaveTextContent('Alpha')
|
|
})
|
|
|
|
await pressEscape()
|
|
|
|
await waitFor(() => {
|
|
expect(getHeader()).toHaveTextContent('Inbox')
|
|
})
|
|
})
|
|
|
|
it('opens favorites directly into Neighborhood mode', async () => {
|
|
configureNeighborhoodFavoritesVault()
|
|
|
|
render(<App />)
|
|
|
|
const sidebar = await screen.findByText('FAVORITES')
|
|
fireEvent.click(within(sidebar.closest('div')?.parentElement as HTMLElement).getByText('Alpha'))
|
|
|
|
const noteListContainer = await screen.findByTestId('note-list-container')
|
|
await waitFor(() => {
|
|
expect(getHeaderForNoteList(noteListContainer)).toHaveTextContent('Alpha')
|
|
})
|
|
|
|
expect(screen.getByText('Related to')).toBeInTheDocument()
|
|
expect(screen.getByText('Beta')).toBeInTheDocument()
|
|
})
|
|
|
|
it('defaults to All Notes when explicit organization is disabled in vault config', async () => {
|
|
const workVaultPath = '/Users/mock/Documents/Work'
|
|
mockCommandResults.load_vault_list = {
|
|
vaults: [{ label: 'Work Vault', path: workVaultPath }],
|
|
active_vault: workVaultPath,
|
|
hidden_defaults: [],
|
|
}
|
|
const disabledWorkflowConfig = JSON.stringify({
|
|
zoom: null,
|
|
view_mode: null,
|
|
editor_mode: null,
|
|
tag_colors: null,
|
|
status_colors: null,
|
|
property_display_modes: null,
|
|
inbox: { noteListProperties: null, explicitOrganization: false },
|
|
})
|
|
localStorage.setItem(`laputa:vault-config:${workVaultPath}`, disabledWorkflowConfig)
|
|
|
|
render(<App />)
|
|
|
|
await waitFor(() => {
|
|
expect(within(screen.getByTestId('sidebar-top-nav')).queryByText('Inbox')).not.toBeInTheDocument()
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('renders status bar', async () => {
|
|
render(<App />)
|
|
// StatusBar should be present
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
// The status bar element should exist in the DOM
|
|
const appShell = document.querySelector('.app-shell')
|
|
expect(appShell).toBeInTheDocument()
|
|
})
|
|
|
|
it('switches vaults from the bottom bar after onboarding is ready', async () => {
|
|
mockCommandResults.load_vault_list = {
|
|
vaults: [
|
|
{ label: 'Test Vault', path: '/work' },
|
|
{ label: 'Work Vault', path: '/vault-2' },
|
|
],
|
|
active_vault: '/work',
|
|
hidden_defaults: [],
|
|
}
|
|
|
|
render(<App />)
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByTestId('status-vault-trigger')).toHaveTextContent('Test Vault')
|
|
})
|
|
|
|
fireEvent.click(screen.getByRole('button', { name: 'Switch vault' }))
|
|
fireEvent.click(screen.getByTestId('vault-menu-item-Work Vault'))
|
|
|
|
await waitFor(() => {
|
|
expect(screen.getByTestId('status-vault-trigger')).toHaveTextContent('Work Vault')
|
|
})
|
|
})
|
|
|
|
it('Cmd+1 hides sidebar and note list (editor-only mode)', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
// All panels visible by default
|
|
expect(document.querySelector('.app__sidebar')).toBeInTheDocument()
|
|
expect(document.querySelector('.app__note-list')).toBeInTheDocument()
|
|
|
|
// Cmd+1 → editor-only
|
|
fireEvent.keyDown(window, { key: '1', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(document.querySelector('.app__sidebar')).not.toBeInTheDocument()
|
|
expect(document.querySelector('.app__note-list')).not.toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('Cmd+2 shows editor + note list (sidebar hidden)', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
fireEvent.keyDown(window, { key: '2', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(document.querySelector('.app__sidebar')).not.toBeInTheDocument()
|
|
expect(document.querySelector('.app__note-list')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('Cmd+3 restores all panels after Cmd+1', async () => {
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
// Switch to editor-only first
|
|
fireEvent.keyDown(window, { key: '1', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(document.querySelector('.app__sidebar')).not.toBeInTheDocument()
|
|
})
|
|
|
|
// Cmd+3 → all panels
|
|
fireEvent.keyDown(window, { key: '3', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(document.querySelector('.app__sidebar')).toBeInTheDocument()
|
|
expect(document.querySelector('.app__note-list')).toBeInTheDocument()
|
|
})
|
|
})
|
|
|
|
it('updates the main-window size constraints when the view mode changes', async () => {
|
|
const { invoke } = await import('@tauri-apps/api/core') as { invoke: ReturnType<typeof vi.fn> }
|
|
|
|
render(<App />)
|
|
await waitFor(() => {
|
|
expect(screen.getByText('All Notes')).toBeInTheDocument()
|
|
})
|
|
|
|
invoke.mockClear()
|
|
|
|
fireEvent.keyDown(window, { key: '1', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(invoke).toHaveBeenCalledWith('update_current_window_min_size', {
|
|
minWidth: 480,
|
|
minHeight: 400,
|
|
growToFit: true,
|
|
})
|
|
})
|
|
|
|
invoke.mockClear()
|
|
|
|
fireEvent.keyDown(window, { key: '3', metaKey: true })
|
|
await waitFor(() => {
|
|
expect(invoke).toHaveBeenCalledWith('update_current_window_min_size', {
|
|
minWidth: 880,
|
|
minHeight: 400,
|
|
growToFit: true,
|
|
})
|
|
})
|
|
})
|
|
})
|