Replace the legacy terminal flow with a shared authenticated WebSocket runtime used across web, desktop, relay, and mobile surfaces. - introduce the v3 terminal protocol with scoped attachments, snapshots, ordered output, bounded replay history, reconnects, and explicit lifecycle - harden PTY creation, restart, resize, close, force-kill, idle cleanup, shell selection, login mode, environment sanitization, and appearance sync - add runtime-aware terminal APIs with relay authentication and Electron parity - add a fullscreen mobile terminal workspace with touch scrolling, long-press selection, safe-area controls, quick keys, and Ctrl/Alt input - add terminal selection attachments, preview detection, project actions, shell settings, and localized UI - harden Ghostty rendering, resize recovery, Unicode handling, block characters, line height, and stale-row behavior - remove the obsolete terminal SSE path and update reverse-proxy guidance - expand terminal runtime, transport, input, selection, and store coverage - avoid duplicate web builds when preparing mobile assets in root CI builds
20 lines
1.0 KiB
JavaScript
20 lines
1.0 KiB
JavaScript
import { describe, expect, it } from 'vitest';
|
|
import { sanitizeTerminalHistoryChunk } from './history.js';
|
|
|
|
describe('terminal replay history', () => {
|
|
it('removes device and color query exchanges while preserving display controls', () => {
|
|
const input = `before\u001b[6n\u001b[12;40R\u001b[>0c\u001b[?2031h\u001b[?2031$p\u001b[?2031;1$y\u001b]10;?\u0007\u001b[31mred\u001b[0mafter`;
|
|
expect(sanitizeTerminalHistoryChunk('', input)).toEqual({ visible: 'before\u001b[31mred\u001b[0mafter', pending: '' });
|
|
});
|
|
|
|
it('carries incomplete control sequences across PTY chunks', () => {
|
|
const first = sanitizeTerminalHistoryChunk('', 'text\u001b]11;');
|
|
expect(first).toEqual({ visible: 'text', pending: '\u001b]11;' });
|
|
expect(sanitizeTerminalHistoryChunk(first.pending, '?\u001b\\next')).toEqual({ visible: 'next', pending: '' });
|
|
});
|
|
|
|
it('preserves ordinary OSC titles and split UTF-16 text', () => {
|
|
expect(sanitizeTerminalHistoryChunk('', '\u001b]0;title\u0007ok')).toEqual({ visible: '\u001b]0;title\u0007ok', pending: '' });
|
|
});
|
|
});
|