fix(opencode): name the release when upgrading OpenCode

Since opencode 1.18.x, `POST /global/upgrade` requires a `target` semver in
the body. OpenChamber sent an empty object, so every "Update OpenCode" click
came back 400. The rejection arrives as `{name, data:{message}}`, which has
no `error` field, so the user was left with the bare status text: "Bad
Request".

Resolve the target from the latest release — the same lookup the upgrade
prompt already uses to decide there is anything to offer — and fail with an
explicit code when it cannot be resolved, rather than sending a body opencode
is guaranteed to reject. Read the upstream rejection message so a refused
upgrade explains itself.

The VS Code extension carries its own copy of this flow and had the same two
defects; both are fixed there.

fixes #3121
This commit is contained in:
Iuliia Ivashko
2026-08-28 18:48:27 +03:00
parent 6950e113f4
commit 20cda28cac
6 changed files with 242 additions and 22 deletions
@@ -75,16 +75,72 @@ describe('VS Code OpenCode upgrades', () => {
assert.equal((request?.headers as Record<string, string>).Authorization, 'Basic test');
});
test('names the latest release when the caller sends no target', async () => {
const { manager } = createManager();
let upgradeBody: unknown;
// SAFETY: the stub answers the only two call shapes this test exercises —
// a URL string and an init bag — which is all `fetch` is used with here.
globalThis.fetch = (async (input: Parameters<typeof fetch>[0], init?: RequestInit) => {
const url = String(input);
if (url.includes('registry.npmjs.org')) return new Response(JSON.stringify({ version: '1.18.23' }));
if (url.includes('api.github.com')) return new Response(JSON.stringify({ tag_name: 'v1.18.23' }));
upgradeBody = JSON.parse(String(init?.body));
return new Response(JSON.stringify({ success: true, version: '1.18.23' }));
}) as typeof fetch;
assert.equal((await upgradeManagedOpenCode(manager)).status, 200);
assert.deepEqual(upgradeBody, { target: '1.18.23' });
});
test('fails without calling the updater when the latest release cannot be resolved', async () => {
const { manager, getRestartCount } = createManager();
// SAFETY: the stub answers the only call shape this test exercises — a URL
// string — and fails loudly if the updater is reached at all.
globalThis.fetch = (async (input: Parameters<typeof fetch>[0]) => {
if (String(input).endsWith('/global/upgrade')) throw new Error('the updater must not be called without a target');
return new Response('nope', { status: 503 });
}) as typeof fetch;
const result = await upgradeManagedOpenCode(manager);
assert.equal(result.status, 502);
assert.equal(result.body.code, 'OPENCODE_UPGRADE_TARGET_UNRESOLVED');
assert.equal(getRestartCount(), 0);
});
test('surfaces the rejection OpenCode reported instead of the bare HTTP status', async () => {
const { manager } = createManager();
// SAFETY: the stub ignores its arguments and answers every call with the
// rejection shape under test, so no call signature is misrepresented.
globalThis.fetch = (async () => new Response(
JSON.stringify({ name: 'BadRequest', data: { message: 'Expected a semantic version', kind: 'Payload' } }),
{ status: 400 },
)) as typeof fetch;
assert.deepEqual(await upgradeManagedOpenCode(manager, '1.18.9'), {
status: 400,
body: { success: false, error: 'Expected a semantic version' },
});
});
test('serializes concurrent managed upgrades', async () => {
const { manager } = createManager();
let release: (response: Response) => void = () => {};
globalThis.fetch = (() => new Promise<Response>((resolve) => { release = resolve; })) as typeof fetch;
let upgradeCalled: () => void = () => {};
const upgradeReached = new Promise<void>((resolve) => { upgradeCalled = resolve; });
globalThis.fetch = ((input: Parameters<typeof fetch>[0]) => {
if (!String(input).endsWith('/global/upgrade')) {
return Promise.resolve(new Response(JSON.stringify({ version: '1.18.9' })));
}
upgradeCalled();
return new Promise<Response>((resolve) => { release = resolve; });
}) as typeof fetch;
const first = upgradeManagedOpenCode(manager);
const second = await upgradeManagedOpenCode(manager);
assert.equal(second.status, 409);
assert.equal(second.body.code, 'OPENCODE_UPGRADE_IN_PROGRESS');
await upgradeReached;
release(new Response(JSON.stringify({ success: true })));
assert.equal((await first).status, 200);
});