mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 10:01:24 +00:00
95 lines
2.3 KiB
TypeScript
95 lines
2.3 KiB
TypeScript
import { describe, expect, test } from "vitest";
|
|
import { approvalMatchesSystemRunRequest } from "./node-invoke-system-run-approval-match.js";
|
|
|
|
describe("approvalMatchesSystemRunRequest", () => {
|
|
test("matches legacy command text when binding fields match", () => {
|
|
const result = approvalMatchesSystemRunRequest({
|
|
cmdText: "echo SAFE",
|
|
argv: ["echo", "SAFE"],
|
|
request: {
|
|
host: "node",
|
|
command: "echo SAFE",
|
|
cwd: "/tmp",
|
|
agentId: "agent-1",
|
|
sessionKey: "session-1",
|
|
},
|
|
binding: {
|
|
cwd: "/tmp",
|
|
agentId: "agent-1",
|
|
sessionKey: "session-1",
|
|
},
|
|
});
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
test("rejects legacy command mismatch", () => {
|
|
const result = approvalMatchesSystemRunRequest({
|
|
cmdText: "echo PWNED",
|
|
argv: ["echo", "PWNED"],
|
|
request: {
|
|
host: "node",
|
|
command: "echo SAFE",
|
|
},
|
|
binding: {
|
|
cwd: null,
|
|
agentId: null,
|
|
sessionKey: null,
|
|
},
|
|
});
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
test("enforces exact argv binding when commandArgv is set", () => {
|
|
const result = approvalMatchesSystemRunRequest({
|
|
cmdText: "echo SAFE",
|
|
argv: ["echo", "SAFE"],
|
|
request: {
|
|
host: "node",
|
|
command: "echo SAFE",
|
|
commandArgv: ["echo", "SAFE"],
|
|
},
|
|
binding: {
|
|
cwd: null,
|
|
agentId: null,
|
|
sessionKey: null,
|
|
},
|
|
});
|
|
expect(result).toBe(true);
|
|
});
|
|
|
|
test("rejects argv mismatch even when command text matches", () => {
|
|
const result = approvalMatchesSystemRunRequest({
|
|
cmdText: "echo SAFE",
|
|
argv: ["echo", "SAFE"],
|
|
request: {
|
|
host: "node",
|
|
command: "echo SAFE",
|
|
commandArgv: ["echo SAFE"],
|
|
},
|
|
binding: {
|
|
cwd: null,
|
|
agentId: null,
|
|
sessionKey: null,
|
|
},
|
|
});
|
|
expect(result).toBe(false);
|
|
});
|
|
|
|
test("rejects non-node host requests", () => {
|
|
const result = approvalMatchesSystemRunRequest({
|
|
cmdText: "echo SAFE",
|
|
argv: ["echo", "SAFE"],
|
|
request: {
|
|
host: "gateway",
|
|
command: "echo SAFE",
|
|
},
|
|
binding: {
|
|
cwd: null,
|
|
agentId: null,
|
|
sessionKey: null,
|
|
},
|
|
});
|
|
expect(result).toBe(false);
|
|
});
|
|
});
|