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

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

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 gateway auth logout aborting active runs (#82346) · o...
joshavant · 2026-05-16 · via Recent Commits to openclaw:main

@@ -143,6 +143,24 @@ describe("OpenClaw SDK", () => {

143143

expect(result.error?.message).toBe("aborted by operator");

144144

});

145145146+

it("maps auth-revoked wait snapshots to cancelled", async () => {

147+

const transport = new FakeTransport({

148+

"agent.wait": {

149+

status: "timeout",

150+

runId: "run_auth_revoked",

151+

stopReason: "auth-revoked",

152+

error: "provider auth was removed",

153+

},

154+

});

155+

const oc = new OpenClaw({ transport });

156+157+

const result = await oc.runs.wait("run_auth_revoked");

158+159+

expect(result.runId).toBe("run_auth_revoked");

160+

expect(result.status).toBe("cancelled");

161+

expect(result.error?.message).toBe("provider auth was removed");

162+

});

163+146164

it("keeps wait-only deadlines non-terminal", async () => {

147165

const transport = new FakeTransport({

148166

"agent.wait": { status: "timeout", runId: "run_still_active" },

@@ -989,9 +1007,27 @@ describe("OpenClaw SDK", () => {

9891007

expect(cancelled.runId).toBe("run_1");

9901008

expect(cancelled.data).toEqual({ phase: "end", aborted: true, stopReason: "rpc" });

9911009992-

const timedOut = normalizeGatewayEvent({

1010+

const authRevoked = normalizeGatewayEvent({

9931011

event: "agent",

9941012

seq: 6,

1013+

payload: {

1014+

runId: "run_1",

1015+

stream: "lifecycle",

1016+

ts,

1017+

data: { phase: "end", aborted: true, stopReason: "auth-revoked" },

1018+

},

1019+

});

1020+

expect(authRevoked.type).toBe("run.cancelled");

1021+

expect(authRevoked.runId).toBe("run_1");

1022+

expect(authRevoked.data).toEqual({

1023+

phase: "end",

1024+

aborted: true,

1025+

stopReason: "auth-revoked",

1026+

});

1027+1028+

const timedOut = normalizeGatewayEvent({

1029+

event: "agent",

1030+

seq: 7,

9951031

payload: {

9961032

runId: "run_1",

9971033

stream: "lifecycle",