Files
ccs/tests/unit/delegation/delegation-handler.test.ts
T

415 lines
14 KiB
TypeScript

/**
* Tests for delegation-handler CLI flag passthrough feature
* Covers: parseStringFlag, timeout validation, max-turns validation, agents JSON validation
*/
import { describe, it, expect, beforeEach, afterEach, spyOn } from 'bun:test';
// Import the DelegationHandler class
import { DelegationHandler } from '../../../src/delegation/delegation-handler';
describe('DelegationHandler', () => {
let handler: DelegationHandler;
let consoleErrorSpy: ReturnType<typeof spyOn>;
beforeEach(() => {
handler = new DelegationHandler();
consoleErrorSpy = spyOn(console, 'error').mockImplementation(() => {});
});
afterEach(() => {
consoleErrorSpy.mockRestore();
});
describe('_extractOptions - timeout validation', () => {
it('accepts valid positive timeout', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout', '30000']);
expect(options.timeout).toBe(30000);
});
it('rejects NaN timeout with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout', 'abc']);
expect(options.timeout).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects negative timeout with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout', '-5000']);
expect(options.timeout).toBeUndefined();
expect(options.extraArgs).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects zero timeout with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout', '0']);
expect(options.timeout).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects timeout exceeding max (600000ms) with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout', '700000']);
expect(options.timeout).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('ignores missing timeout value at end of args', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--timeout']);
expect(options.timeout).toBeUndefined();
});
it('does not drop following native flags when timeout value is missing', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--timeout',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.timeout).toBeUndefined();
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
});
});
describe('_extractOptions - max-turns validation', () => {
it('accepts valid positive max-turns', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', '10']);
expect(options.maxTurns).toBe(10);
});
it('rejects NaN max-turns with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', 'abc']);
expect(options.maxTurns).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects negative max-turns with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', '-5']);
expect(options.maxTurns).toBeUndefined();
expect(options.extraArgs).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects zero max-turns with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', '0']);
expect(options.maxTurns).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('caps max-turns at 100 when exceeding limit', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', '500']);
expect(options.maxTurns).toBe(100);
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('accepts max-turns at exactly 100', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns', '100']);
expect(options.maxTurns).toBe(100);
});
it('accepts inline max-turns syntax', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns=7']);
expect(options.maxTurns).toBe(7);
expect(options.extraArgs).toBeUndefined();
});
it('treats empty inline max-turns as missing', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--max-turns=']);
expect(options.maxTurns).toBeUndefined();
expect(options.extraArgs).toBeUndefined();
});
});
describe('_extractOptions - fallback-model validation', () => {
it('accepts valid fallback-model', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--fallback-model', 'sonnet']);
expect(options.fallbackModel).toBe('sonnet');
});
it('accepts inline fallback-model syntax', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--fallback-model=sonnet']);
expect(options.fallbackModel).toBe('sonnet');
expect(options.extraArgs).toBeUndefined();
});
it('treats empty inline fallback-model as missing', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--fallback-model=']);
expect(options.fallbackModel).toBeUndefined();
expect(options.extraArgs).toBeUndefined();
});
it('rejects dash-prefixed value with warning', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--fallback-model',
'--other-flag',
]);
expect(options.fallbackModel).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('does not forward rejected dash-prefixed fallback-model values', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--fallback-model',
'-sonnet',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.fallbackModel).toBeUndefined();
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects empty string value', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--fallback-model', '']);
expect(options.fallbackModel).toBeUndefined();
});
it('rejects whitespace-only value', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--fallback-model', ' ']);
expect(options.fallbackModel).toBeUndefined();
});
});
describe('_extractOptions - permission-mode parsing', () => {
it('accepts inline permission-mode syntax', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--permission-mode=plan']);
expect(options.permissionMode).toBe('plan');
expect(options.extraArgs).toBeUndefined();
});
it('treats empty inline permission-mode as missing', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--permission-mode=']);
expect(options.permissionMode).toBe('acceptEdits');
expect(options.extraArgs).toBeUndefined();
});
it('does not drop following native flags when permission-mode value is missing', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--permission-mode',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.permissionMode).not.toBe('--channels');
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
});
it('does not forward rejected dash-prefixed permission-mode values', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--permission-mode',
'-invalid',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.permissionMode).toBe('acceptEdits');
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(consoleErrorSpy).toHaveBeenCalled();
});
});
describe('_extractOptions - agents JSON validation', () => {
it('accepts valid JSON for agents', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--agents', '{"name":"test"}']);
expect(options.agents).toBe('{"name":"test"}');
});
it('rejects invalid JSON with warning', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--agents', '{invalid json}']);
expect(options.agents).toBeUndefined();
expect(consoleErrorSpy).toHaveBeenCalled();
});
it('rejects dash-prefixed value', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--agents', '--other']);
expect(options.agents).toBeUndefined();
});
it('accepts JSON array for agents', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--agents', '[{"a":1}]']);
expect(options.agents).toBe('[{"a":1}]');
});
});
describe('_extractOptions - betas validation', () => {
it('accepts valid betas value', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--betas',
'feature1,feature2',
]);
expect(options.betas).toBe('feature1,feature2');
});
it('rejects dash-prefixed value', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--betas', '--feature']);
expect(options.betas).toBeUndefined();
});
});
describe('_extractOptions - extraArgs passthrough', () => {
it('passes unknown flags through to extraArgs', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--unknown-flag', 'value']);
expect(options.extraArgs).toContain('--unknown-flag');
expect(options.extraArgs).toContain('value');
});
it('excludes CCS-handled flags from extraArgs', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--max-turns',
'10',
'--unknown',
'val',
]);
expect(options.extraArgs).not.toContain('--max-turns');
expect(options.extraArgs).not.toContain('10');
expect(options.extraArgs).toContain('--unknown');
});
it('passes Claude effort override through to extraArgs', () => {
const options = handler._extractOptions(['glm', '--effort', 'low', '-p', 'test']);
expect(options.extraArgs).toEqual(['--effort', 'low']);
});
it('passes Claude channels through to extraArgs', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
});
it('preserves variadic native flag values without a Claude flag allowlist', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--future-native',
'alpha',
'beta',
'--another-native',
'gamma',
]);
expect(options.extraArgs).toEqual([
'--future-native',
'alpha',
'beta',
'--another-native',
'gamma',
]);
});
it('keeps native flag values that match the profile name', () => {
const options = handler._extractOptions(['glm', '-p', 'test', '--channels', 'glm']);
expect(options.extraArgs).toEqual(['--channels', 'glm']);
});
it('does not drop following native flags when a CCS flag value is missing', () => {
const options = handler._extractOptions([
'glm',
'-p',
'test',
'--fallback-model',
'--channels',
'plugin:telegram@claude-plugins-official',
]);
expect(options.fallbackModel).toBeUndefined();
expect(options.extraArgs).toEqual([
'--channels',
'plugin:telegram@claude-plugins-official',
]);
});
it('keeps later CCS prompt flags from leaking when a prior CCS value is invalid', () => {
const options = handler._extractOptions(['glm', '--fallback-model', '-p', 'test']);
expect(options.fallbackModel).toBeUndefined();
expect(options.extraArgs).toBeUndefined();
});
});
describe('_extractProfile', () => {
it('extracts profile name from first non-flag arg', () => {
const profile = handler._extractProfile(['glm', '-p', 'test']);
expect(profile).toBe('glm');
});
it('returns empty string when no profile found', () => {
const profile = handler._extractProfile(['-p', 'test']);
expect(profile).toBe('');
});
it('skips inline prompt before profile names', () => {
const profile = handler._extractProfile(['--prompt=test', 'glm']);
expect(profile).toBe('glm');
});
it('skips flag values correctly', () => {
const profile = handler._extractProfile(['-p', 'test', 'kimi']);
expect(profile).toBe('kimi');
});
it('skips effort flag values before profile names', () => {
const profile = handler._extractProfile(['--effort', 'low', 'glm', '-p', 'test']);
expect(profile).toBe('glm');
});
it('keeps leading profile names before effort flags', () => {
const profile = handler._extractProfile(['glm', '--effort', 'low', '-p', 'test']);
expect(profile).toBe('glm');
});
});
describe('_extractPrompt', () => {
it('accepts inline prompt syntax', () => {
const prompt = handler._extractPrompt(['glm', '--prompt=test']);
expect(prompt).toBe('test');
});
it('rejects empty inline prompt syntax', () => {
const exitSpy = spyOn(process, 'exit').mockImplementation(((code?: number) => {
throw new Error(`process.exit(${code})`);
}) as typeof process.exit);
try {
expect(() => handler._extractPrompt(['glm', '--prompt='])).toThrow('process.exit(1)');
expect(exitSpy).toHaveBeenCalledWith(1);
} finally {
exitSpy.mockRestore();
}
});
});
});