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

推荐订阅源

MyScale Blog
MyScale Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
V
Visual Studio Blog
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
L
LangChain Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
P
Proofpoint News Feed
博客园_首页
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
C
Check Point Blog
Engineering at Meta
Engineering at Meta
Microsoft Azure Blog
Microsoft Azure 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
test: tighten docker e2e survivor assertions · openclaw/o...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -51,6 +51,25 @@ function summarizeLane(lane: ReturnType<typeof planFor>["lanes"][number]) {

5151

};

5252

}

535354+

function publishedUpgradeSurvivorLane(

55+

name: string,

56+

baselineSpec: string,

57+

scenario?: string,

58+

): ReturnType<typeof summarizeLane> {

59+

return {

60+

command: `OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR="$PWD/.artifacts/upgrade-survivor/${name}" OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC='${baselineSpec}' ${

61+

scenario ? `OPENCLAW_UPGRADE_SURVIVOR_SCENARIO='${scenario}' ` : ""

62+

}OPENCLAW_SKIP_DOCKER_BUILD=1 pnpm test:docker:published-upgrade-survivor`,

63+

imageKind: "bare",

64+

live: false,

65+

name,

66+

resources: ["docker", "npm"],

67+

stateScenario: "upgrade-survivor",

68+

timeoutMs: 1_500_000,

69+

weight: 3,

70+

};

71+

}

72+5473

describe("scripts/lib/docker-e2e-plan", () => {

5574

it("plans the full release path against package-backed e2e images", () => {

5675

const plan = planFor({

@@ -402,33 +421,14 @@ describe("scripts/lib/docker-e2e-plan", () => {

402421

"openclaw@2026.4.29 2026.4.23 openclaw@2026.4.23 openclaw@2026.3.13-1",

403422

});

404423405-

expect(plan.lanes.map((lane) => lane.name)).toEqual([

406-

"published-upgrade-survivor-2026.4.29",

407-

"published-upgrade-survivor-2026.4.23",

408-

"published-upgrade-survivor-2026.3.13-1",

409-

]);

410-

expect(plan.lanes).toEqual([

411-

expect.objectContaining({

412-

command: expect.stringContaining(

413-

"OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC='openclaw@2026.4.29'",

414-

),

415-

imageKind: "bare",

416-

stateScenario: "upgrade-survivor",

417-

}),

418-

expect.objectContaining({

419-

command: expect.stringContaining(

420-

"OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC='openclaw@2026.4.23'",

421-

),

422-

}),

423-

expect.objectContaining({

424-

command: expect.stringContaining(

425-

"OPENCLAW_UPGRADE_SURVIVOR_BASELINE_SPEC='openclaw@2026.3.13-1'",

426-

),

427-

}),

424+

expect(plan.lanes.map(summarizeLane)).toEqual([

425+

publishedUpgradeSurvivorLane("published-upgrade-survivor-2026.4.29", "openclaw@2026.4.29"),

426+

publishedUpgradeSurvivorLane("published-upgrade-survivor-2026.4.23", "openclaw@2026.4.23"),

427+

publishedUpgradeSurvivorLane(

428+

"published-upgrade-survivor-2026.3.13-1",

429+

"openclaw@2026.3.13-1",

430+

),

428431

]);

429-

expect(requireFirstLane(plan).command).toContain(

430-

'OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR="$PWD/.artifacts/upgrade-survivor/published-upgrade-survivor-2026.4.29"',

431-

);

432432

});

433433434434

it("expands the published upgrade survivor lane across scenarios", () => {

@@ -438,30 +438,38 @@ describe("scripts/lib/docker-e2e-plan", () => {

438438

upgradeSurvivorScenarios: "base feishu-channel tilde-log-path",

439439

});

440440441-

expect(plan.lanes.map((lane) => lane.name)).toEqual([

442-

"published-upgrade-survivor-2026.4.29",

443-

"published-upgrade-survivor-2026.4.29-feishu-channel",

444-

"published-upgrade-survivor-2026.4.29-tilde-log-path",

445-

"published-upgrade-survivor-2026.4.23",

446-

"published-upgrade-survivor-2026.4.23-feishu-channel",

447-

"published-upgrade-survivor-2026.4.23-tilde-log-path",

441+

expect(plan.lanes.map(summarizeLane)).toEqual([

442+

publishedUpgradeSurvivorLane(

443+

"published-upgrade-survivor-2026.4.29",

444+

"openclaw@2026.4.29",

445+

"base",

446+

),

447+

publishedUpgradeSurvivorLane(

448+

"published-upgrade-survivor-2026.4.29-feishu-channel",

449+

"openclaw@2026.4.29",

450+

"feishu-channel",

451+

),

452+

publishedUpgradeSurvivorLane(

453+

"published-upgrade-survivor-2026.4.29-tilde-log-path",

454+

"openclaw@2026.4.29",

455+

"tilde-log-path",

456+

),

457+

publishedUpgradeSurvivorLane(

458+

"published-upgrade-survivor-2026.4.23",

459+

"openclaw@2026.4.23",

460+

"base",

461+

),

462+

publishedUpgradeSurvivorLane(

463+

"published-upgrade-survivor-2026.4.23-feishu-channel",

464+

"openclaw@2026.4.23",

465+

"feishu-channel",

466+

),

467+

publishedUpgradeSurvivorLane(

468+

"published-upgrade-survivor-2026.4.23-tilde-log-path",

469+

"openclaw@2026.4.23",

470+

"tilde-log-path",

471+

),

448472

]);

449-

expect(plan.lanes).toEqual(

450-

expect.arrayContaining([

451-

expect.objectContaining({

452-

command: expect.stringContaining("OPENCLAW_UPGRADE_SURVIVOR_SCENARIO='feishu-channel'"),

453-

}),

454-

expect.objectContaining({

455-

command: expect.stringContaining("OPENCLAW_UPGRADE_SURVIVOR_SCENARIO='tilde-log-path'"),

456-

}),

457-

]),

458-

);

459-

expect(

460-

plan.lanes.find((lane) => lane.name === "published-upgrade-survivor-2026.4.29-tilde-log-path")

461-

?.command,

462-

).toContain(

463-

'OPENCLAW_UPGRADE_SURVIVOR_ARTIFACT_DIR="$PWD/.artifacts/upgrade-survivor/published-upgrade-survivor-2026.4.29-tilde-log-path"',

464-

);

465473

});

466474467475

it("expands reported upgrade issue scenarios", () => {