chore: phase 3 refactorings

This commit is contained in:
2026-02-21 18:10:26 +01:00
parent 87200a8ad9
commit 9df081965b
9 changed files with 252 additions and 46 deletions

View File

@@ -1,5 +1,19 @@
import { describe, expect, it } from 'vitest';
import { getSingletonToolTabSpec, openSingletonToolTab } from '../../../src/renderer/navigation/tabPolicy';
import {
getChatTabSpec,
getEntityTabSpec,
getGitDiffCommitTabSpec,
getGitDiffFileTabSpec,
getImportTabSpec,
parseGitDiffTabId,
openChatTab,
getSingletonToolTabSpec,
openEntityTab,
openGitDiffCommitTab,
openGitDiffFileTab,
openImportTab,
openSingletonToolTab,
} from '../../../src/renderer/navigation/tabPolicy';
describe('tabPolicy', () => {
it('provides canonical singleton tab specs', () => {
@@ -22,4 +36,97 @@ describe('tabPolicy', () => {
expect(captured).toEqual({ type: 'site-validation', id: 'site-validation', isTransient: false });
});
it('provides canonical entity tab spec for preview and pin intents', () => {
expect(getEntityTabSpec('post', 'post-1', 'preview')).toEqual({
type: 'post',
id: 'post-1',
isTransient: true,
});
expect(getEntityTabSpec('media', 'media-1', 'pin')).toEqual({
type: 'media',
id: 'media-1',
isTransient: false,
});
});
it('opens entity tabs from canonical policy', () => {
let captured: { type: string; id: string; isTransient: boolean } | null = null;
const openTab = (tab: { type: string; id: string; isTransient: boolean }) => {
captured = tab;
};
openEntityTab(openTab, 'post', 'post-2', 'pin');
expect(captured).toEqual({ type: 'post', id: 'post-2', isTransient: false });
});
it('provides canonical chat and import tab specs', () => {
expect(getChatTabSpec('conversation-1')).toEqual({
type: 'chat',
id: 'conversation-1',
isTransient: false,
});
expect(getImportTabSpec('definition-1')).toEqual({
type: 'import',
id: 'definition-1',
isTransient: false,
});
});
it('opens canonical chat and import tabs', () => {
const opened: Array<{ type: string; id: string; isTransient: boolean }> = [];
const openTab = (tab: { type: string; id: string; isTransient: boolean }) => {
opened.push(tab);
};
openChatTab(openTab, 'conversation-2');
openImportTab(openTab, 'definition-2');
expect(opened).toEqual([
{ type: 'chat', id: 'conversation-2', isTransient: false },
{ type: 'import', id: 'definition-2', isTransient: false },
]);
});
it('builds and parses git-diff file and commit tab specs', () => {
expect(getGitDiffFileTabSpec('posts/first.md', 'preview')).toEqual({
type: 'git-diff',
id: 'git-diff:posts/first.md',
isTransient: true,
});
expect(getGitDiffCommitTabSpec('abc123def', 'pin')).toEqual({
type: 'git-diff',
id: 'git-diff:commit:abc123def',
isTransient: false,
});
expect(parseGitDiffTabId('git-diff:posts/first.md')).toEqual({
resource: 'posts/first.md',
commitHash: null,
});
expect(parseGitDiffTabId('git-diff:commit:abc123def')).toEqual({
resource: 'commit:abc123def',
commitHash: 'abc123def',
});
});
it('opens git-diff file and commit tabs from shared policy', () => {
const opened: Array<{ type: string; id: string; isTransient: boolean }> = [];
const openTab = (tab: { type: string; id: string; isTransient: boolean }) => {
opened.push(tab);
};
openGitDiffFileTab(openTab, 'posts/second.md', 'preview');
openGitDiffCommitTab(openTab, 'def456', 'pin');
expect(opened).toEqual([
{ type: 'git-diff', id: 'git-diff:posts/second.md', isTransient: true },
{ type: 'git-diff', id: 'git-diff:commit:def456', isTransient: false },
]);
});
});