mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-26 20:51:01 -05:00
* 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
68 lines
2.3 KiB
TypeScript
68 lines
2.3 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { isExitCodeSummaryLine, parseExecShellCommandExitStatus } from '$lib/utils';
|
|
|
|
describe('parseExecShellCommandExitStatus', () => {
|
|
it('returns undefined when result is empty', () => {
|
|
expect(parseExecShellCommandExitStatus(undefined)).toBeUndefined();
|
|
expect(parseExecShellCommandExitStatus('')).toBeUndefined();
|
|
});
|
|
|
|
it('parses a zero-exit summary at end of clean stdout', () => {
|
|
const status = parseExecShellCommandExitStatus('hello world\n[exit code: 0]');
|
|
expect(status).toEqual({
|
|
code: 0,
|
|
timedOut: false,
|
|
rawText: '[exit code: 0]'
|
|
});
|
|
});
|
|
|
|
it('parses a non-zero exit summary', () => {
|
|
const status = parseExecShellCommandExitStatus('cargo: error[E0425]\n[exit code: 101]');
|
|
expect(status?.code).toBe(101);
|
|
expect(status?.timedOut).toBe(false);
|
|
});
|
|
|
|
it('detects timed-out suffix', () => {
|
|
const status = parseExecShellCommandExitStatus(
|
|
'still building...\n[exit code: -1] [exit due to timed out]'
|
|
);
|
|
expect(status?.code).toBe(-1);
|
|
expect(status?.timedOut).toBe(true);
|
|
});
|
|
|
|
it('tolerates trailing whitespace after the tail line', () => {
|
|
const status = parseExecShellCommandExitStatus('[exit code: 0] \n\n');
|
|
expect(status?.code).toBe(0);
|
|
});
|
|
|
|
it('does not match an explanatory mention of "[exit code:" not at end', () => {
|
|
// Any non-trailing occurrence should NOT trigger the badge - we
|
|
// anchor to the absolute end of the string.
|
|
const status = parseExecShellCommandExitStatus(
|
|
'the shell prints [exit code: 0]\nwhen done\nreally done\n'
|
|
);
|
|
expect(status).toBeUndefined();
|
|
});
|
|
|
|
it('does not match mid-stream exit lines followed by more output', () => {
|
|
const status = parseExecShellCommandExitStatus('[exit code: 0]\nmore output keeps streaming');
|
|
expect(status).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe('isExitCodeSummaryLine', () => {
|
|
const status = parseExecShellCommandExitStatus('hello\n[exit code: 7]');
|
|
|
|
it('matches when line trims to the tail text', () => {
|
|
expect(isExitCodeSummaryLine(' [exit code: 7] ', status)).toBe(true);
|
|
});
|
|
|
|
it('does not match unrelated lines', () => {
|
|
expect(isExitCodeSummaryLine('plain output line', status)).toBe(false);
|
|
});
|
|
|
|
it('returns false for missing status argument', () => {
|
|
expect(isExitCodeSummaryLine('[exit code: 7]', undefined)).toBe(false);
|
|
});
|
|
});
|