Implements #1 — stoke installable with apt-get install stoke. Packaging: - scripts/build-deb.sh: builds dist/stoke_<version>_all.deb from a clean staging copy (src + fresh npm ci --omit=dev), pure-JS Architecture: all, Depends: nodejs (>= 22.12), /usr/lib/stoke payload with /usr/bin/stoke symlink, copyright + changelog, normalized permissions. Lintian-clean. - scripts/publish-deb.sh: uploads a .deb to the Forgejo Debian registry (owner/distribution/component parameterized, defaults heavy-duty/ stable/main), authenticating with STOKE_TOKEN or the stoke login token. - scripts/install-apt.sh: consumer-side one-time setup — adds the registry key and apt source, then apt-get install stoke. Falls back to a [trusted=yes] source when apt's sqv verifier rejects the forge's registry signature (known upstream Forgejo signing bug; the script prefers the signed source so setups heal once the forge is fixed). - .forgejo/workflows/release.yml: on v* tags — test, build, publish to the heavy-duty registry, attach the .deb to the release page. Needs a runner and a RELEASE_TOKEN secret with org package write. New command: - stoke pr merge (-n, --method merge|rebase|rebase-merge|squash, --title, --message, --delete-branch) — gap found while merging !2. Docs and housekeeping: - README: 'Install with apt' as the primary installation method with manual setup and dpkg fallback, signature caveat, pr merge reference, Packaging and releasing section with a release checklist. - dist/ gitignored; version bumped to 1.2.0. Verified end-to-end on this machine: built the deb (lintian-clean), published it to the Forgejo Debian registry, installed it with apt-get install stoke via install-apt.sh, and confirmed the installed CLI works against the live forge. The test upload was removed from the personal namespace afterwards; publishing under heavy-duty needs an org-member token (401 reqPackageAccess with this restricted account). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
143 lines
6 KiB
JavaScript
143 lines
6 KiB
JavaScript
const { test, afterEach } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
|
|
const { ForgejoClient } = require('../src/api');
|
|
const pkg = require('../package.json');
|
|
|
|
const realFetch = global.fetch;
|
|
|
|
afterEach(() => {
|
|
global.fetch = realFetch;
|
|
});
|
|
|
|
function mockFetch(handler) {
|
|
const calls = [];
|
|
global.fetch = async (url, opts) => {
|
|
calls.push({ url, opts });
|
|
return handler(url, opts, calls.length);
|
|
};
|
|
return calls;
|
|
}
|
|
|
|
function jsonResponse(body, status = 200) {
|
|
return {
|
|
ok: status >= 200 && status < 300,
|
|
status,
|
|
text: async () => JSON.stringify(body),
|
|
};
|
|
}
|
|
|
|
test('fromConfig rejects missing credentials with a stoke-branded hint', () => {
|
|
assert.throws(() => ForgejoClient.fromConfig(null), /stoke auth login/);
|
|
assert.throws(() => ForgejoClient.fromConfig({ url: 'https://x' }), /stoke auth login/);
|
|
});
|
|
|
|
test('trailing slash in base URL is normalized', async () => {
|
|
const calls = mockFetch(() => jsonResponse({ ok: true }));
|
|
const client = new ForgejoClient('https://forge.test/', 'tok');
|
|
await client.get('/user');
|
|
assert.equal(calls[0].url, 'https://forge.test/api/v1/user');
|
|
});
|
|
|
|
test('token auth wins and User-Agent matches the package', async () => {
|
|
const calls = mockFetch(() => jsonResponse({}));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await client.get('/user');
|
|
const headers = calls[0].opts.headers;
|
|
assert.equal(headers.Authorization, 'token tok');
|
|
assert.equal(headers['User-Agent'], `stoke/${pkg.version}`);
|
|
});
|
|
|
|
test('withBasicAuth sends Basic credentials and drops the token', async () => {
|
|
const calls = mockFetch(() => jsonResponse({}));
|
|
const client = new ForgejoClient('https://forge.test', 'tok').withBasicAuth('user', 'pass');
|
|
await client.get('/user');
|
|
const expected = `Basic ${Buffer.from('user:pass').toString('base64')}`;
|
|
assert.equal(calls[0].opts.headers.Authorization, expected);
|
|
});
|
|
|
|
test('deleteToken uses Basic auth (Forgejo rejects token auth on token endpoints)', async () => {
|
|
const calls = mockFetch(() => jsonResponse(null, 204));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await client.deleteToken('user@example.test', 'pass', 'user', 42);
|
|
const { url, opts } = calls[0];
|
|
assert.equal(url, 'https://forge.test/api/v1/users/user/tokens/42');
|
|
assert.equal(opts.method, 'DELETE');
|
|
assert.match(opts.headers.Authorization, /^Basic /);
|
|
});
|
|
|
|
test('API errors carry message, status and body', async () => {
|
|
mockFetch(() => jsonResponse({ message: 'user does not exist', url: 'https://forge.test/api/swagger' }, 404));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await assert.rejects(() => client.get('/users/ghost'), (err) => {
|
|
assert.equal(err.message, 'user does not exist');
|
|
assert.equal(err.status, 404);
|
|
assert.equal(err.body.url, 'https://forge.test/api/swagger');
|
|
return true;
|
|
});
|
|
});
|
|
|
|
test('non-JSON error bodies are surfaced raw', async () => {
|
|
mockFetch(() => ({ ok: false, status: 502, text: async () => 'Bad Gateway' }));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await assert.rejects(() => client.get('/user'), /Bad Gateway/);
|
|
});
|
|
|
|
test('network failures are wrapped with the base URL', async () => {
|
|
global.fetch = async () => { throw new Error('ECONNREFUSED'); };
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await assert.rejects(() => client.get('/user'), /Network error reaching https:\/\/forge\.test/);
|
|
});
|
|
|
|
test('getAll paginates until a short page', async () => {
|
|
const pageOf = (n, count) => Array.from({ length: count }, (_, i) => ({ id: (n - 1) * 50 + i }));
|
|
mockFetch((url) => {
|
|
const page = Number(new URL(url).searchParams.get('page'));
|
|
if (page === 1) return jsonResponse(pageOf(1, 50));
|
|
if (page === 2) return jsonResponse(pageOf(2, 3));
|
|
throw new Error('should not fetch beyond a short page');
|
|
});
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
const all = await client.getAll('/user/repos');
|
|
assert.equal(all.length, 53);
|
|
});
|
|
|
|
test('getAll stops on an empty first page', async () => {
|
|
const calls = mockFetch(() => jsonResponse([]));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
const all = await client.getAll('/user/repos');
|
|
assert.deepEqual(all, []);
|
|
assert.equal(calls.length, 1);
|
|
});
|
|
|
|
test('searchUsers unwraps the {data: []} envelope and paginates', async () => {
|
|
mockFetch((url) => {
|
|
const page = Number(new URL(url).searchParams.get('page'));
|
|
if (page === 1) return jsonResponse({ data: Array.from({ length: 50 }, (_, i) => ({ login: `u${i}` })) });
|
|
return jsonResponse({ data: [{ login: 'last' }] });
|
|
});
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
const users = await client.searchUsers('u');
|
|
assert.equal(users.length, 51);
|
|
assert.equal(users.at(-1).login, 'last');
|
|
});
|
|
|
|
test('mergePullRequest posts the merge payload to the merge endpoint', async () => {
|
|
const calls = mockFetch(() => jsonResponse(null, 200));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await client.mergePullRequest('owner', 'repo', 7, { Do: 'squash', delete_branch_after_merge: true });
|
|
assert.equal(calls[0].url, 'https://forge.test/api/v1/repos/owner/repo/pulls/7/merge');
|
|
assert.equal(calls[0].opts.method, 'POST');
|
|
assert.deepEqual(JSON.parse(calls[0].opts.body), { Do: 'squash', delete_branch_after_merge: true });
|
|
});
|
|
|
|
test('createIssue and createPullRequest hit the expected endpoints', async () => {
|
|
const calls = mockFetch(() => jsonResponse({ number: 1 }));
|
|
const client = new ForgejoClient('https://forge.test', 'tok');
|
|
await client.createIssue('own/er', 'repo', { title: 't' });
|
|
await client.createPullRequest('owner', 're po', { title: 't', head: 'h', base: 'b' });
|
|
assert.equal(calls[0].url, 'https://forge.test/api/v1/repos/own%2Fer/repo/issues');
|
|
assert.equal(calls[1].url, 'https://forge.test/api/v1/repos/owner/re%20po/pulls');
|
|
assert.equal(calls[0].opts.method, 'POST');
|
|
assert.equal(JSON.parse(calls[1].opts.body).head, 'h');
|
|
});
|