Initial commit: Memind H5 portal with MindSpace, Plaza, and agent jobs.
Track application source and tests; exclude local env, user workspaces, and runtime data via .gitignore. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
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('api lockdown blocks native H5 APIs from agent proxy fallback', () => {
|
||||
const denied = evaluateProxyRequest(
|
||||
'POST',
|
||||
'/mindspace/v1/pages/demo/thumbnail/regenerate',
|
||||
{ api_lockdown: true },
|
||||
);
|
||||
assert.equal(denied.allowed, false);
|
||||
assert.match(denied.reason ?? '', /H5 本地接口不应走 Agent 代理/);
|
||||
});
|
||||
|
||||
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,
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user