Files
openclaw/src/tui/tui-input-history.test.ts
2026-02-19 15:19:38 +00:00

75 lines
2.1 KiB
TypeScript

import { describe, expect, it, vi } from "vitest";
import { createEditorSubmitHandler } from "./tui.js";
function createSubmitHarness() {
const editor = {
setText: vi.fn(),
addToHistory: vi.fn(),
};
const handleCommand = vi.fn();
const sendMessage = vi.fn();
const handleBangLine = vi.fn();
const handler = createEditorSubmitHandler({
editor,
handleCommand,
sendMessage,
handleBangLine,
});
return { editor, handleCommand, sendMessage, handleBangLine, handler };
}
describe("createEditorSubmitHandler", () => {
it("adds submitted messages to editor history", () => {
const { editor, handler } = createSubmitHarness();
handler("hello world");
expect(editor.setText).toHaveBeenCalledWith("");
expect(editor.addToHistory).toHaveBeenCalledWith("hello world");
});
it("trims input before adding to history", () => {
const { editor, handler } = createSubmitHarness();
handler(" hi ");
expect(editor.addToHistory).toHaveBeenCalledWith("hi");
});
it.each(["", " "])("does not add blank submissions to history", (text) => {
const { editor, handler } = createSubmitHarness();
handler(text);
expect(editor.addToHistory).not.toHaveBeenCalled();
});
it("routes slash commands to handleCommand", () => {
const { editor, handleCommand, sendMessage, handler } = createSubmitHarness();
handler("/models");
expect(editor.addToHistory).toHaveBeenCalledWith("/models");
expect(handleCommand).toHaveBeenCalledWith("/models");
expect(sendMessage).not.toHaveBeenCalled();
});
it("routes normal messages to sendMessage", () => {
const { editor, handleCommand, sendMessage, handler } = createSubmitHarness();
handler("hello");
expect(editor.addToHistory).toHaveBeenCalledWith("hello");
expect(sendMessage).toHaveBeenCalledWith("hello");
expect(handleCommand).not.toHaveBeenCalled();
});
it("routes bang-prefixed lines to handleBangLine", () => {
const { handleBangLine, handler } = createSubmitHarness();
handler("!ls");
expect(handleBangLine).toHaveBeenCalledWith("!ls");
});
});