* feat: Add shimmer text animation for processing state indicators * feat: Redesign CollapsibleContentBlock component with improved UX * feat: Add conditional setting display support with dependsOn field * feat: Add showAgenticTurnStats setting for per-turn statistics * feat: Update ChatMessageAgenticContent with improved UI and new features * feat: Enhance file read tool UI/UX * feat: Refine styling of collapsible content and code preview blocks * feat: add terminal variant to CollapsibleContentBlock * feat: add built-in tools UI registry * feat: extract ChatMessageReasoningBlock and ChatMessageToolCallBlock * refactor: simplify ChatMessageAgenticContent to use extracted blocks * fix: correct markdown content block margin spacing * fix: reorganize SettingsChatFields layout and reset button positioning * fix: use direct map access in agentic store session methods * refactor: remove reasoning preview/throttle system from CollapsibleContentBlock * feat: add auto-scroll to reasoning block and remove showThoughtInProgress * feat: add ChatMessageToolCallDateTime component and support for new tool types * feat: improve auto-scroll reliability in reasoning block with RAF coalescing and MutationObserver * feat: show MCP server favicon for tools without a built-in icon * feat: add search-results parsing utilities and tests * feat: add ChatMessageToolCallSearchResults component * feat: integrate search results rendering into ChatMessageAgenticContent * feat: display tool call input alongside output in ChatMessageToolCallBlock * style: use muted foreground color in reasoning block content * chore: Format * feat: Refine reasoning block layout and make pending thoughts display configurable * feat: Stream tool call code blocks with auto-scroll and handle partial JSON * feat: add streaming permission gate infrastructure * feat: wire permission gate into the agentic loop * fix: bail out on abort and skip already-approved tool calls * fix: clear partial tool calls on abort and savePartialResponse * test: cover partial tool call cleanup end-to-end * refactor: Remove streaming permission gate logic * fix: Correct autoscroll and streaming gates for tool calls and reasoning blocks * refactor: Chat Message Assistant componentization * fix: Show health metadata for disabled MCP servers and promote connections on enable * fix: Inherit global enabled state for missing MCP per-chat overrides * refactor: Cleanup * refactor: Split ChatMessageToolCallBlock into dedicated components * feat: Add live streaming and auto-scroll for tool execution output * feat: Add line numbers and change markers to file edit diffs * chore: Formatting * feat: Add type definitions and utilities for recommended MCP servers * feat: Add recommended MCP servers configuration and storage key * feat: Add McpServerCardCompact component for recommended servers * feat: Add recommended servers section to Add New Server dialog * feat: Update McpServerForm to support authorization requirements * feat: Add select-none classes for text selection prevention * feat: Add recommended MCP server icon assets * refactor: Store dismissed MCP recommendations as a boolean flag * feat: Render tool results as JSON or Markdown based on detected content type * feat: UI improvement * feat: Render search block early and update heading to show execution state * fix: Prevent non-web-search tools from triggering the search UI block * refactor: Cleanup * refactor: Extract hardcoded icon size classes into shared constants * refactor: Extract hardcoded tool result separator into a shared constant * refactor: Tool Calls UI/logic * refactor: Cleanup * refactor: Cleanup * refactor: Cleanup
144 lines
5.3 KiB
TypeScript
144 lines
5.3 KiB
TypeScript
import { afterEach, beforeAll, beforeEach, describe, expect, it } from 'vitest';
|
|
import { CONFIG_LOCALSTORAGE_KEY } from '$lib/constants';
|
|
import { SETTINGS_KEYS } from '$lib/constants/settings-keys';
|
|
import type { DatabaseConversation } from '$lib/types/database';
|
|
|
|
// node env unit project has no DOM, install a minimal localStorage backed by a Map
|
|
beforeAll(() => {
|
|
const store = new Map<string, string>();
|
|
const polyfill: Storage = {
|
|
get length() {
|
|
return store.size;
|
|
},
|
|
clear: () => store.clear(),
|
|
getItem: (k) => (store.has(k) ? store.get(k)! : null),
|
|
key: (i) => Array.from(store.keys())[i] ?? null,
|
|
removeItem: (k) => {
|
|
store.delete(k);
|
|
},
|
|
setItem: (k, v) => {
|
|
store.set(k, String(v));
|
|
}
|
|
};
|
|
(globalThis as unknown as { localStorage: Storage }).localStorage = polyfill;
|
|
});
|
|
|
|
/**
|
|
* Regression coverage for the bug where MCP servers flipped to "disabled"
|
|
* after sending the first message on a fresh chat (see comment in
|
|
* `MCPStore.createConversation`: empty `mcpServerOverrides` should inherit
|
|
* `mcpServers[i].enabled`, not be treated as all-off).
|
|
*/
|
|
describe('conversationsStore MCP override resolution', () => {
|
|
beforeEach(async () => {
|
|
localStorage.clear();
|
|
// Two configured servers: alpha is globally disabled, bravo enabled.
|
|
localStorage.setItem(
|
|
CONFIG_LOCALSTORAGE_KEY,
|
|
JSON.stringify({
|
|
[SETTINGS_KEYS.MCP_SERVERS]: JSON.stringify([
|
|
{ id: 'alpha', enabled: false, url: 'https://alpha.example.com/mcp' },
|
|
{ id: 'bravo', enabled: true, url: 'https://bravo.example.com/mcp' }
|
|
])
|
|
})
|
|
);
|
|
|
|
// The settings store constructor bails in node env (no `browser`),
|
|
// so seed the config directly. The shape mirrors what `loadConfig`
|
|
// would build from localStorage.
|
|
const { settingsStore } = await import('$lib/stores/settings.svelte');
|
|
const raw = localStorage.getItem(CONFIG_LOCALSTORAGE_KEY) ?? '{}';
|
|
const saved = JSON.parse(raw) as Record<string, unknown>;
|
|
settingsStore.config = {
|
|
...settingsStore.config,
|
|
[SETTINGS_KEYS.MCP_SERVERS]: saved[SETTINGS_KEYS.MCP_SERVERS]
|
|
};
|
|
});
|
|
|
|
afterEach(() => {
|
|
localStorage.clear();
|
|
});
|
|
|
|
function makeConversation(
|
|
overrides?: { serverId: string; enabled: boolean }[]
|
|
): DatabaseConversation {
|
|
return {
|
|
id: 'conv-1',
|
|
currNode: null,
|
|
lastModified: 0,
|
|
name: 'Test chat',
|
|
mcpServerOverrides: overrides
|
|
};
|
|
}
|
|
|
|
it('inherits server.enabled when no conversation is active', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = null;
|
|
|
|
expect(conversationsStore.isMcpServerEnabledForChat('alpha')).toBe(false);
|
|
expect(conversationsStore.isMcpServerEnabledForChat('bravo')).toBe(true);
|
|
});
|
|
|
|
it('inherits server.enabled on a newly created chat with no overrides', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = makeConversation();
|
|
|
|
// Empty override list: must fall back to global server.enabled, not all-off.
|
|
expect(conversationsStore.isMcpServerEnabledForChat('alpha')).toBe(false);
|
|
expect(conversationsStore.isMcpServerEnabledForChat('bravo')).toBe(true);
|
|
});
|
|
|
|
it('inherits server.enabled on a newly created chat when overrides is undefined', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = makeConversation(undefined);
|
|
|
|
expect(conversationsStore.isMcpServerEnabledForChat('alpha')).toBe(false);
|
|
expect(conversationsStore.isMcpServerEnabledForChat('bravo')).toBe(true);
|
|
});
|
|
|
|
it('uses explicit per-chat overrides, with defaults for non-overridden servers', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
// Override flips bravo off for this chat, alpha keeps its global default.
|
|
conversationsStore.activeConversation = makeConversation([
|
|
{ serverId: 'bravo', enabled: false }
|
|
]);
|
|
|
|
expect(conversationsStore.isMcpServerEnabledForChat('alpha')).toBe(false);
|
|
expect(conversationsStore.isMcpServerEnabledForChat('bravo')).toBe(false);
|
|
});
|
|
|
|
it('getAllMcpServerOverrides returns a complete list merged from defaults', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = makeConversation([
|
|
{ serverId: 'alpha', enabled: true }
|
|
]);
|
|
|
|
expect(conversationsStore.getAllMcpServerOverrides()).toEqual([
|
|
{ serverId: 'alpha', enabled: true },
|
|
{ serverId: 'bravo', enabled: true }
|
|
]);
|
|
});
|
|
|
|
it('getAllMcpServerOverrides falls back to defaults when there are no explicit overrides', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = makeConversation();
|
|
|
|
expect(conversationsStore.getAllMcpServerOverrides()).toEqual([
|
|
{ serverId: 'alpha', enabled: false },
|
|
{ serverId: 'bravo', enabled: true }
|
|
]);
|
|
});
|
|
|
|
it('getMcpServerOverride returns the global default when the server has no explicit override', async () => {
|
|
const { conversationsStore } = await import('$lib/stores/conversations.svelte');
|
|
conversationsStore.activeConversation = makeConversation([
|
|
{ serverId: 'alpha', enabled: true }
|
|
]);
|
|
|
|
expect(conversationsStore.getMcpServerOverride('bravo')).toEqual({
|
|
serverId: 'bravo',
|
|
enabled: true
|
|
});
|
|
});
|
|
});
|