惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
The GitHub Blog
The GitHub Blog
V
V2EX
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
A
About on SuperTechFans
博客园_首页
L
LangChain Blog
量子位
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Jina AI
Jina AI
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
M
MIT News - Artificial intelligence
N
Netflix TechBlog - Medium

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(tui): preserve draft while chat is busy · openclaw/op...
hyspacex · 2026-05-17 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -480,6 +480,22 @@ describe("tui command handlers", () => {

480480

expect(setActivityStatus).toHaveBeenLastCalledWith("disconnected");

481481

});

482482
483+

it("rejects normal sends while a run is active", async () => {

484+

const { handleCommand, sendChat, addUser, addSystem, requestRender, state } = createHarness({

485+

activeChatRunId: "run-active",

486+

});

487+
488+

await handleCommand("/context detail");

489+
490+

expect(sendChat).not.toHaveBeenCalled();

491+

expect(addUser).not.toHaveBeenCalled();

492+

expect(addSystem).toHaveBeenCalledWith(

493+

"agent is busy — press Esc to abort before sending a new message",

494+

);

495+

expect(requestRender).toHaveBeenCalled();

496+

expect(state.activeChatRunId).toBe("run-active");

497+

});

498+
483499

it("runs /auth through the local auth flow and refreshes session info", async () => {

484500

const refreshSessionInfo = vi.fn().mockResolvedValue(undefined);

485501

const runAuthFlow = vi.fn().mockResolvedValue({ exitCode: 0, signal: null });

Original file line numberDiff line numberDiff line change

@@ -632,6 +632,14 @@ export function createCommandHandlers(context: CommandHandlerContext) {

632632

return;

633633

}

634634

const isBtw = isBtwCommand(text);

635+

if (

636+

!isBtw &&

637+

(state.activeChatRunId || state.pendingChatRunId || state.pendingOptimisticUserMessage)

638+

) {

639+

chatLog.addSystem("agent is busy — press Esc to abort before sending a new message");

640+

tui.requestRender();

641+

return;

642+

}

635643

const runId = randomUUID();

636644

try {

637645

if (!isBtw) {

Original file line numberDiff line numberDiff line change

@@ -11,22 +11,36 @@ type SubmitHarness = {

1111

handleCommand: MockFn;

1212

sendMessage: MockFn;

1313

handleBangLine: MockFn;

14+

canSubmitMessage: MockFn;

15+

onBlockedMessageSubmit: MockFn;

1416

onSubmit: (text: string) => void;

1517

};

1618
17-

export function createSubmitHarness(): SubmitHarness {

19+

export function createSubmitHarness(params?: { canSubmitMessage?: () => boolean }): SubmitHarness {

1820

const editor = {

1921

setText: vi.fn(),

2022

addToHistory: vi.fn(),

2123

};

2224

const handleCommand = vi.fn();

2325

const sendMessage = vi.fn();

2426

const handleBangLine = vi.fn();

27+

const canSubmitMessage = vi.fn(params?.canSubmitMessage ?? (() => true));

28+

const onBlockedMessageSubmit = vi.fn();

2529

const onSubmit = createEditorSubmitHandler({

2630

editor,

2731

handleCommand,

2832

sendMessage,

2933

handleBangLine,

34+

canSubmitMessage,

35+

onBlockedMessageSubmit,

3036

});

31-

return { editor, handleCommand, sendMessage, handleBangLine, onSubmit };

37+

return {

38+

editor,

39+

handleCommand,

40+

sendMessage,

41+

handleBangLine,

42+

canSubmitMessage,

43+

onBlockedMessageSubmit,

44+

onSubmit,

45+

};

3246

}

Original file line numberDiff line numberDiff line change

@@ -8,34 +8,45 @@ export function createEditorSubmitHandler(params: {

88

handleCommand: (value: string) => Promise<void> | void;

99

sendMessage: (value: string) => Promise<void> | void;

1010

handleBangLine: (value: string) => Promise<void> | void;

11+

canSubmitMessage?: () => boolean;

12+

onBlockedMessageSubmit?: (value: string) => void;

1113

}) {

1214

return (text: string) => {

1315

const raw = text;

1416

const value = raw.trim();

15-

params.editor.setText("");

1617
1718

// Keep previous behavior: ignore empty/whitespace-only submissions.

1819

if (!value) {

20+

params.editor.setText("");

1921

return;

2022

}

2123
2224

// Bash mode: only if the very first character is '!' and it's not just '!'.

2325

// IMPORTANT: use the raw (untrimmed) text so leading spaces do NOT trigger.

2426

// Per requirement: a lone '!' should be treated as a normal message.

2527

if (raw.startsWith("!") && raw !== "!") {

28+

params.editor.setText("");

2629

params.editor.addToHistory(raw);

2730

void params.handleBangLine(raw);

2831

return;

2932

}

3033
31-

// Enable built-in editor prompt history navigation (up/down).

32-

params.editor.addToHistory(value);

33-
3434

if (value.startsWith("/")) {

35+

params.editor.setText("");

36+

// Enable built-in editor prompt history navigation (up/down).

37+

params.editor.addToHistory(value);

3538

void params.handleCommand(value);

3639

return;

3740

}

3841
42+

if (params.canSubmitMessage && !params.canSubmitMessage()) {

43+

params.onBlockedMessageSubmit?.(value);

44+

return;

45+

}

46+
47+

params.editor.setText("");

48+

// Enable built-in editor prompt history navigation (up/down).

49+

params.editor.addToHistory(value);

3950

void params.sendMessage(value);

4051

};

4152

}

Original file line numberDiff line numberDiff line change

@@ -46,6 +46,36 @@ describe("createEditorSubmitHandler", () => {

4646

expect(editor.addToHistory).toHaveBeenCalledWith("hello");

4747

});

4848
49+

it("preserves normal message drafts when chat is busy", () => {

50+

const { editor, sendMessage, handleCommand, handleBangLine, onBlockedMessageSubmit, onSubmit } =

51+

createSubmitHarness({

52+

canSubmitMessage: () => false,

53+

});

54+
55+

onSubmit(" wait, use c++ instead ");

56+
57+

expect(editor.setText).not.toHaveBeenCalled();

58+

expect(editor.addToHistory).not.toHaveBeenCalled();

59+

expect(sendMessage).not.toHaveBeenCalled();

60+

expect(handleCommand).not.toHaveBeenCalled();

61+

expect(handleBangLine).not.toHaveBeenCalled();

62+

expect(onBlockedMessageSubmit).toHaveBeenCalledWith("wait, use c++ instead");

63+

});

64+
65+

it("continues to route slash commands while chat is busy", () => {

66+

const { editor, handleCommand, sendMessage, onBlockedMessageSubmit, onSubmit } =

67+

createSubmitHarness({

68+

canSubmitMessage: () => false,

69+

});

70+
71+

onSubmit("/abort");

72+
73+

expect(editor.setText).toHaveBeenCalledWith("");

74+

expect(handleCommand).toHaveBeenCalledWith("/abort");

75+

expect(sendMessage).not.toHaveBeenCalled();

76+

expect(onBlockedMessageSubmit).not.toHaveBeenCalled();

77+

});

78+
4979

it("preserves internal newlines for multiline messages", () => {

5080

const { editor, handleCommand, sendMessage, handleBangLine, onSubmit } = createSubmitHarness();

5181
Original file line numberDiff line numberDiff line change

@@ -1182,11 +1182,19 @@ export async function runTui(opts: RunTuiOptions): Promise<TuiResult> {

11821182

closeOverlay,

11831183

});

11841184

updateAutocompleteProvider();

1185+

const canSubmitChatMessage = () =>

1186+

!state.activeChatRunId && !state.pendingChatRunId && !state.pendingOptimisticUserMessage;

1187+

const notifyBlockedChatSubmit = () => {

1188+

chatLog.addSystem("agent is busy — press Esc to abort before sending a new message");

1189+

tui.requestRender();

1190+

};

11851191

const submitHandler = createEditorSubmitHandler({

11861192

editor,

11871193

handleCommand,

11881194

sendMessage,

11891195

handleBangLine: runLocalShellLine,

1196+

canSubmitMessage: canSubmitChatMessage,

1197+

onBlockedMessageSubmit: notifyBlockedChatSubmit,

11901198

});

11911199

editor.onSubmit = createSubmitBurstCoalescer({

11921200

submit: submitHandler,