import test from 'node:test'; import assert from 'node:assert/strict'; import { spawnSync } from 'node:child_process'; import { ComputerUseSession } from '../computer-use/session.js'; import { ComputerActuator } from '../computer-use/actuator.js'; import { ComputerAudit } from '../computer-use/audit.js'; import { mkdtemp, readFile } from 'node:fs/promises'; import { tmpdir } from 'node:os'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; test('computer use requires an explicit grant and enforces its step budget', () => { let now = 1000; const session = new ComputerUseSession({ stepsMax: 2, clock: () => now }); assert.throws(() => session.beginStep(), /inactive/); assert.deepEqual(session.grant({ persist: true }).restore_token_present, true); session.beginStep(); session.beginStep(); assert.throws(() => session.beginStep(), /budget/); assert.equal(session.status().steps_used, 2); session.revoke(); assert.equal(session.status().active, false); now += 1; }); test('computer use expires its wall clock grant', () => { let now = 0; const session = new ComputerUseSession({ clock: () => now }); session.grant(); now = 180001; assert.throws(() => session.beginStep(), /expired/); assert.equal(session.status().backend, 'none'); }); test('computer use records portal-notify as a live backend', () => { const session = new ComputerUseSession(); session.grant(); assert.equal(session.setBackend('portal-notify'), 'portal-notify'); assert.equal(session.status().backend, 'portal-notify'); }); test('computer use semantic actuation previews, budgets, and audits actions', async () => { const dir = await mkdtemp(path.join(tmpdir(), 'jarvis-cu-audit-')); const audit = new ComputerAudit({ dir }); const session = new ComputerUseSession({ stepsMax: 1, audit }); const sent = []; session.grant(); const actuator = new ComputerActuator({ session, input: { send: (event) => sent.push(event) }, find: async ({ ref }) => [{ ref, name: 'Save', role: 'push button', rect: [1, 2, 3, 4] }], atspiAction: async () => ({ semantic: true }), audit, sleep: async () => {} }); const result = await actuator.click({ ref: 'r1' }); assert.equal(result.ok, true); assert.equal(session.status().steps_used, 1); assert.deepEqual(sent, []); const files = await (await import('node:fs/promises')).readdir(dir); assert.equal(files.length, 1); assert.match(await readFile(path.join(dir, files[0]), 'utf8'), /target_hash/); }); test('computer use refuses password targets and unconfirmed dangerous keys', async () => { const session = new ComputerUseSession(); session.grant(); const actuator = new ComputerActuator({ session, input: { send() {} }, find: async () => [{ name: 'Password', role: 'password text' }], sleep: async () => {} }); await assert.rejects(() => actuator.type({ ref: 'password', text: 'secret' }), /password/); await assert.rejects(() => actuator.key({ combo: 'alt+f4' }), /confirmation/); }); test('libei sender binds bitmask capabilities from libei.h', () => { const pyDir = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '../computer-use/py'); const compiled = spawnSync('python3', ['-m', 'py_compile', 'libei_sender.py', 'portal_remote_desktop.py', 'portal_screenshot.py'], { cwd: pyDir, encoding: 'utf8' }); assert.equal(compiled.status, 0, compiled.stderr); const caps = spawnSync('python3', ['-c', 'from libei_sender import CAP_POINTER, CAP_KEYBOARD, CAP_BUTTON, F_KEYS; assert CAP_POINTER == 1 and CAP_KEYBOARD == 4 and CAP_BUTTON == 32 and F_KEYS["f11"] == 87'], { cwd: pyDir, encoding: 'utf8' }); assert.equal(caps.status, 0, caps.stderr); });