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

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 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
refactor: share startup secrets test helpers · openclaw/o...
vincentkoc · 2026-06-02 · via Recent Commits to openclaw:main

@@ -272,6 +272,42 @@ async function activateImportedStartupConfig(config: OpenClawConfig) {

272272

);

273273

}

274274275+

async function prepareGatewaySecretRefStartupConfig(params: {

276+

prepareRuntimeSecretsSnapshot: PrepareRuntimeSecretsSnapshotForTest;

277+

activateRuntimeSecretsSnapshot: ActivateRuntimeSecretsSnapshotForTest;

278+

}) {

279+

return await prepareGatewayStartupConfig({

280+

configSnapshot: gatewaySecretRefSnapshot(),

281+

activateRuntimeSecrets: runtimeSecretsActivatorForTest(params),

282+

});

283+

}

284+285+

function expectBootstrapAuthResolvedGatewayToken(

286+

result: Awaited<ReturnType<typeof prepareGatewayStartupConfig>>,

287+

): void {

288+

expect(result.auth).toMatchObject({

289+

mode: "token",

290+

token: RESOLVED_GATEWAY_TOKEN,

291+

});

292+

}

293+294+

async function expectImportedStartupConfigUsesFullSecretsRuntime(

295+

harness: ReturnType<typeof createGatewayStartupSecretsRuntimeHarness>,

296+

config: OpenClawConfig,

297+

): Promise<void> {

298+

harness.install();

299+300+

try {

301+

await activateImportedStartupConfig(config);

302+303+

expect(harness.runtimeImport).toHaveBeenCalledTimes(1);

304+

expect(harness.prepareRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

305+

expect(harness.activateRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

306+

} finally {

307+

harness.cleanup();

308+

}

309+

}

310+275311

describe("gateway startup config secret preflight", () => {

276312

const previousSkipChannels = process.env.OPENCLAW_SKIP_CHANNELS;

277313

const previousSkipProviders = process.env.OPENCLAW_SKIP_PROVIDERS;

@@ -545,19 +581,7 @@ describe("gateway startup config secret preflight", () => {

545581

it.each(KNOWN_WEAK_GATEWAY_TOKEN_PLACEHOLDERS)(

546582

"rejects known weak gateway tokens resolved during secret activation: %s",

547583

async (token) => {

548-

const sourceConfig = gatewayTokenConfig({

549-

secrets: {

550-

providers: {

551-

default: { source: "env" },

552-

},

553-

},

554-

gateway: {

555-

auth: {

556-

mode: "token",

557-

token: { source: "env", provider: "default", id: "GATEWAY_TOKEN_REF" },

558-

},

559-

},

560-

});

584+

const sourceConfig = gatewayTokenConfig(gatewaySecretRefSnapshot().config);

561585

const prepareRuntimeSecretsSnapshot = vi.fn(async () =>

562586

preparedSnapshot({

563587

...sourceConfig,

@@ -680,16 +704,12 @@ describe("gateway startup config secret preflight", () => {

680704

);

681705

const activateRuntimeSecretsSnapshot = vi.fn();

682706683-

const result = await prepareGatewayStartupConfig({

684-

configSnapshot: gatewaySecretRefSnapshot(),

685-

activateRuntimeSecrets: runtimeSecretsActivatorForTest({

686-

prepareRuntimeSecretsSnapshot,

687-

activateRuntimeSecretsSnapshot,

688-

}),

707+

const result = await prepareGatewaySecretRefStartupConfig({

708+

prepareRuntimeSecretsSnapshot,

709+

activateRuntimeSecretsSnapshot,

689710

});

690711691-

expect(result.auth.mode).toBe("token");

692-

expect(result.auth.token).toBe(RESOLVED_GATEWAY_TOKEN);

712+

expectBootstrapAuthResolvedGatewayToken(result);

693713

expect(result.cfg.gateway?.auth?.token).toBe(RESOLVED_GATEWAY_TOKEN);

694714

expect(prepareRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

695715

expect(activateRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

@@ -722,16 +742,12 @@ describe("gateway startup config secret preflight", () => {

722742

}));

723743

const activateRuntimeSecretsSnapshot = vi.fn();

724744725-

const result = await prepareGatewayStartupConfig({

726-

configSnapshot: gatewaySecretRefSnapshot(),

727-

activateRuntimeSecrets: runtimeSecretsActivatorForTest({

728-

prepareRuntimeSecretsSnapshot,

729-

activateRuntimeSecretsSnapshot,

730-

}),

745+

const result = await prepareGatewaySecretRefStartupConfig({

746+

prepareRuntimeSecretsSnapshot,

747+

activateRuntimeSecretsSnapshot,

731748

});

732749733-

expect(result.auth.mode).toBe("token");

734-

expect(result.auth.token).toBe(RESOLVED_GATEWAY_TOKEN);

750+

expectBootstrapAuthResolvedGatewayToken(result);

735751

expect(prepareRuntimeSecretsSnapshot).toHaveBeenCalledTimes(2);

736752

expect(activateRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

737753

});

@@ -836,31 +852,22 @@ describe("gateway startup config secret preflight", () => {

836852837853

it("keeps the full secrets runtime path when startup config has a SecretRef", async () => {

838854

const harness = createGatewayStartupSecretsRuntimeHarness("openclaw-startup-secret-ref-");

839-

harness.install();

840-841-

try {

842-

await activateImportedStartupConfig(

843-

asConfig({

844-

agents: {

845-

list: [{ id: "default", agentDir: harness.agentDir }],

846-

},

847-

models: {

848-

providers: {

849-

openai: {

850-

models: [],

851-

apiKey: { source: "env", provider: "default", id: "OPENAI_API_KEY" },

852-

},

855+

await expectImportedStartupConfigUsesFullSecretsRuntime(

856+

harness,

857+

asConfig({

858+

agents: {

859+

list: [{ id: "default", agentDir: harness.agentDir }],

860+

},

861+

models: {

862+

providers: {

863+

openai: {

864+

models: [],

865+

apiKey: { source: "env", provider: "default", id: "OPENAI_API_KEY" },

853866

},

854867

},

855-

}),

856-

);

857-858-

expect(harness.runtimeImport).toHaveBeenCalledTimes(1);

859-

expect(harness.prepareRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

860-

expect(harness.activateRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

861-

} finally {

862-

harness.cleanup();

863-

}

868+

},

869+

}),

870+

);

864871

});

865872866873

it("keeps the full secrets runtime path when auth profile files are present", async () => {

@@ -878,22 +885,13 @@ describe("gateway startup config secret preflight", () => {

878885

},

879886

})}\n`,

880887

);

881-

harness.install();

882-883-

try {

884-

await activateImportedStartupConfig(

885-

asConfig({

886-

agents: {

887-

list: [{ id: "default", agentDir: harness.agentDir }],

888-

},

889-

}),

890-

);

891-892-

expect(harness.runtimeImport).toHaveBeenCalledTimes(1);

893-

expect(harness.prepareRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

894-

expect(harness.activateRuntimeSecretsSnapshot).toHaveBeenCalledTimes(1);

895-

} finally {

896-

harness.cleanup();

897-

}

888+

await expectImportedStartupConfigUsesFullSecretsRuntime(

889+

harness,

890+

asConfig({

891+

agents: {

892+

list: [{ id: "default", agentDir: harness.agentDir }],

893+

},

894+

}),

895+

);

898896

});

899897

});