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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
博客园_首页
雷峰网
雷峰网
V
Visual Studio Blog
爱范儿
爱范儿
A
About on SuperTechFans
量子位
N
Netflix TechBlog - Medium
Microsoft Security Blog
Microsoft Security Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
S
SegmentFault 最新的问题
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(config): render transform-backed config schema inputs...
ScientificPr · 2026-05-27 · via Recent Commits to openclaw:main

@@ -2,9 +2,89 @@ import { describe, expect, it } from "vitest";

22

import { SENSITIVE_URL_HINT_TAG } from "../shared/net/redact-sensitive-url.js";

33

import { computeBaseConfigSchemaResponse } from "./schema-base.js";

445+

type TestJsonSchema = {

6+

additionalProperties?: TestJsonSchema | boolean;

7+

allOf?: TestJsonSchema[];

8+

anyOf?: TestJsonSchema[];

9+

const?: unknown;

10+

enum?: unknown[];

11+

items?: TestJsonSchema | TestJsonSchema[];

12+

oneOf?: TestJsonSchema[];

13+

properties?: Record<string, TestJsonSchema>;

14+

type?: unknown;

15+

};

16+517

const BASE_CONFIG_SCHEMA = computeBaseConfigSchemaResponse({

618

generatedAt: "2026-05-05T00:00:00.000Z",

719

});

20+

const BASE_SCHEMA = BASE_CONFIG_SCHEMA.schema as TestJsonSchema;

21+22+

const METADATA_KEYS = new Set(["default", "description", "nullable", "tags", "title", "x-tags"]);

23+24+

function schemaAt(schema: TestJsonSchema, path: string[]): TestJsonSchema | undefined {

25+

let node: TestJsonSchema | undefined = schema;

26+

for (const segment of path) {

27+

if (!node) {

28+

return undefined;

29+

}

30+

if (segment === "[]") {

31+

node = Array.isArray(node.items) ? node.items[0] : node.items;

32+

} else {

33+

node = node.properties?.[segment];

34+

}

35+

}

36+

return node;

37+

}

38+39+

function sortedAnyOfTypes(node: TestJsonSchema | undefined): string[] {

40+

return (node?.anyOf ?? [])

41+

.map((branch) => String(branch.type))

42+

.toSorted((left, right) => left.localeCompare(right));

43+

}

44+45+

function itemSchema(node: TestJsonSchema | undefined): TestJsonSchema | undefined {

46+

return Array.isArray(node?.items) ? node.items[0] : node?.items;

47+

}

48+49+

function expectAnyOfTypes(path: string[], expectedTypes: string[]): TestJsonSchema[] {

50+

const node = schemaAt(BASE_SCHEMA, path);

51+

expect(node, path.join(".")).toBeDefined();

52+

expect(sortedAnyOfTypes(node), path.join(".")).toEqual(expectedTypes);

53+

return node?.anyOf ?? [];

54+

}

55+56+

function hasOnlyMetadataKeys(schema: TestJsonSchema): boolean {

57+

return Object.keys(schema).every((key) => METADATA_KEYS.has(key));

58+

}

59+60+

function collectMetadataOnlyCompositionBranches(

61+

schema: TestJsonSchema,

62+

path: string[] = [],

63+

hits: string[] = [],

64+

): string[] {

65+

for (const keyword of ["allOf", "anyOf", "oneOf"] as const) {

66+

for (const [index, branch] of (schema[keyword] ?? []).entries()) {

67+

const branchPath = `${path.join(".") || "<root>"}.${keyword}[${index}]`;

68+

if (hasOnlyMetadataKeys(branch)) {

69+

hits.push(branchPath);

70+

}

71+

collectMetadataOnlyCompositionBranches(branch, [branchPath], hits);

72+

}

73+

}

74+75+

for (const [key, child] of Object.entries(schema.properties ?? {})) {

76+

collectMetadataOnlyCompositionBranches(child, [...path, key], hits);

77+

}

78+

if (schema.additionalProperties && typeof schema.additionalProperties === "object") {

79+

collectMetadataOnlyCompositionBranches(schema.additionalProperties, [...path, "*"], hits);

80+

}

81+

const items = Array.isArray(schema.items) ? schema.items : schema.items ? [schema.items] : [];

82+

for (const [index, child] of items.entries()) {

83+

collectMetadataOnlyCompositionBranches(child, [...path, `items[${index}]`], hits);

84+

}

85+86+

return hits;

87+

}

888989

describe("base config schema", () => {

1090

it("is deterministic for a fixed generatedAt timestamp", () => {

@@ -70,4 +150,48 @@ describe("base config schema", () => {

70150

expect(uiHints).toHaveProperty("agents.defaults.videoGenerationModel.fallbacks");

71151

expect(uiHints).toHaveProperty("agents.defaults.mediaGenerationAutoProviderFallback");

72152

});

153+154+

it("publishes accepted input shapes for transform-backed config fields", () => {

155+

const lastTouchedAtBranches = expectAnyOfTypes(["meta", "lastTouchedAt"], ["number", "string"]);

156+

expect(lastTouchedAtBranches.every((branch) => Object.keys(branch).length > 0)).toBe(true);

157+158+

for (const path of [

159+

["agents", "defaults", "sandbox", "docker", "setupCommand"],

160+

["agents", "list", "[]", "sandbox", "docker", "setupCommand"],

161+

]) {

162+

const branches = expectAnyOfTypes(path, ["array", "string"]);

163+

expect(itemSchema(branches.find((branch) => branch.type === "array"))?.type).toBe("string");

164+

}

165+166+

const codexAllowedDomains = schemaAt(BASE_SCHEMA, [

167+

"tools",

168+

"web",

169+

"search",

170+

"openaiCodex",

171+

"allowedDomains",

172+

]);

173+

expect(codexAllowedDomains?.type).toBe("array");

174+

expect(itemSchema(codexAllowedDomains)?.type).toBe("string");

175+176+

const codexUserLocation = schemaAt(BASE_SCHEMA, [

177+

"tools",

178+

"web",

179+

"search",

180+

"openaiCodex",

181+

"userLocation",

182+

]);

183+

expect(codexUserLocation?.type).toBe("object");

184+

expect(codexUserLocation?.properties?.country?.type).toBe("string");

185+

expect(codexUserLocation?.properties?.region?.type).toBe("string");

186+

expect(codexUserLocation?.properties?.city?.type).toBe("string");

187+

expect(codexUserLocation?.properties?.timezone?.type).toBe("string");

188+189+

expect(schemaAt(BASE_SCHEMA, ["gateway", "controlUi", "chatMessageMaxWidth"])?.type).toBe(

190+

"string",

191+

);

192+

});

193+194+

it("does not publish metadata-only composition branches", () => {

195+

expect(collectMetadataOnlyCompositionBranches(BASE_SCHEMA)).toEqual([]);

196+

});

73197

});