Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
266 lines
9.7 KiB
TypeScript
266 lines
9.7 KiB
TypeScript
// Security Sensitive Guard Script tests cover sensitive file guard behavior.
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
GITHUB_RESPONSE_BODY_MAX_BYTES,
|
|
allowSecuritySensitiveCommand,
|
|
collectSecuritySensitiveChanges,
|
|
findSecuritySensitiveOverrideCommand,
|
|
findSecuritySensitiveOverrideCommandAsync,
|
|
findTrustedSecuritySensitiveGuardActor,
|
|
githubApi,
|
|
isSecuritySensitiveFile,
|
|
isSecuritySensitiveGuardAuthorizedForHead,
|
|
isSecuritySensitiveGuardMarkerComment,
|
|
isSecuritySensitiveGuardTrustedForHead,
|
|
markdownCode,
|
|
renderAuthorizedSecuritySensitiveComment,
|
|
renderBlockedSecuritySensitiveComment,
|
|
renderClearedSecuritySensitiveGuardComment,
|
|
renderSecuritySensitiveAwarenessComment,
|
|
renderTrustedSecuritySensitiveComment,
|
|
sanitizeDisplayValue,
|
|
securityApproverSet,
|
|
securitySensitiveFileDefinition,
|
|
securitySensitiveFileDefinitions,
|
|
securitySensitiveGuardCommentAuthors,
|
|
securitySensitiveGuardCommentHeadSha,
|
|
securitySensitiveGuardMarker,
|
|
securitySensitiveGuardTrustedActorCandidates,
|
|
securitySensitiveOverrideExpectedSha,
|
|
} from "../../scripts/github/security-sensitive-guard.mjs";
|
|
|
|
const headSha = "a".repeat(40);
|
|
const staleSha = "b".repeat(40);
|
|
|
|
describe("security-sensitive guard script", () => {
|
|
it("detects only registered security-sensitive file surfaces", () => {
|
|
expect(securitySensitiveFileDefinitions()).toEqual([
|
|
{
|
|
path: ".gitignore",
|
|
reason:
|
|
"Controls ignored secret and local files, including common `.env` files, before they can be accidentally committed.",
|
|
},
|
|
]);
|
|
expect(isSecuritySensitiveFile(".gitignore")).toBe(true);
|
|
expect(isSecuritySensitiveFile("docs/.gitignore")).toBe(false);
|
|
expect(isSecuritySensitiveFile("package.json")).toBe(false);
|
|
expect(securitySensitiveFileDefinition(".gitignore")?.reason).toContain(".env");
|
|
});
|
|
|
|
it("detects renames away from registered security-sensitive file surfaces", () => {
|
|
expect(
|
|
collectSecuritySensitiveChanges([
|
|
{
|
|
filename: ".gitignore.disabled",
|
|
previous_filename: ".gitignore",
|
|
status: "renamed",
|
|
},
|
|
]),
|
|
).toEqual([securitySensitiveFileDefinition(".gitignore")]);
|
|
});
|
|
|
|
it("accepts only security-member override commands for the current head sha", () => {
|
|
const comments = [
|
|
{
|
|
body: "/allow-security-sensitive-change not enough",
|
|
created_at: "2026-05-28T20:00:00Z",
|
|
user: { login: "not-security" },
|
|
},
|
|
{
|
|
body: "/allow-security-sensitive-change stale approval",
|
|
created_at: "2026-05-28T20:01:00Z",
|
|
user: { login: "security-user" },
|
|
},
|
|
{
|
|
body: "/allow-security-sensitive-change reviewed .gitignore",
|
|
created_at: "2026-05-28T20:03:00Z",
|
|
html_url: "https://example.test/comment",
|
|
user: { login: "security-user" },
|
|
},
|
|
];
|
|
|
|
const override = findSecuritySensitiveOverrideCommand({
|
|
comments,
|
|
expectedSha: headSha,
|
|
isSecurityMember: (login) => login === "security-user",
|
|
newerThan: "2026-05-28T20:02:00Z",
|
|
});
|
|
|
|
expect(override).toEqual({
|
|
login: "security-user",
|
|
reason: "reviewed .gitignore",
|
|
sha: headSha,
|
|
url: "https://example.test/comment",
|
|
});
|
|
});
|
|
|
|
it("rejects stale or non-security override commands", async () => {
|
|
const comments = [
|
|
{
|
|
body: "/allow-security-sensitive-change stale approval",
|
|
created_at: "2026-05-28T20:00:00Z",
|
|
user: { login: "security-user" },
|
|
},
|
|
{
|
|
body: "/allow-security-sensitive-change not enough",
|
|
created_at: "2026-05-28T20:02:00Z",
|
|
user: { login: "not-security" },
|
|
},
|
|
];
|
|
|
|
await expect(
|
|
findSecuritySensitiveOverrideCommandAsync({
|
|
comments,
|
|
expectedSha: headSha,
|
|
isSecurityMember: async (login) => login === "security-user",
|
|
newerThan: "2026-05-28T20:01:00Z",
|
|
}),
|
|
).resolves.toBeNull();
|
|
});
|
|
|
|
it("binds override commands to the head sha in the blocked guard comment", () => {
|
|
const blockedComment = {
|
|
body: renderBlockedSecuritySensitiveComment({
|
|
changes: [securitySensitiveFileDefinition(".gitignore")],
|
|
headSha,
|
|
}),
|
|
};
|
|
const staleBlockedComment = {
|
|
body: renderBlockedSecuritySensitiveComment({
|
|
changes: [securitySensitiveFileDefinition(".gitignore")],
|
|
headSha: staleSha,
|
|
}),
|
|
};
|
|
|
|
expect(securitySensitiveGuardCommentHeadSha(blockedComment)).toBe(headSha);
|
|
expect(securitySensitiveOverrideExpectedSha(blockedComment, headSha)).toBe(headSha);
|
|
expect(securitySensitiveOverrideExpectedSha(staleBlockedComment, headSha)).toBeNull();
|
|
});
|
|
|
|
it("preserves same-head authorization across reruns", () => {
|
|
const authorizedComment = {
|
|
body: renderAuthorizedSecuritySensitiveComment({
|
|
login: "security-user",
|
|
reason: null,
|
|
sha: headSha,
|
|
}),
|
|
};
|
|
|
|
expect(securitySensitiveGuardCommentHeadSha(authorizedComment)).toBe(headSha);
|
|
expect(isSecuritySensitiveGuardAuthorizedForHead(authorizedComment, headSha)).toBe(true);
|
|
expect(isSecuritySensitiveGuardAuthorizedForHead(authorizedComment, staleSha)).toBe(false);
|
|
expect(securitySensitiveOverrideExpectedSha(authorizedComment, headSha)).toBeNull();
|
|
});
|
|
|
|
it("recognizes trusted security-sensitive guard actors automatically", async () => {
|
|
const sameActorCandidates = securitySensitiveGuardTrustedActorCandidates({
|
|
pullRequest: { user: { login: "repo-admin" } },
|
|
event: { pull_request: { head: { sha: headSha } }, sender: { login: "repo-admin" } },
|
|
currentHeadSha: headSha,
|
|
});
|
|
const staleAuthorCandidate = securitySensitiveGuardTrustedActorCandidates({
|
|
pullRequest: { user: { login: "repo-admin" } },
|
|
event: { pull_request: { head: { sha: staleSha } }, sender: { login: "repo-admin" } },
|
|
currentHeadSha: headSha,
|
|
});
|
|
|
|
expect(sameActorCandidates).toEqual([{ login: "repo-admin", source: "pull request author" }]);
|
|
expect(staleAuthorCandidate).toEqual([]);
|
|
|
|
await expect(
|
|
findTrustedSecuritySensitiveGuardActor({
|
|
candidates: sameActorCandidates,
|
|
isSecuritySensitiveApprover: async (login) =>
|
|
login === "repo-admin" ? "repository admin" : null,
|
|
}),
|
|
).resolves.toEqual({
|
|
login: "repo-admin",
|
|
reason: "pull request author; repository admin",
|
|
});
|
|
});
|
|
|
|
it("trusts only configured security-sensitive guard marker comment authors", () => {
|
|
const trustedAuthors = securitySensitiveGuardCommentAuthors(
|
|
"github-actions[bot], openclaw-security-guard[bot]",
|
|
);
|
|
|
|
expect(
|
|
isSecuritySensitiveGuardMarkerComment(
|
|
{
|
|
body: securitySensitiveGuardMarker,
|
|
user: { login: "openclaw-security-guard[bot]" },
|
|
},
|
|
trustedAuthors,
|
|
),
|
|
).toBe(true);
|
|
expect(
|
|
isSecuritySensitiveGuardMarkerComment(
|
|
{
|
|
body: securitySensitiveGuardMarker,
|
|
user: { login: "contributor" },
|
|
},
|
|
trustedAuthors,
|
|
),
|
|
).toBe(false);
|
|
});
|
|
|
|
it("renders deterministic awareness, blocked, trusted, authorized, and cleared comments", () => {
|
|
const changes = [securitySensitiveFileDefinition(".gitignore")];
|
|
const awarenessBody = renderSecuritySensitiveAwarenessComment(changes);
|
|
const blockedBody = renderBlockedSecuritySensitiveComment({ changes, headSha });
|
|
const trustedBody = renderTrustedSecuritySensitiveComment({
|
|
actor: { login: "repo-admin", reason: "pull request author; repository admin" },
|
|
changes,
|
|
headSha,
|
|
});
|
|
const authorizedBody = renderAuthorizedSecuritySensitiveComment({
|
|
login: "security-user",
|
|
reason: "reviewed .gitignore",
|
|
sha: headSha,
|
|
});
|
|
const clearedBody = renderClearedSecuritySensitiveGuardComment({ headSha });
|
|
|
|
expect(awarenessBody).toContain(securitySensitiveGuardMarker);
|
|
expect(awarenessBody).toContain("Security-sensitive file changes detected");
|
|
expect(awarenessBody).toContain("`.gitignore`");
|
|
expect(awarenessBody).toContain(".env");
|
|
expect(blockedBody).toContain("Security-sensitive changes are blocked");
|
|
expect(blockedBody).toContain(allowSecuritySensitiveCommand);
|
|
expect(blockedBody).toContain(`current head SHA (\`${headSha}\`)`);
|
|
expect(trustedBody).toContain("Security-sensitive changes noted");
|
|
expect(trustedBody).toContain("@repo-admin");
|
|
expect(isSecuritySensitiveGuardTrustedForHead({ body: trustedBody }, headSha)).toBe(true);
|
|
expect(authorizedBody).toContain("Security-sensitive change authorized");
|
|
expect(authorizedBody).toContain("`reviewed .gitignore`");
|
|
expect(clearedBody).toContain("Security-sensitive guard cleared");
|
|
expect(clearedBody).toContain("requires a fresh `/allow-security-sensitive-change` comment");
|
|
});
|
|
|
|
it("sanitizes display values and markdown code", () => {
|
|
expect(sanitizeDisplayValue("abc\u0000def")).toBe("abc?def");
|
|
expect(sanitizeDisplayValue("x".repeat(300))).toHaveLength(240);
|
|
expect(markdownCode("`quoted`")).toBe("`\\`quoted\\``");
|
|
});
|
|
|
|
it("parses explicit security approver allowlists", () => {
|
|
expect(securityApproverSet("vincentkoc, steipete\njoshavant")).toEqual(
|
|
new Set(["vincentkoc", "steipete", "joshavant"]),
|
|
);
|
|
});
|
|
|
|
it("bounds successful GitHub API response bodies", async () => {
|
|
const request = githubApi("token", {
|
|
responseMaxBodyBytes: 64,
|
|
fetchImpl: (() =>
|
|
Promise.resolve(
|
|
new Response("x".repeat(65), {
|
|
headers: { "content-length": "65" },
|
|
}),
|
|
)) as typeof fetch,
|
|
}).request("/repos/openclaw/openclaw");
|
|
|
|
await expect(request).rejects.toThrow("GitHub response body exceeded 64 bytes");
|
|
expect(GITHUB_RESPONSE_BODY_MAX_BYTES).toBeGreaterThan(64);
|
|
});
|
|
});
|