2025-10-28 09:20:57 -07:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
|
2025-11-03 15:41:00 -08:00
|
|
|
import { ApprovalMode, PolicyDecision } from './types.js';
|
2025-10-28 09:20:57 -07:00
|
|
|
import type { Dirent } from 'node:fs';
|
|
|
|
|
import nodePath from 'node:path';
|
2025-11-05 23:19:05 -08:00
|
|
|
import type { PolicyLoadResult } from './toml-loader.js';
|
|
|
|
|
|
|
|
|
|
async function runLoadPoliciesFromToml(
|
|
|
|
|
tomlContent: string,
|
|
|
|
|
fileName = 'test.toml',
|
|
|
|
|
): Promise<PolicyLoadResult> {
|
|
|
|
|
const actualFs =
|
|
|
|
|
await vi.importActual<typeof import('node:fs/promises')>(
|
|
|
|
|
'node:fs/promises',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const mockReaddir = vi.fn(
|
|
|
|
|
async (
|
|
|
|
|
path: string,
|
|
|
|
|
_options?: { withFileTypes: boolean },
|
|
|
|
|
): Promise<Dirent[]> => {
|
|
|
|
|
if (nodePath.normalize(path) === nodePath.normalize('/policies')) {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
name: fileName,
|
|
|
|
|
isFile: () => true,
|
|
|
|
|
isDirectory: () => false,
|
|
|
|
|
} as Dirent,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
return [];
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const mockReadFile = vi.fn(async (path: string): Promise<string> => {
|
|
|
|
|
if (
|
|
|
|
|
nodePath.normalize(path) ===
|
|
|
|
|
nodePath.normalize(nodePath.join('/policies', fileName))
|
|
|
|
|
) {
|
|
|
|
|
return tomlContent;
|
|
|
|
|
}
|
|
|
|
|
throw new Error('File not found');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
vi.doMock('node:fs/promises', () => ({
|
|
|
|
|
...actualFs,
|
|
|
|
|
default: { ...actualFs, readFile: mockReadFile, readdir: mockReaddir },
|
|
|
|
|
readFile: mockReadFile,
|
|
|
|
|
readdir: mockReaddir,
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const { loadPoliciesFromToml: load } = await import('./toml-loader.js');
|
|
|
|
|
|
|
|
|
|
const getPolicyTier = (_dir: string) => 1;
|
|
|
|
|
return load(ApprovalMode.DEFAULT, ['/policies'], getPolicyTier);
|
|
|
|
|
}
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
describe('policy-toml-loader', () => {
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.resetModules();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
|
vi.restoreAllMocks();
|
|
|
|
|
vi.doUnmock('node:fs/promises');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe('loadPoliciesFromToml', () => {
|
|
|
|
|
it('should load and parse a simple policy file', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "glob"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(1);
|
|
|
|
|
expect(result.rules[0]).toEqual({
|
|
|
|
|
toolName: 'glob',
|
|
|
|
|
decision: PolicyDecision.ALLOW,
|
|
|
|
|
priority: 1.1, // tier 1 + 100/1000
|
|
|
|
|
});
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should expand commandPrefix array to multiple rules', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
|
|
|
|
commandPrefix = ["git status", "git log"]
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(2);
|
|
|
|
|
expect(result.rules[0].toolName).toBe('run_shell_command');
|
|
|
|
|
expect(result.rules[1].toolName).toBe('run_shell_command');
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git status"}'),
|
|
|
|
|
).toBe(true);
|
|
|
|
|
expect(result.rules[1].argsPattern?.test('{"command":"git log"}')).toBe(
|
|
|
|
|
true,
|
|
|
|
|
);
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should transform commandRegex to argsPattern', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
|
|
|
|
commandRegex = "git (status|log).*"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(1);
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git status"}'),
|
|
|
|
|
).toBe(true);
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git log --all"}'),
|
|
|
|
|
).toBe(true);
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git branch"}'),
|
|
|
|
|
).toBe(false);
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should expand toolName array', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = ["glob", "grep", "read"]
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(3);
|
|
|
|
|
expect(result.rules.map((r) => r.toolName)).toEqual([
|
|
|
|
|
'glob',
|
|
|
|
|
'grep',
|
|
|
|
|
'read',
|
|
|
|
|
]);
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should transform mcpName to composite toolName', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
mcpName = "google-workspace"
|
|
|
|
|
toolName = ["calendar.list", "calendar.get"]
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(2);
|
|
|
|
|
expect(result.rules[0].toolName).toBe('google-workspace__calendar.list');
|
|
|
|
|
expect(result.rules[1].toolName).toBe('google-workspace__calendar.get');
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should filter rules by mode', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "glob"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
modes = ["default", "yolo"]
|
|
|
|
|
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "grep"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
modes = ["yolo"]
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
// Only the first rule should be included (modes includes "default")
|
|
|
|
|
expect(result.rules).toHaveLength(1);
|
|
|
|
|
expect(result.rules[0].toolName).toBe('glob');
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle TOML parse errors', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]
|
|
|
|
|
toolName = "glob"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(0);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
expect(result.errors[0].errorType).toBe('toml_parse');
|
2025-11-05 23:19:05 -08:00
|
|
|
expect(result.errors[0].fileName).toBe('test.toml');
|
|
|
|
|
});
|
2025-10-28 09:20:57 -07:00
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
it('should handle schema validation errors', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "glob"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(0);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
expect(result.errors[0].errorType).toBe('schema_validation');
|
|
|
|
|
expect(result.errors[0].details).toContain('decision');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should reject commandPrefix without run_shell_command', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "glob"
|
|
|
|
|
commandPrefix = "git status"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
expect(result.errors[0].errorType).toBe('rule_validation');
|
|
|
|
|
expect(result.errors[0].details).toContain('run_shell_command');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should reject commandPrefix + argsPattern combination', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
|
|
|
|
commandPrefix = "git status"
|
|
|
|
|
argsPattern = "test"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
expect(result.errors[0].errorType).toBe('rule_validation');
|
|
|
|
|
expect(result.errors[0].details).toContain('mutually exclusive');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle invalid regex patterns', async () => {
|
2025-11-05 23:19:05 -08:00
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
|
|
|
|
commandRegex = "git (status|branch"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(0);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
expect(result.errors[0].errorType).toBe('regex_compilation');
|
|
|
|
|
expect(result.errors[0].details).toContain('git (status|branch');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should escape regex special characters in commandPrefix', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
|
|
|
|
commandPrefix = "git log *.txt"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
|
|
|
|
|
expect(result.rules).toHaveLength(1);
|
|
|
|
|
// The regex should have escaped the * and .
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git log file.txt"}'),
|
|
|
|
|
).toBe(false);
|
|
|
|
|
expect(
|
|
|
|
|
result.rules[0].argsPattern?.test('{"command":"git log *.txt"}'),
|
|
|
|
|
).toBe(true);
|
|
|
|
|
expect(result.errors).toHaveLength(0);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should handle a mix of valid and invalid policy files', async () => {
|
2025-10-28 09:20:57 -07:00
|
|
|
const actualFs =
|
|
|
|
|
await vi.importActual<typeof import('node:fs/promises')>(
|
|
|
|
|
'node:fs/promises',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const mockReaddir = vi.fn(
|
|
|
|
|
async (
|
|
|
|
|
path: string,
|
|
|
|
|
_options?: { withFileTypes: boolean },
|
|
|
|
|
): Promise<Dirent[]> => {
|
|
|
|
|
if (nodePath.normalize(path) === nodePath.normalize('/policies')) {
|
|
|
|
|
return [
|
2025-11-05 23:19:05 -08:00
|
|
|
{
|
|
|
|
|
name: 'valid.toml',
|
|
|
|
|
isFile: () => true,
|
|
|
|
|
isDirectory: () => false,
|
|
|
|
|
} as Dirent,
|
2025-10-28 09:20:57 -07:00
|
|
|
{
|
|
|
|
|
name: 'invalid.toml',
|
|
|
|
|
isFile: () => true,
|
|
|
|
|
isDirectory: () => false,
|
|
|
|
|
} as Dirent,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
return [];
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const mockReadFile = vi.fn(async (path: string): Promise<string> => {
|
|
|
|
|
if (
|
|
|
|
|
nodePath.normalize(path) ===
|
2025-11-05 23:19:05 -08:00
|
|
|
nodePath.normalize(nodePath.join('/policies', 'valid.toml'))
|
2025-10-28 09:20:57 -07:00
|
|
|
) {
|
|
|
|
|
return `
|
|
|
|
|
[[rule]]
|
2025-11-05 23:19:05 -08:00
|
|
|
toolName = "glob"
|
2025-10-28 09:20:57 -07:00
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
if (
|
|
|
|
|
nodePath.normalize(path) ===
|
|
|
|
|
nodePath.normalize(nodePath.join('/policies', 'invalid.toml'))
|
|
|
|
|
) {
|
|
|
|
|
return `
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "grep"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = -1
|
2025-10-28 09:20:57 -07:00
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
throw new Error('File not found');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
vi.doMock('node:fs/promises', () => ({
|
|
|
|
|
...actualFs,
|
|
|
|
|
default: { ...actualFs, readFile: mockReadFile, readdir: mockReaddir },
|
|
|
|
|
readFile: mockReadFile,
|
|
|
|
|
readdir: mockReaddir,
|
|
|
|
|
}));
|
|
|
|
|
|
2025-11-03 15:41:00 -08:00
|
|
|
const { loadPoliciesFromToml: load } = await import('./toml-loader.js');
|
2025-10-28 09:20:57 -07:00
|
|
|
|
|
|
|
|
const getPolicyTier = (_dir: string) => 1;
|
|
|
|
|
const result = await load(
|
|
|
|
|
ApprovalMode.DEFAULT,
|
|
|
|
|
['/policies'],
|
|
|
|
|
getPolicyTier,
|
|
|
|
|
);
|
|
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
expect(result.rules).toHaveLength(1);
|
|
|
|
|
expect(result.rules[0].toolName).toBe('glob');
|
2025-10-28 09:20:57 -07:00
|
|
|
expect(result.errors).toHaveLength(1);
|
2025-11-05 23:19:05 -08:00
|
|
|
expect(result.errors[0].fileName).toBe('invalid.toml');
|
|
|
|
|
expect(result.errors[0].errorType).toBe('schema_validation');
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
describe('Negative Tests', () => {
|
|
|
|
|
it('should return a schema_validation error if priority is missing', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('priority');
|
2025-10-28 09:20:57 -07:00
|
|
|
});
|
|
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
it('should return a schema_validation error if priority is a float', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 1.5
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('priority');
|
|
|
|
|
expect(error.details).toContain('integer');
|
|
|
|
|
});
|
2025-10-28 09:20:57 -07:00
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
it('should return a schema_validation error if priority is negative', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = -1
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('priority');
|
|
|
|
|
expect(error.details).toContain('>= 0');
|
|
|
|
|
});
|
2025-10-28 09:20:57 -07:00
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
it('should return a schema_validation error if priority is >= 1000', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 1000
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('priority');
|
|
|
|
|
expect(error.details).toContain('<= 999');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a schema_validation error if decision is invalid', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
decision = "maybe"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('decision');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a schema_validation error if toolName is not a string or array', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = 123
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('schema_validation');
|
|
|
|
|
expect(error.details).toContain('toolName');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a rule_validation error if commandRegex is used with wrong toolName', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "not_shell"
|
|
|
|
|
commandRegex = ".*"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('rule_validation');
|
|
|
|
|
expect(error.details).toContain('run_shell_command');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a rule_validation error if commandPrefix and commandRegex are combined', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
2025-10-28 09:20:57 -07:00
|
|
|
[[rule]]
|
|
|
|
|
toolName = "run_shell_command"
|
2025-11-05 23:19:05 -08:00
|
|
|
commandPrefix = "git"
|
|
|
|
|
commandRegex = ".*"
|
2025-10-28 09:20:57 -07:00
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
2025-11-05 23:19:05 -08:00
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('rule_validation');
|
|
|
|
|
expect(error.details).toContain('mutually exclusive');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a regex_compilation error for invalid argsPattern', async () => {
|
|
|
|
|
const result = await runLoadPoliciesFromToml(`
|
|
|
|
|
[[rule]]
|
|
|
|
|
toolName = "test"
|
|
|
|
|
argsPattern = "([a-z)"
|
|
|
|
|
decision = "allow"
|
|
|
|
|
priority = 100
|
|
|
|
|
`);
|
|
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('regex_compilation');
|
|
|
|
|
expect(error.message).toBe('Invalid regex pattern');
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should return a file_read error if readdir fails', async () => {
|
|
|
|
|
const actualFs =
|
|
|
|
|
await vi.importActual<typeof import('node:fs/promises')>(
|
|
|
|
|
'node:fs/promises',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const mockReaddir = vi.fn(async () => {
|
|
|
|
|
throw new Error('Permission denied');
|
2025-10-28 09:20:57 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
vi.doMock('node:fs/promises', () => ({
|
|
|
|
|
...actualFs,
|
2025-11-05 23:19:05 -08:00
|
|
|
default: { ...actualFs, readdir: mockReaddir },
|
2025-10-28 09:20:57 -07:00
|
|
|
readdir: mockReaddir,
|
|
|
|
|
}));
|
|
|
|
|
|
2025-11-03 15:41:00 -08:00
|
|
|
const { loadPoliciesFromToml: load } = await import('./toml-loader.js');
|
2025-10-28 09:20:57 -07:00
|
|
|
const getPolicyTier = (_dir: string) => 1;
|
|
|
|
|
const result = await load(
|
|
|
|
|
ApprovalMode.DEFAULT,
|
|
|
|
|
['/policies'],
|
|
|
|
|
getPolicyTier,
|
|
|
|
|
);
|
|
|
|
|
|
2025-11-05 23:19:05 -08:00
|
|
|
expect(result.errors).toHaveLength(1);
|
|
|
|
|
const error = result.errors[0];
|
|
|
|
|
expect(error.errorType).toBe('file_read');
|
|
|
|
|
expect(error.message).toContain('Failed to read policy directory');
|
2025-10-28 09:20:57 -07:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|