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

推荐订阅源

WordPress大学
WordPress大学
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
博客园 - Franky
Martin Fowler
Martin Fowler
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
The Cloudflare Blog
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
J
Java Code Geeks
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
MongoDB | Blog
MongoDB | Blog
腾讯CDC
博客园_首页
博客园 - 司徒正美
D
DataBreaches.Net
I
InfoQ
GbyAI
GbyAI
IT之家
IT之家
罗磊的独立博客

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): route doctor switch shims · openclaw/openc...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1329,6 +1329,14 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

13291329

"scripts/e2e/lib/doctor-install-switch/scenario.sh",

13301330

["test/scripts/docker-build-helper.test.ts"],

13311331

],

1332+

[

1333+

"scripts/e2e/lib/doctor-install-switch/shims/loginctl",

1334+

["test/scripts/docker-build-helper.test.ts"],

1335+

],

1336+

[

1337+

"scripts/e2e/lib/doctor-install-switch/shims/systemctl",

1338+

["test/scripts/docker-build-helper.test.ts"],

1339+

],

13321340

[

13331341

"scripts/e2e/lib/fixture.mjs",

13341342

["test/scripts/fixture-config.test.ts", "test/scripts/fixtures-workspace.test.ts"],

Original file line numberDiff line numberDiff line change

@@ -78,6 +78,8 @@ const PLUGIN_UPDATE_PROBE_PATH = "scripts/e2e/lib/plugin-update/probe.mjs";

7878

const PLUGIN_LIFECYCLE_MATRIX_DOCKER_E2E_PATH = "scripts/e2e/plugin-lifecycle-matrix-docker.sh";

7979

const DOCTOR_SWITCH_DOCKER_E2E_PATH = "scripts/e2e/doctor-install-switch-docker.sh";

8080

const DOCTOR_SWITCH_SCENARIO_PATH = "scripts/e2e/lib/doctor-install-switch/scenario.sh";

81+

const DOCTOR_SWITCH_LOGINCTL_SHIM_PATH = "scripts/e2e/lib/doctor-install-switch/shims/loginctl";

82+

const DOCTOR_SWITCH_SYSTEMCTL_SHIM_PATH = "scripts/e2e/lib/doctor-install-switch/shims/systemctl";

8183

const PACKAGE_COMPAT_PATH = "scripts/e2e/lib/package-compat.mjs";

8284

const UPGRADE_SURVIVOR_DOCKER_E2E_PATH = "scripts/e2e/upgrade-survivor-docker.sh";

8385

const UPDATE_CHANNEL_SWITCH_DOCKER_E2E_PATH = "scripts/e2e/update-channel-switch-docker.sh";

@@ -3863,6 +3865,8 @@ output="$(cat "$sampler_log")"

38633865

const pluginUpdateProbe = readFileSync(PLUGIN_UPDATE_PROBE_PATH, "utf8");

38643866

const updateChannelAssertions = readFileSync(UPDATE_CHANNEL_SWITCH_ASSERTIONS_PATH, "utf8");

38653867

const packageCompat = readFileSync(PACKAGE_COMPAT_PATH, "utf8");

3868+

const doctorLoginctlShim = readFileSync(DOCTOR_SWITCH_LOGINCTL_SHIM_PATH, "utf8");

3869+

const doctorSystemctlShim = readFileSync(DOCTOR_SWITCH_SYSTEMCTL_SHIM_PATH, "utf8");

38663870

const scripts = [

38673871

doctorScenario,

38683872

updateChannel,

@@ -3878,6 +3882,11 @@ output="$(cat "$sampler_log")"

38783882

expect(readFileSync(DOCTOR_SWITCH_DOCKER_E2E_PATH, "utf8")).toContain(

38793883

"scripts/e2e/lib/doctor-install-switch/scenario.sh",

38803884

);

3885+

expect(doctorScenario).toContain("cp scripts/e2e/lib/doctor-install-switch/shims/systemctl");

3886+

expect(doctorScenario).toContain("cp scripts/e2e/lib/doctor-install-switch/shims/loginctl");

3887+

expect(doctorLoginctlShim).toContain("Linger=yes");

3888+

expect(doctorSystemctlShim).toContain("ActiveState=inactive");

3889+

expect(doctorSystemctlShim).toContain('unit_path="$HOME/.config/systemd/user/${unit}"');

38813890

expect(readFileSync(PLUGINS_DOCKER_E2E_PATH, "utf8")).toContain(

38823891

"scripts/e2e/lib/plugins/sweep.sh",

38833892

);

Original file line numberDiff line numberDiff line change

@@ -475,6 +475,14 @@ describe("scripts/test-projects changed-target routing", () => {

475475

"scripts/e2e/lib/doctor-install-switch/scenario.sh",

476476

["test/scripts/docker-build-helper.test.ts"],

477477

],

478+

[

479+

"scripts/e2e/lib/doctor-install-switch/shims/loginctl",

480+

["test/scripts/docker-build-helper.test.ts"],

481+

],

482+

[

483+

"scripts/e2e/lib/doctor-install-switch/shims/systemctl",

484+

["test/scripts/docker-build-helper.test.ts"],

485+

],

478486

[

479487

"scripts/e2e/lib/fixture.mjs",

480488

["test/scripts/fixture-config.test.ts", "test/scripts/fixtures-workspace.test.ts"],