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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
Y
Y Combinator Blog
G
Google Developers Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
L
LangChain Blog
S
SegmentFault 最新的问题
J
Java Code Geeks
V
Visual Studio Blog
H
Help Net Security
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
Tailwind CSS Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Hackread – Cybersecurity News, Data Breaches, AI and More
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
月光博客
月光博客
Microsoft Security Blog
Microsoft Security 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
docs: document sessions tools tests · openclaw/openclaw@0...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Sessions access tests cover session-tool visibility policy, sandbox clamps,

2+

// and agent-to-agent allow rules.

13

import { describe, expect, it, vi } from "vitest";

24

import type { OpenClawConfig } from "../../config/config.js";

35

import {

@@ -168,6 +170,8 @@ describe("createAgentToAgentPolicy", () => {

168170

});

169171
170172

it("handles multiple wildcards without polynomial backtracking", () => {

173+

// Allow patterns use segment matching rather than a greedy regex so

174+

// adversarial agent ids cannot cause slow policy checks.

171175

const policy = createAgentToAgentPolicy({

172176

tools: {

173177

agentToAgent: {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// sessions_history tool tests cover recall redaction and input validation for

2+

// session transcript history returned to models.

13

import fs from "node:fs";

24

import os from "node:os";

35

import path from "node:path";

@@ -58,6 +60,8 @@ describe("sessions_history redaction", () => {

5860

});

5961
6062

it("redacts recalled session text even when log redaction is disabled", async () => {

63+

// Recalled transcript content is model-visible, so it is always redacted

64+

// even when normal logging redaction is configured off.

6165

useLoggingConfig("redaction-off.json", { redactSensitive: "off" });

6266

const tool = createHistoryToolWithMessage("OPENROUTER_API_KEY=sk-or-v1-abcdef0123456789");

6367
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Sessions resolution tests cover alias mapping, session-id lookup, visibility

2+

// verification, and requester-spawned access checks.

13

import { beforeAll, beforeEach, describe, expect, it, vi } from "vitest";

24

import type { OpenClawConfig } from "../../config/config.js";

35

const callGatewayMock = vi.fn();

@@ -218,6 +220,8 @@ describe("resolved session visibility checks", () => {

218220

});

219221
220222

it("does not hide an exact spawned target behind the sessions.list visibility cap", async () => {

223+

// Exact spawned-session resolution should not depend on a truncated list

224+

// response; otherwise high-volume session stores hide valid children.

221225

callGatewayMock.mockImplementation(

222226

async (request: { method?: string; params?: { key?: string } }) => {

223227

if (request.method === "sessions.resolve") {

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// sessions_send helper tests cover session-key target parsing and ping-pong

2+

// turn limits for agent-to-agent announce flows.

13

import { beforeEach, describe, expect, it } from "vitest";

24

import { setActivePluginRegistry } from "../../plugins/runtime.js";

35

import { createSessionConversationTestRegistry } from "../../test-utils/session-conversation-registry.js";

@@ -40,6 +42,8 @@ describe("resolveAnnounceTargetFromKey", () => {

4042

});

4143
4244

it("preserves colon-delimited matrix ids for channel and thread targets", () => {

45+

// Matrix room/thread ids can contain colons, so parsing must split only on

46+

// known wrappers instead of generic colon segments.

4347

expect(

4448

resolveAnnounceTargetFromKey(

4549

"agent:main:matrix:channel:!room:example.org:thread:$AbC123:example.org",

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// sessions_send A2A tests cover announce delivery, same-session replies, delayed

2+

// reply baselines, and channel target/account routing.

13

import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

24

import type { CallGatewayOptions } from "../../gateway/call.js";

35

import { setActivePluginRegistry } from "../../plugins/runtime.js";

@@ -196,6 +198,8 @@ describe("runSessionsSendA2AFlow announce delivery", () => {

196198

});

197199
198200

it("does not direct-deliver a delayed same-session reply without a baseline", async () => {

201+

// Without a baseline fingerprint, a delayed assistant reply may be stale;

202+

// avoid direct delivery unless freshness is provable.

199203

vi.mocked(readLatestAssistantReplySnapshot).mockResolvedValueOnce({

200204

text: "Maybe stale channel reply",

201205

fingerprint: "maybe-stale-channel-reply",

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Sessions tool tests cover list/send helpers, transcript path reporting,

2+

// announce-target resolution, and assistant-visible text sanitization.

13

import os from "node:os";

24

import path from "node:path";

35

import { MAX_TIMER_TIMEOUT_MS } from "@openclaw/normalization-core/number-coercion";

@@ -236,6 +238,7 @@ async function withStubbedStateDir<T>(

236238
237239

describe("sanitizeTextContent", () => {

238240

it("strips minimax tool call XML and downgraded markers", () => {

241+

// Session recall should not replay provider/tool markup as assistant text.

239242

const input =

240243

'Hello <invoke name="tool">payload</invoke></minimax:tool_call> ' +

241244

"[Tool Call: foo (ID: 1)] world";