Files
openchamber/packages/ui/src/lib/linkedIssues.test.ts
T
Bohdan Triapitsyn f4743ea060 feat(chat): work-status panel, and MCP auth and settings fixes (#2776)
Adds a work-status panel beside the transcript. Context fill, model and
cost, todos, running subagents and the permission requests blocking
them, branch and working-tree state, MCP servers, pinned messages and
context sources were scattered across the header, the composer and the
context panel — a blocked subagent was reported nowhere at all. The
panel reads them from live channels rather than persisted history, and
becomes an overlay where the chat is too narrow to seat a column.

It is on by default, including for existing installs. Because it now
carries these readouts, the desktop header and composer drop the ones it
duplicates: todo and changed-files chips, usage and MCP tabs. VS Code
and mobile keep theirs — neither hosts the panel.

Fixes MCP authorization, which was broken from the panel, invalidated by
a directory switch through a redirect URI that encoded the working
directory, and left the desktop app in the background because browsers
will not follow a custom-protocol link without a user gesture. The
settings page no longer asks the user to understand the MCP spec before
adding a server: one field takes the command or the link, with the kind
inferred and a visible override, and client-registration fields appear
only when a server actually asks for its own credentials.

Also: skills load from the panel instead of only when the composer's
slash autocomplete opens; the header button names the current instance
rather than falling through to the word "Instance" for relay hosts.

Three new optional UI settings keys, all migrated. No change to stored
MCP server configuration.
2026-08-09 19:30:25 +03:00

146 lines
4.9 KiB
TypeScript

import { describe, expect, test } from 'bun:test';
import type { Session } from '@opencode-ai/sdk/v2';
import { buildLinkedIssue, buildLinkedIssueId, getLinkedIssues, withLinkedIssue, type LinkedIssue } from './linkedIssues';
const issue = (overrides: Partial<LinkedIssue> = {}): LinkedIssue => ({
id: 'owner/repo#12',
number: 12,
title: 'Rail badge count',
url: 'https://github.com/owner/repo/issues/12',
kind: 'issue',
author: 'someone',
linkedAt: 1,
...overrides,
});
const sessionWith = (linked: unknown): Session =>
({ metadata: { openchamber: { linked_issues: linked } } } as unknown as Session);
describe('buildLinkedIssueId', () => {
test('is stable per repository and number', () => {
expect(buildLinkedIssueId('owner', 'repo', 12)).toBe('owner/repo#12');
});
});
describe('buildLinkedIssue', () => {
test('derives the id from the thread url', () => {
const built = buildLinkedIssue({
url: 'https://github.com/owner/repo/issues/12',
number: 12,
title: 'Rail badge count',
kind: 'issue',
author: { login: 'someone', avatarUrl: 'https://avatars/1' },
linkedAt: 5,
});
expect(built.id).toBe('owner/repo#12');
expect(built.author).toBe('someone');
expect(built.authorAvatarUrl).toBe('https://avatars/1');
});
test('gives a pull request the same id shape as an issue', () => {
// Both live in one numbering space per repository, so one id shape keeps
// them from colliding or duplicating.
const built = buildLinkedIssue({
url: 'https://github.com/owner/repo/pull/7',
number: 7,
title: 'Fix',
kind: 'pull',
linkedAt: 5,
});
expect(built.id).toBe('owner/repo#7');
expect(built.kind).toBe('pull');
});
test('falls back to a url-based id for an unparseable url', () => {
const built = buildLinkedIssue({
url: 'https://ghe.internal/x',
number: 3,
title: 'Internal',
kind: 'issue',
linkedAt: 5,
});
expect(built.id).toBe('https://ghe.internal/x#3');
});
test('omits author fields when the flow has none', () => {
const built = buildLinkedIssue({
url: 'https://github.com/owner/repo/issues/1',
number: 1,
title: 'No author',
kind: 'issue',
author: null,
linkedAt: 5,
});
expect(built.author).toBe(undefined);
expect(built.authorAvatarUrl).toBe(undefined);
});
});
describe('getLinkedIssues', () => {
test('returns an empty list for a session with no metadata', () => {
expect(getLinkedIssues(undefined)).toEqual([]);
expect(getLinkedIssues({} as Session)).toEqual([]);
expect(getLinkedIssues(sessionWith(undefined))).toEqual([]);
});
test('drops malformed entries instead of rendering them', () => {
const good = issue();
const session = sessionWith([
good,
{ id: 'no-number' },
{ ...good, id: 'owner/repo#13', kind: 'discussion' },
null,
'string',
]);
expect(getLinkedIssues(session)).toEqual([good]);
});
test('survives a non-array payload', () => {
expect(getLinkedIssues(sessionWith({ nope: true }))).toEqual([]);
});
});
describe('withLinkedIssue', () => {
test('adds a link and preserves unrelated metadata', () => {
const next = withLinkedIssue(
{ openchamber: { kind: 'review' }, other: 1 },
issue(),
true,
);
expect(next.other).toBe(1);
expect((next.openchamber as Record<string, unknown>).kind).toBe('review');
expect((next.openchamber as { linked_issues: LinkedIssue[] }).linked_issues).toEqual([issue()]);
});
test('re-linking replaces the entry rather than duplicating it', () => {
// Linking again is how a drifted title gets refreshed.
const first = withLinkedIssue({}, issue({ title: 'Old' }), true);
const second = withLinkedIssue(first, issue({ title: 'New' }), true);
const stored = (second.openchamber as { linked_issues: LinkedIssue[] }).linked_issues;
expect(stored).toHaveLength(1);
expect(stored[0].title).toBe('New');
});
test('unlinking removes only the matching id', () => {
const other = issue({ id: 'owner/repo#99', number: 99 });
const both = withLinkedIssue(withLinkedIssue({}, issue(), true), other, true);
const next = withLinkedIssue(both, issue(), false);
const stored = (next.openchamber as { linked_issues: LinkedIssue[] }).linked_issues;
expect(stored).toEqual([other]);
});
test('unlinking something absent is a no-op, not an error', () => {
const next = withLinkedIssue({}, issue(), false);
expect((next.openchamber as { linked_issues: LinkedIssue[] }).linked_issues).toEqual([]);
});
test('does not carry malformed stored entries forward', () => {
const next = withLinkedIssue(
{ openchamber: { linked_issues: [{ id: 'broken' }] } },
issue(),
true,
);
expect((next.openchamber as { linked_issues: LinkedIssue[] }).linked_issues).toEqual([issue()]);
});
});