mirror of
https://github.com/davidkaya/aryx.git
synced 2026-07-30 00:18:40 +02:00
feat: support project copilot customization
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,244 @@
|
||||
import { describe, expect, mock, test } from 'bun:test';
|
||||
|
||||
import type { RunTurnCommand } from '@shared/contracts/sidecar';
|
||||
import type { PatternDefinition } from '@shared/domain/pattern';
|
||||
import type { ProjectRecord } from '@shared/domain/project';
|
||||
import type { SessionRecord } from '@shared/domain/session';
|
||||
import { createWorkspaceSeed, type WorkspaceState } from '@shared/domain/workspace';
|
||||
|
||||
const TIMESTAMP = '2026-03-28T00:00:00.000Z';
|
||||
|
||||
mock.module('electron', () => {
|
||||
const electronMock = {
|
||||
app: {
|
||||
isPackaged: false,
|
||||
getAppPath: () => 'C:\\workspace\\personal\\repositories\\aryx',
|
||||
getPath: () => 'C:\\workspace\\personal\\repositories\\aryx\\tests\\fixtures',
|
||||
},
|
||||
dialog: {
|
||||
showOpenDialog: async () => ({ canceled: true, filePaths: [] }),
|
||||
},
|
||||
shell: {
|
||||
openPath: async () => '',
|
||||
},
|
||||
};
|
||||
|
||||
return {
|
||||
...electronMock,
|
||||
default: electronMock,
|
||||
};
|
||||
});
|
||||
|
||||
mock.module('keytar', () => ({
|
||||
default: {
|
||||
getPassword: async () => null,
|
||||
setPassword: async () => undefined,
|
||||
deletePassword: async () => false,
|
||||
},
|
||||
}));
|
||||
|
||||
const { AryxAppService } = await import('@main/AryxAppService');
|
||||
|
||||
function createProject(overrides?: Partial<ProjectRecord>): ProjectRecord {
|
||||
return {
|
||||
id: 'project-alpha',
|
||||
name: 'alpha',
|
||||
path: 'C:\\workspace\\alpha',
|
||||
addedAt: TIMESTAMP,
|
||||
...overrides,
|
||||
};
|
||||
}
|
||||
|
||||
function createSession(projectId: string, patternId: string, overrides?: Partial<SessionRecord>): SessionRecord {
|
||||
return {
|
||||
id: 'session-alpha',
|
||||
projectId,
|
||||
patternId,
|
||||
title: 'Alpha session',
|
||||
createdAt: TIMESTAMP,
|
||||
updatedAt: TIMESTAMP,
|
||||
status: 'idle',
|
||||
messages: [],
|
||||
runs: [],
|
||||
...overrides,
|
||||
};
|
||||
}
|
||||
|
||||
function createService(
|
||||
workspace: WorkspaceState,
|
||||
pattern: PatternDefinition,
|
||||
options?: {
|
||||
captureRunTurn?: (command: RunTurnCommand) => void;
|
||||
},
|
||||
): InstanceType<typeof AryxAppService> {
|
||||
const service = new AryxAppService();
|
||||
const internals = service as unknown as Record<string, unknown>;
|
||||
internals.loadWorkspace = async () => workspace;
|
||||
internals.persistAndBroadcast = async (nextWorkspace: WorkspaceState) => nextWorkspace;
|
||||
internals.buildEffectivePattern = async () => pattern;
|
||||
internals.awaitFinalResponseApproval = async () => undefined;
|
||||
internals.finalizeTurn = () => undefined;
|
||||
internals.emitSessionEvent = () => undefined;
|
||||
internals.pruneUnavailableApprovalTools = async () => false;
|
||||
internals.pruneUnavailableSessionToolingSelections = () => false;
|
||||
(
|
||||
service as unknown as {
|
||||
sidecar: {
|
||||
runTurn: (command: RunTurnCommand) => Promise<[]>;
|
||||
resolveApproval: () => Promise<void>;
|
||||
};
|
||||
}
|
||||
).sidecar = {
|
||||
runTurn: async (command) => {
|
||||
options?.captureRunTurn?.(command);
|
||||
return [];
|
||||
},
|
||||
resolveApproval: async () => undefined,
|
||||
};
|
||||
|
||||
return service;
|
||||
}
|
||||
|
||||
describe('AryxAppService project customization', () => {
|
||||
test('sendSessionMessage injects project instructions and enabled project agent profiles', async () => {
|
||||
const workspace = createWorkspaceSeed();
|
||||
const basePattern = workspace.patterns.find((candidate) => candidate.mode === 'single');
|
||||
if (!basePattern) {
|
||||
throw new Error('Expected a single-agent pattern in the workspace seed.');
|
||||
}
|
||||
|
||||
const pattern: PatternDefinition = {
|
||||
...basePattern,
|
||||
agents: [
|
||||
{
|
||||
...basePattern.agents[0]!,
|
||||
copilot: {
|
||||
customAgents: [
|
||||
{
|
||||
name: 'reviewer',
|
||||
prompt: 'Built-in reviewer prompt.',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
const project = createProject({
|
||||
customization: {
|
||||
instructions: [
|
||||
{
|
||||
id: 'instruction-repo',
|
||||
sourcePath: '.github\\copilot-instructions.md',
|
||||
content: 'Use TypeScript.',
|
||||
},
|
||||
{
|
||||
id: 'instruction-agents',
|
||||
sourcePath: 'AGENTS.md',
|
||||
content: 'Prefer focused tests.',
|
||||
},
|
||||
],
|
||||
agentProfiles: [
|
||||
{
|
||||
id: 'agent-reviewer',
|
||||
name: 'reviewer',
|
||||
prompt: 'Project reviewer prompt.',
|
||||
sourcePath: '.github\\agents\\reviewer.agent.md',
|
||||
enabled: true,
|
||||
},
|
||||
{
|
||||
id: 'agent-readme',
|
||||
name: 'readme-specialist',
|
||||
description: 'Documentation specialist',
|
||||
tools: ['read', 'edit'],
|
||||
prompt: 'Focus on README improvements.',
|
||||
sourcePath: '.github\\agents\\readme-specialist.agent.md',
|
||||
enabled: true,
|
||||
},
|
||||
{
|
||||
id: 'agent-disabled',
|
||||
name: 'disabled-specialist',
|
||||
prompt: 'Should never be injected.',
|
||||
sourcePath: '.github\\agents\\disabled-specialist.agent.md',
|
||||
enabled: false,
|
||||
},
|
||||
],
|
||||
promptFiles: [],
|
||||
lastScannedAt: TIMESTAMP,
|
||||
},
|
||||
});
|
||||
const session = createSession(project.id, pattern.id);
|
||||
|
||||
workspace.projects = [project];
|
||||
workspace.sessions = [session];
|
||||
workspace.selectedProjectId = project.id;
|
||||
workspace.selectedPatternId = pattern.id;
|
||||
workspace.selectedSessionId = session.id;
|
||||
|
||||
let command: RunTurnCommand | undefined;
|
||||
const service = createService(workspace, pattern, {
|
||||
captureRunTurn: (capturedCommand) => {
|
||||
command = capturedCommand;
|
||||
},
|
||||
});
|
||||
|
||||
await service.sendSessionMessage(session.id, 'Use the repository guidance.');
|
||||
|
||||
expect(command?.projectInstructions).toBe('Use TypeScript.\n\nPrefer focused tests.');
|
||||
expect(command?.pattern.agents[0]?.copilot?.customAgents).toEqual([
|
||||
{
|
||||
name: 'reviewer',
|
||||
prompt: 'Built-in reviewer prompt.',
|
||||
},
|
||||
{
|
||||
name: 'readme-specialist',
|
||||
description: 'Documentation specialist',
|
||||
tools: ['read', 'edit'],
|
||||
prompt: 'Focus on README improvements.',
|
||||
infer: undefined,
|
||||
},
|
||||
]);
|
||||
});
|
||||
|
||||
test('setProjectAgentProfileEnabled persists the updated enabled state', async () => {
|
||||
const workspace = createWorkspaceSeed();
|
||||
const pattern = workspace.patterns.find((candidate) => candidate.mode === 'single');
|
||||
if (!pattern) {
|
||||
throw new Error('Expected a single-agent pattern in the workspace seed.');
|
||||
}
|
||||
|
||||
const project = createProject({
|
||||
customization: {
|
||||
instructions: [],
|
||||
agentProfiles: [
|
||||
{
|
||||
id: 'agent-readme',
|
||||
name: 'readme-specialist',
|
||||
prompt: 'Focus on docs.',
|
||||
sourcePath: '.github\\agents\\readme-specialist.agent.md',
|
||||
enabled: true,
|
||||
},
|
||||
],
|
||||
promptFiles: [],
|
||||
lastScannedAt: TIMESTAMP,
|
||||
},
|
||||
});
|
||||
const session = createSession(project.id, pattern.id);
|
||||
|
||||
workspace.projects = [project];
|
||||
workspace.sessions = [session];
|
||||
|
||||
const service = createService(workspace, pattern);
|
||||
const updated = await service.setProjectAgentProfileEnabled(project.id, 'agent-readme', false);
|
||||
|
||||
expect(updated.projects[0]?.customization?.agentProfiles).toEqual([
|
||||
{
|
||||
id: 'agent-readme',
|
||||
name: 'readme-specialist',
|
||||
prompt: 'Focus on docs.',
|
||||
sourcePath: '.github\\agents\\readme-specialist.agent.md',
|
||||
enabled: false,
|
||||
},
|
||||
]);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user