Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
72 lines
2.6 KiB
TypeScript
72 lines
2.6 KiB
TypeScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import {
|
|
buildChatJumpEntries,
|
|
chatMessageDomId,
|
|
resolveTailCountForJumpTarget,
|
|
truncateChatJumpLabel,
|
|
} from './chatJumpNav.ts';
|
|
|
|
test('truncateChatJumpLabel collapses whitespace and ellipsizes', () => {
|
|
assert.equal(truncateChatJumpLabel(' hello world '), 'hello world');
|
|
assert.equal(
|
|
truncateChatJumpLabel('a'.repeat(40), 10),
|
|
`${'a'.repeat(7)}...`,
|
|
);
|
|
assert.equal(truncateChatJumpLabel(' '), '');
|
|
});
|
|
|
|
test('buildChatJumpEntries returns empty until the minimum user-turn threshold', () => {
|
|
const messages = [
|
|
{ id: 'u1', role: 'user', content: 'one' },
|
|
{ id: 'a1', role: 'assistant', content: 'ok' },
|
|
{ id: 'u2', role: 'user', content: 'two' },
|
|
];
|
|
assert.deepEqual(buildChatJumpEntries(messages), []);
|
|
assert.equal(
|
|
buildChatJumpEntries([
|
|
...messages,
|
|
{ id: 'u3', role: 'user', content: 'three' },
|
|
]).length,
|
|
3,
|
|
);
|
|
});
|
|
|
|
test('buildChatJumpEntries uses empty label fallback and skips non-user roles', () => {
|
|
const entries = buildChatJumpEntries(
|
|
[
|
|
{ id: 's', role: 'system', content: 'ignore' },
|
|
{ id: 'u1', role: 'user', content: ' ' },
|
|
{ id: 't', role: 'tool', content: 'tool' },
|
|
{ id: 'u2', role: 'user', content: 'second' },
|
|
{ id: 'u3', role: 'user', content: 'third' },
|
|
],
|
|
{ emptyLabel: '(empty)' },
|
|
);
|
|
assert.deepEqual(entries, [
|
|
{ messageId: 'u1', label: '(empty)', index: 1 },
|
|
{ messageId: 'u2', label: 'second', index: 2 },
|
|
{ messageId: 'u3', label: 'third', index: 3 },
|
|
]);
|
|
});
|
|
|
|
test('resolveTailCountForJumpTarget expands only when the target is outside the window', () => {
|
|
const visible = [{ id: 'a' }, { id: 'b' }, { id: 'c' }, { id: 'd' }, { id: 'e' }];
|
|
assert.equal(resolveTailCountForJumpTarget(visible, 'd', 2), 2);
|
|
assert.equal(resolveTailCountForJumpTarget(visible, 'b', 2), 4);
|
|
assert.equal(resolveTailCountForJumpTarget(visible, 'missing', 2), 2);
|
|
});
|
|
|
|
test('resolveTailCountForJumpTarget grows with appends so a pinned target stays mounted', () => {
|
|
const before = [{ id: 'a' }, { id: 'b' }, { id: 'c' }, { id: 'd' }, { id: 'e' }];
|
|
const afterJump = resolveTailCountForJumpTarget(before, 'b', 2);
|
|
assert.equal(afterJump, 4);
|
|
// slice(-4) on a longer list would drop 'b' unless the count is re-resolved.
|
|
const afterAppend = [...before, { id: 'f' }, { id: 'g' }];
|
|
assert.equal(resolveTailCountForJumpTarget(afterAppend, 'b', afterJump), 6);
|
|
});
|
|
|
|
test('chatMessageDomId prefixes message ids for DOM anchors', () => {
|
|
assert.equal(chatMessageDomId('msg-12'), 'ai-chat-msg-msg-12');
|
|
});
|