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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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(scripts): cover workflow docker routes · openclaw/op...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -9,13 +9,16 @@ import { createTempDirTracker } from "../helpers/temp-dir.js";

991010

const SCRIPT_PATH = "scripts/test-install-sh-docker.sh";

1111

const INSTALL_E2E_DOCKER_PATH = "scripts/test-install-sh-e2e-docker.sh";

12+

const INSTALL_E2E_DOCKERFILE_PATH = "scripts/docker/install-sh-e2e/Dockerfile";

1213

const INSTALL_E2E_RUNNER_PATH = "scripts/docker/install-sh-e2e/run.sh";

1314

const DOCKER_SETUP_PATH = "scripts/docker/setup.sh";

1415

const HOST_TIMEOUT_PATH = "scripts/lib/host-timeout.sh";

1516

const PODMAN_SETUP_PATH = "scripts/podman/setup.sh";

1617

const PODMAN_QUADLET_TEMPLATE_PATH = "scripts/podman/openclaw.container.in";

1718

const PODMAN_RUN_PATH = "scripts/run-openclaw-podman.sh";

19+

const SMOKE_DOCKERFILE_PATH = "scripts/docker/install-sh-smoke/Dockerfile";

1820

const SMOKE_RUNNER_PATH = "scripts/docker/install-sh-smoke/run.sh";

21+

const NONROOT_DOCKERFILE_PATH = "scripts/docker/install-sh-nonroot/Dockerfile";

1922

const NONROOT_RUNNER_PATH = "scripts/docker/install-sh-nonroot/run.sh";

2023

const BUN_GLOBAL_SMOKE_PATH = "scripts/e2e/bun-global-install-smoke.sh";

2124

const BUN_GLOBAL_ASSERTIONS_PATH = "scripts/e2e/lib/bun-global-install/assertions.mjs";

@@ -135,6 +138,27 @@ function normalizeInstallE2eAgentOutput(output: string) {

135138

}

136139

}

137140141+

function expectInstallDockerfileContract(

142+

dockerfilePath: string,

143+

runnerPath: string,

144+

entrypoint: string,

145+

): string {

146+

const dockerfile = readFileSync(dockerfilePath, "utf8");

147+148+

expect(dockerfile).toContain("# syntax=docker/dockerfile:1.7");

149+

expect(dockerfile).toMatch(/^FROM \S+@sha256:[a-f0-9]{64}$/m);

150+

expect(dockerfile).toContain("apt-get");

151+

expect(dockerfile).toContain("bash");

152+

expect(dockerfile).toContain("ca-certificates");

153+

expect(dockerfile).toContain("curl");

154+

expect(dockerfile).toContain(

155+

"COPY install-sh-common/version-parse.sh /usr/local/install-sh-common/version-parse.sh",

156+

);

157+

expect(dockerfile).toContain(`COPY --chmod=755 ${runnerPath} ${entrypoint}`);

158+

expect(dockerfile).toContain(`ENTRYPOINT ["${entrypoint}"]`);

159+

return dockerfile;

160+

}

161+138162

async function waitForCondition(

139163

predicate: () => boolean,

140164

label: string,

@@ -269,6 +293,35 @@ describe("test-install-sh-docker", () => {

269293

);

270294

});

271295296+

it("keeps install-sh Dockerfiles wired to their runner contracts", () => {

297+

const e2eDockerfile = expectInstallDockerfileContract(

298+

INSTALL_E2E_DOCKERFILE_PATH,

299+

"install-sh-e2e/run.sh",

300+

"/usr/local/bin/openclaw-install-e2e",

301+

);

302+

const smokeDockerfile = expectInstallDockerfileContract(

303+

SMOKE_DOCKERFILE_PATH,

304+

"install-sh-smoke/run.sh",

305+

"/usr/local/bin/openclaw-install-smoke",

306+

);

307+

const nonrootDockerfile = expectInstallDockerfileContract(

308+

NONROOT_DOCKERFILE_PATH,

309+

"install-sh-nonroot/run.sh",

310+

"/usr/local/bin/openclaw-install-nonroot",

311+

);

312+313+

expect(e2eDockerfile).toContain("USER appuser");

314+

expect(smokeDockerfile).toContain(

315+

"COPY install-sh-common/cli-verify.sh /usr/local/install-sh-common/cli-verify.sh",

316+

);

317+

expect(nonrootDockerfile).toContain(

318+

"COPY install-sh-common/cli-verify.sh /usr/local/install-sh-common/cli-verify.sh",

319+

);

320+

expect(nonrootDockerfile).toContain("USER app");

321+

expect(nonrootDockerfile).toContain("WORKDIR /home/app");

322+

expect(nonrootDockerfile).toContain("NPM_CONFIG_UPDATE_NOTIFIER=false");

323+

});

324+272325

it("can reuse dist from the already-built root Docker smoke image", () => {

273326

const script = readFileSync(SCRIPT_PATH, "utf8");

274327

const dockerfile = readFileSync("Dockerfile", "utf8");