4e21ca937a
Deploy Documentation / deploy (push) Has been cancelled
Canary / Prepare Version (push) Has been cancelled
Canary / build-cli (push) Has been cancelled
Canary / Upload Install Script (push) Has been cancelled
Canary / bundle-desktop (push) Has been cancelled
Canary / bundle-desktop-intel (push) Has been cancelled
Canary / bundle-desktop-linux (push) Has been cancelled
Canary / bundle-desktop-windows (push) Has been cancelled
Canary / bundle-desktop-windows-cuda (push) Has been cancelled
Canary / Release (push) Has been cancelled
Unused Dependencies / machete (push) Has been cancelled
CI / changes (push) Has been cancelled
CI / Check Rust Code Format (push) Has been cancelled
CI / Build and Test Rust Project (push) Has been cancelled
CI / Build Rust Project on Windows (push) Has been cancelled
CI / Check MSRV (push) Has been cancelled
CI / Lint Rust Code (push) Has been cancelled
CI / Check Generated Schemas are Up-to-Date (push) Has been cancelled
CI / Test and Lint Electron Desktop App (push) Has been cancelled
CI / H5 Plaza Tests and Build (push) Has been cancelled
Live Provider Tests / check-fork (push) Has been cancelled
Live Provider Tests / changes (push) Has been cancelled
Live Provider Tests / Build Binary (push) Has been cancelled
Live Provider Tests / Smoke Tests (push) Has been cancelled
Live Provider Tests / Smoke Tests (Code Execution) (push) Has been cancelled
Live Provider Tests / Compaction Tests (push) Has been cancelled
Live Provider Tests / goose server HTTP integration tests (push) Has been cancelled
Publish Ask AI Bot Docker Image / docker (push) Has been cancelled
Publish Docker Image / docker (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Fork goose with custom MCP widgets, platform extensions (aider, git, web, search), MindSpace H5 backend/frontend, Plaza/Ops UIs, and deploy scripts for tkmind.cn. Co-authored-by: Cursor <cursoragent@cursor.com>
108 lines
3.2 KiB
JavaScript
108 lines
3.2 KiB
JavaScript
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
import { DEFAULT_USER_CAPABILITIES } from './capabilities.mjs';
|
|
import {
|
|
applyPoliciesToCapabilities,
|
|
DEFAULT_USER_POLICIES,
|
|
evaluateProxyRequest,
|
|
normalizePolicyPatch,
|
|
resolveAgentGooseMode,
|
|
resolvePolicies,
|
|
} from './policies.mjs';
|
|
|
|
test('default user policies are conservative', () => {
|
|
assert.equal(DEFAULT_USER_POLICIES.goose_mode, 'chat');
|
|
assert.equal(DEFAULT_USER_POLICIES.network_egress, 'deny');
|
|
assert.equal(DEFAULT_USER_POLICIES.api_lockdown, true);
|
|
});
|
|
|
|
test('readonly workspace strips write capabilities', () => {
|
|
const effective = applyPoliciesToCapabilities(
|
|
{ shell: true, filesystem: true, code_browse: true },
|
|
{ workspace_access: 'readonly' },
|
|
);
|
|
assert.equal(effective.shell, false);
|
|
assert.equal(effective.filesystem, false);
|
|
assert.equal(effective.code_browse, true);
|
|
});
|
|
|
|
test('network deny strips egress capabilities', () => {
|
|
const effective = applyPoliciesToCapabilities(
|
|
{ shell: true, computer: true, charts: true },
|
|
{ network_egress: 'deny' },
|
|
);
|
|
assert.equal(effective.shell, false);
|
|
assert.equal(effective.computer, false);
|
|
assert.equal(effective.charts, true);
|
|
});
|
|
|
|
test('network deny keeps shell for static_publish sandbox users', () => {
|
|
const effective = applyPoliciesToCapabilities(
|
|
{ static_publish: true, shell: true, computer: true },
|
|
{ network_egress: 'deny' },
|
|
);
|
|
assert.equal(effective.shell, true);
|
|
assert.equal(effective.computer, false);
|
|
});
|
|
|
|
test('api lockdown blocks extension admin routes', () => {
|
|
const denied = evaluateProxyRequest('POST', '/agent/add_extension', {
|
|
api_lockdown: true,
|
|
});
|
|
assert.equal(denied.allowed, false);
|
|
|
|
const allowed = evaluateProxyRequest('POST', '/sessions/abc/reply', {
|
|
api_lockdown: true,
|
|
});
|
|
assert.equal(allowed.allowed, true);
|
|
});
|
|
|
|
test('unrestricted users bypass api lockdown', () => {
|
|
const result = evaluateProxyRequest('POST', '/config/permissions', {}, { unrestricted: true });
|
|
assert.equal(result.allowed, true);
|
|
});
|
|
|
|
test('resolvePolicies maps legacy approve modes to auto', () => {
|
|
const resolved = resolvePolicies({ goose_mode: 'approve' }, {});
|
|
assert.equal(resolved.goose_mode, 'auto');
|
|
});
|
|
|
|
test('resolveAgentGooseMode uses chat when no tools are enabled', () => {
|
|
assert.equal(
|
|
resolveAgentGooseMode(DEFAULT_USER_CAPABILITIES, { goose_mode: 'auto' }),
|
|
'chat',
|
|
);
|
|
});
|
|
|
|
test('resolveAgentGooseMode auto-runs tools without end-user prompts', () => {
|
|
assert.equal(
|
|
resolveAgentGooseMode(
|
|
{ ...DEFAULT_USER_CAPABILITIES, static_publish: true },
|
|
{ goose_mode: 'chat' },
|
|
),
|
|
'auto',
|
|
);
|
|
assert.equal(
|
|
resolveAgentGooseMode(
|
|
{ ...DEFAULT_USER_CAPABILITIES, static_publish: true },
|
|
{ goose_mode: 'approve' },
|
|
),
|
|
'auto',
|
|
);
|
|
});
|
|
|
|
test('resolvePolicies merges role and user overrides', () => {
|
|
const resolved = resolvePolicies(
|
|
{ goose_mode: 'approve', api_lockdown: true },
|
|
{ goose_mode: 'chat' },
|
|
);
|
|
assert.equal(resolved.goose_mode, 'chat');
|
|
assert.equal(resolved.api_lockdown, true);
|
|
});
|
|
|
|
test('normalizePolicyPatch ignores invalid values', () => {
|
|
assert.deepEqual(normalizePolicyPatch({ goose_mode: 'invalid', api_lockdown: true }), {
|
|
api_lockdown: true,
|
|
});
|
|
});
|