import { describe, it, afterEach, mock } from 'node:test'; import assert from 'node:assert/strict'; import axios from 'axios'; import { checkRequiredEnv, verifyGiteaToken, verifyCommentToken, verifyLLM, runPreflight } from '../preflight.js'; const LLM_ENV_KEYS = [ 'OPENCODE_BASE_URL', 'OPENCODE_MODEL', 'OPENCODE_PROVIDER', ]; function clearLLMEnv() { for (const k of LLM_ENV_KEYS) delete process.env[k]; } afterEach(() => { mock.restoreAll(); clearLLMEnv(); }); describe('checkRequiredEnv', () => { it('reports all three missing when nothing provided', () => { const result = checkRequiredEnv({ token: '', repo: '', pr: '' }); assert.equal(result.ok, false); assert.deepEqual(result.missing, ['GITEA_TOKEN', 'GITEA_REPOSITORY', 'PR_NUMBER']); }); it('reports only the missing ones', () => { const result = checkRequiredEnv({ token: 't', repo: '', pr: '5' }); assert.equal(result.ok, false); assert.deepEqual(result.missing, ['GITEA_REPOSITORY']); }); it('ok when all provided', () => { const result = checkRequiredEnv({ token: 't', repo: 'owner/repo', pr: '5' }); assert.equal(result.ok, true); assert.deepEqual(result.missing, []); }); }); describe('verifyGiteaToken', () => { it('ok when repo endpoint returns successfully', async () => { let capturedUrl, capturedOpts; mock.method(axios, 'get', async (url, opts) => { capturedUrl = url; capturedOpts = opts; return { data: { full_name: 'owner/repo' } }; }); const result = await verifyGiteaToken('tok', 'owner/repo'); assert.equal(result.ok, true); assert.ok(capturedUrl.includes('/api/v1/repos/owner/repo')); assert.equal(capturedOpts.headers['Authorization'], 'token tok'); }); it('fails with HTTP status when token is invalid', async () => { mock.method(axios, 'get', async () => { const e = new Error('Unauthorized'); e.response = { status: 401 }; throw e; }); const result = await verifyGiteaToken('bad', 'owner/repo'); assert.equal(result.ok, false); assert.match(result.error, /HTTP 401/); }); }); describe('verifyCommentToken', () => { it('skips when no comment token provided', async () => { const result = await verifyCommentToken(''); assert.deepEqual(result, { ok: true, skipped: true }); }); it('ok when /user returns successfully', async () => { let capturedUrl, capturedOpts; mock.method(axios, 'get', async (url, opts) => { capturedUrl = url; capturedOpts = opts; return { data: { login: 'bot' } }; }); const result = await verifyCommentToken('ctok'); assert.equal(result.ok, true); assert.ok(capturedUrl.endsWith('/api/v1/user')); assert.equal(capturedOpts.headers['Authorization'], 'token ctok'); }); it('fails when comment token is invalid', async () => { mock.method(axios, 'get', async () => { const e = new Error('Unauthorized'); e.response = { status: 401 }; throw e; }); const result = await verifyCommentToken('bad'); assert.equal(result.ok, false); assert.match(result.error, /HTTP 401/); }); }); describe('verifyLLM', () => { it('fails when OpenCode is not configured', async () => { clearLLMEnv(); const result = await verifyLLM(); assert.equal(result.ok, false); assert.match(result.error, /OPENCODE_BASE_URL/); }); it('checks OpenCode server provider and model', async () => { clearLLMEnv(); process.env.OPENCODE_BASE_URL = 'http://opencode.local:4096'; process.env.OPENCODE_PROVIDER = 'google'; process.env.OPENCODE_MODEL = 'gemini-2.5-flash'; const urls = []; mock.method(axios, 'get', async (url) => { urls.push(url); if (url.endsWith('/global/health')) return { data: { healthy: true, version: '1.17.7' } }; return { data: { providers: [{ id: 'google', models: { 'gemini-2.5-flash': { id: 'gemini-2.5-flash' } } }] } }; }); const result = await verifyLLM(); assert.equal(result.ok, true); assert.equal(result.provider, 'opencode'); assert.deepEqual(urls, ['http://opencode.local:4096/global/health', 'http://opencode.local:4096/config/providers']); }); it('fails when configured provider is missing', async () => { clearLLMEnv(); process.env.OPENCODE_BASE_URL = 'http://opencode.local:4096'; process.env.OPENCODE_PROVIDER = 'google'; mock.method(axios, 'get', async (url) => { if (url.endsWith('/global/health')) return { data: { healthy: true } }; return { data: { providers: [{ id: 'anthropic', models: {} }] } }; }); const result = await verifyLLM(); assert.equal(result.ok, false); assert.match(result.error, /未設定 provider=google/); }); it('fails when configured model is missing', async () => { clearLLMEnv(); process.env.OPENCODE_BASE_URL = 'http://opencode.local:4096'; process.env.OPENCODE_PROVIDER = 'google'; process.env.OPENCODE_MODEL = 'gemini-2.5-pro'; mock.method(axios, 'get', async (url) => { if (url.endsWith('/global/health')) return { data: { healthy: true } }; return { data: { providers: [{ id: 'google', models: { 'gemini-2.5-flash': { id: 'gemini-2.5-flash' } } }] } }; }); const result = await verifyLLM(); assert.equal(result.ok, false); assert.match(result.error, /未列出 model=gemini-2.5-pro/); }); it('passes an insecure https agent by default', async () => { clearLLMEnv(); process.env.OPENCODE_BASE_URL = 'https://opencode.local:4096'; const agents = []; mock.method(axios, 'get', async (url, opts) => { agents.push(opts.httpsAgent); if (url.endsWith('/global/health')) return { data: { healthy: true } }; return { data: { providers: [{ id: 'google', models: { 'gemini-2.5-flash': { id: 'gemini-2.5-flash' } } }] } }; }); const result = await verifyLLM(); assert.equal(result.ok, true); assert.equal(agents.length, 2); assert.equal(agents[0].options.rejectUnauthorized, false); assert.equal(agents[1].options.rejectUnauthorized, false); }); }); describe('runPreflight', () => { function makeDeps(overrides = {}) { return { checkEnv: () => ({ ok: true, missing: [] }), verifyToken: async () => ({ ok: true }), verifyComment: async () => ({ ok: true }), verifyRemote: () => ({ ok: true }), verifyLLMFn: async () => ({ ok: true, provider: 'opencode' }), ...overrides, }; } it('returns false and stops early when required env is missing', async () => { const result = await runPreflight(); assert.equal(result, false); }); it('returns true when every verification step succeeds', async () => { const result = await runPreflight('/ws', makeDeps()); assert.equal(result, true); }); it('returns true when the comment token check is skipped', async () => { const result = await runPreflight('/ws', makeDeps({ verifyComment: async () => ({ ok: true, skipped: true }), })); assert.equal(result, true); }); it('returns false when the Gitea token check fails', async () => { let remoteCalled = false; const result = await runPreflight('/ws', makeDeps({ verifyToken: async () => ({ ok: false, error: 'HTTP 401' }), verifyRemote: () => { remoteCalled = true; return { ok: true }; }, })); assert.equal(result, false); assert.equal(remoteCalled, false, 'should stop before later checks'); }); it('returns false when the comment token check fails', async () => { const result = await runPreflight('/ws', makeDeps({ verifyComment: async () => ({ ok: false, error: 'HTTP 401' }), })); assert.equal(result, false); }); it('returns false when git remote access fails', async () => { let llmCalled = false; const result = await runPreflight('/ws', makeDeps({ verifyRemote: () => ({ ok: false, error: 'auth failed' }), verifyLLMFn: async () => { llmCalled = true; return { ok: true }; }, })); assert.equal(result, false); assert.equal(llmCalled, false, 'should stop before the LLM check'); }); it('returns false when LLM verification fails', async () => { const result = await runPreflight('/ws', makeDeps({ verifyLLMFn: async () => ({ ok: false, error: 'OpenCode server 驗證失敗' }), })); assert.equal(result, false); }); it('passes the workspace through to the remote-access check', async () => { let captured; await runPreflight('/custom/ws', makeDeps({ verifyRemote: (ws) => { captured = ws; return { ok: true }; }, })); assert.equal(captured, '/custom/ws'); }); });