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
92 lines
3.6 KiB
TypeScript
92 lines
3.6 KiB
TypeScript
import assert from 'node:assert/strict';
|
|
import test from 'node:test';
|
|
import type { ModelMessage } from 'ai';
|
|
import { repairToolMessageIntegrity } from './toolMessageIntegrity';
|
|
|
|
test('repairToolMessageIntegrity drops orphan and duplicate tool results', () => {
|
|
const messages: ModelMessage[] = [
|
|
{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'call-1', toolName: 'terminal_poll', input: {} }],
|
|
},
|
|
{
|
|
role: 'tool',
|
|
content: [
|
|
{ type: 'tool-result', toolCallId: 'call-1', toolName: 'terminal_poll', output: { type: 'text', value: 'first' } },
|
|
{ type: 'tool-result', toolCallId: 'orphan', toolName: 'terminal_poll', output: { type: 'text', value: 'orphan' } },
|
|
],
|
|
},
|
|
{
|
|
role: 'tool',
|
|
content: [{ type: 'tool-result', toolCallId: 'call-1', toolName: 'terminal_poll', output: { type: 'text', value: 'duplicate' } }],
|
|
},
|
|
];
|
|
|
|
const result = repairToolMessageIntegrity(messages);
|
|
const serialized = JSON.stringify(result.messages);
|
|
assert.equal(result.didAdjust, true);
|
|
assert.match(serialized, /first/);
|
|
assert.doesNotMatch(serialized, /orphan|duplicate/);
|
|
});
|
|
|
|
test('repairToolMessageIntegrity completes interrupted tool calls with a synthetic result', () => {
|
|
const messages: ModelMessage[] = [{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'call-1', toolName: 'terminal_execute', input: { command: 'deploy' } }],
|
|
}];
|
|
|
|
const result = repairToolMessageIntegrity(messages);
|
|
assert.equal(result.messages.length, 2);
|
|
assert.match(JSON.stringify(result.messages[1]), /interrupted before a result was recorded/);
|
|
});
|
|
|
|
test('repairToolMessageIntegrity pairs reused tool call ids by occurrence order', () => {
|
|
const messages: ModelMessage[] = [
|
|
{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'reused', toolName: 'terminal_poll', input: { jobId: 'first' } }],
|
|
},
|
|
{
|
|
role: 'tool',
|
|
content: [{ type: 'tool-result', toolCallId: 'reused', toolName: 'terminal_poll', output: { type: 'text', value: 'first result' } }],
|
|
},
|
|
{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'reused', toolName: 'terminal_poll', input: { jobId: 'second' } }],
|
|
},
|
|
{
|
|
role: 'tool',
|
|
content: [{ type: 'tool-result', toolCallId: 'reused', toolName: 'terminal_poll', output: { type: 'text', value: 'second result' } }],
|
|
},
|
|
];
|
|
|
|
const result = repairToolMessageIntegrity(messages);
|
|
assert.equal(result.didAdjust, false);
|
|
assert.equal(result.messages, messages);
|
|
assert.match(JSON.stringify(result.messages), /first result/);
|
|
assert.match(JSON.stringify(result.messages), /second result/);
|
|
});
|
|
|
|
test('repairToolMessageIntegrity pairs a reused id with the nearest preceding call', () => {
|
|
const messages: ModelMessage[] = [
|
|
{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'reused', toolName: 'terminal_execute', input: { command: 'old' } }],
|
|
},
|
|
{
|
|
role: 'assistant',
|
|
content: [{ type: 'tool-call', toolCallId: 'reused', toolName: 'terminal_execute', input: { command: 'new' } }],
|
|
},
|
|
{
|
|
role: 'tool',
|
|
content: [{ type: 'tool-result', toolCallId: 'reused', toolName: 'terminal_execute', output: { type: 'text', value: 'new result' } }],
|
|
},
|
|
];
|
|
|
|
const result = repairToolMessageIntegrity(messages);
|
|
assert.equal(result.didAdjust, true);
|
|
assert.deepEqual(result.messages.map(message => message.role), ['assistant', 'tool', 'assistant', 'tool']);
|
|
assert.match(JSON.stringify(result.messages[1]), /interrupted before a result was recorded/);
|
|
assert.match(JSON.stringify(result.messages[3]), /new result/);
|
|
});
|