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

推荐订阅源

G
Google Developers Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
A
About on SuperTechFans
量子位
Engineering at Meta
Engineering at Meta
B
Blog
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
J
Java Code Geeks
D
DataBreaches.Net
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell

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(git-hooks): skip sequencer pre-commit formatting (#95...
nxmxbbd · 2026-06-25 · via Recent Commits to openclaw:main
11

// Git hook tests validate pre-commit hook behavior and scripts.

22

import { execFileSync } from "node:child_process";

3-

import { existsSync, mkdirSync, symlinkSync, writeFileSync } from "node:fs";

3+

import { existsSync, mkdirSync, readFileSync, symlinkSync, writeFileSync } from "node:fs";

44

import path from "node:path";

55

import { afterEach, describe, expect, it } from "vitest";

66

import { cleanupTempDirs, makeTempRepoRoot } from "./helpers/temp-repo.js";

@@ -39,8 +39,8 @@ const runFailure = (

3939

const failure = error as Error & { status?: number; stderr?: string; stdout?: string };

4040

return {

4141

status: failure.status ?? 1,

42-

stderr: String(failure.stderr ?? ""),

43-

stdout: String(failure.stdout ?? ""),

42+

stderr: failure.stderr ?? "",

43+

stdout: failure.stdout ?? "",

4444

};

4545

}

4646

throw error;

@@ -83,6 +83,34 @@ function installPreCommitFixture(dir: string): string {

8383

return fakeBinDir;

8484

}

858586+

function installFormattingRecorder(dir: string): string {

87+

const logPath = path.join(dir, "hook-tool.log");

88+

writeFileSync(

89+

path.join(dir, "scripts", "pre-commit", "filter-staged-files.mjs"),

90+

`const files = process.argv.slice(3).filter((arg) => arg !== "--");

91+

for (const file of files) {

92+

if (file.endsWith(".ts")) {

93+

process.stdout.write(file);

94+

process.stdout.write("\0");

95+

}

96+

}

97+

`,

98+

"utf8",

99+

);

100+

writeFileSync(

101+

path.join(dir, "scripts", "pre-commit", "run-node-tool.sh"),

102+

`#!/usr/bin/env bash

103+

set -euo pipefail

104+

printf '%s\n' "$*" >> ${JSON.stringify(logPath)}

105+

`,

106+

{

107+

encoding: "utf8",

108+

mode: 0o755,

109+

},

110+

);

111+

return logPath;

112+

}

113+86114

function installRunNodeToolFixture(dir: string): void {

87115

mkdirSync(path.join(dir, "scripts", "pre-commit"), { recursive: true });

88116

symlinkSync(

@@ -101,6 +129,13 @@ function splitNonEmptyLines(output: string): string[] {

101129

return lines;

102130

}

103131132+

function readFormatterLog(logPath: string): string[] {

133+

if (!existsSync(logPath)) {

134+

return [];

135+

}

136+

return splitNonEmptyLines(readFileSync(logPath, "utf8"));

137+

}

138+104139

afterEach(() => {

105140

cleanupTempDirs(tempDirs);

106141

});

@@ -128,6 +163,100 @@ describe("git-hooks/pre-commit (integration)", () => {

128163

expect(staged).toEqual(["--all"]);

129164

});

130165166+

it("skips formatting staged files while a merge commit is in progress", () => {

167+

const dir = makeTempRepoRoot(tempDirs, "openclaw-pre-commit-merge-");

168+

run(dir, "git", ["init", "-q", "--initial-branch=main"]);

169+

installPreCommitFixture(dir);

170+

const logPath = installFormattingRecorder(dir);

171+172+

writeFileSync(path.join(dir, "changed.ts"), "export const value = 1;\n", "utf8");

173+

run(dir, "git", ["add", "--", "changed.ts"]);

174+

run(dir, "git", [

175+

"-c",

176+

"user.name=Test User",

177+

"-c",

178+

"user.email=test@example.invalid",

179+

"commit",

180+

"-q",

181+

"-m",

182+

"initial",

183+

]);

184+

run(dir, "git", ["checkout", "-q", "-b", "side"]);

185+

writeFileSync(path.join(dir, "changed.ts"), "export const value = 2;\n", "utf8");

186+

run(dir, "git", ["add", "--", "changed.ts"]);

187+

run(dir, "git", [

188+

"-c",

189+

"user.name=Test User",

190+

"-c",

191+

"user.email=test@example.invalid",

192+

"commit",

193+

"-q",

194+

"-m",

195+

"side change",

196+

]);

197+

run(dir, "git", ["checkout", "-q", "main"]);

198+

run(dir, "git", [

199+

"-c",

200+

"user.name=Test User",

201+

"-c",

202+

"user.email=test@example.invalid",

203+

"merge",

204+

"--no-commit",

205+

"--no-ff",

206+

"side",

207+

]);

208+209+

expect(existsSync(path.join(dir, ".git", "MERGE_HEAD"))).toBe(true);

210+

expect(run(dir, "git", ["diff", "--cached", "--name-only"])).toBe("changed.ts");

211+212+

run(dir, "bash", ["git-hooks/pre-commit"]);

213+214+

expect(readFormatterLog(logPath)).toEqual([]);

215+

});

216+217+

it.each([

218+

["cherry-pick", "CHERRY_PICK_HEAD", "file"],

219+

["revert", "REVERT_HEAD", "file"],

220+

["rebase head", "REBASE_HEAD", "file"],

221+

["merge rebase state", "rebase-merge", "dir"],

222+

["apply rebase state", "rebase-apply", "dir"],

223+

])("skips formatting staged files while %s metadata is present", (_label, gitPath, kind) => {

224+

const dir = makeTempRepoRoot(tempDirs, "openclaw-pre-commit-sequencer-");

225+

run(dir, "git", ["init", "-q", "--initial-branch=main"]);

226+

installPreCommitFixture(dir);

227+

const logPath = installFormattingRecorder(dir);

228+229+

writeFileSync(path.join(dir, "changed.ts"), "export const value = 1;\n", "utf8");

230+

run(dir, "git", ["add", "--", "changed.ts"]);

231+232+

const metadataPath = path.join(dir, ".git", gitPath);

233+

if (kind === "dir") {

234+

mkdirSync(metadataPath, { recursive: true });

235+

} else {

236+

writeFileSync(metadataPath, "sequencer state\n", "utf8");

237+

}

238+239+

run(dir, "bash", ["git-hooks/pre-commit"]);

240+241+

expect(readFormatterLog(logPath)).toEqual([]);

242+

});

243+244+

it("still formats staged files during a normal commit", () => {

245+

const dir = makeTempRepoRoot(tempDirs, "openclaw-pre-commit-normal-");

246+

run(dir, "git", ["init", "-q", "--initial-branch=main"]);

247+

installPreCommitFixture(dir);

248+

const logPath = installFormattingRecorder(dir);

249+250+

writeFileSync(path.join(dir, "changed.ts"), "export const value = 1;\n", "utf8");

251+

run(dir, "git", ["add", "--", "changed.ts"]);

252+253+

run(dir, "bash", ["git-hooks/pre-commit"]);

254+255+

expect(readFormatterLog(logPath)).toEqual([

256+

"oxfmt --write --no-error-on-unmatched-pattern changed.ts",

257+

]);

258+

});

259+131260

it("does not run the changed-scope check for non-doc staged changes", () => {

132261

const dir = makeTempRepoRoot(tempDirs, "openclaw-pre-commit-no-check-changed-");

133262

run(dir, "git", ["init", "-q", "--initial-branch=main"]);