test / unit + widget + golden + a11y (push) Failing after 31s
test / integration_test (xvfb) (push) Has been skipped
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
test / dart doc (lib API) (push) Failing after 1m1s
Extends the four existing daemon command suites with the verbs + error paths the originals didn't reach: - editor_commands_test (12 new): unreadable-path FileSystemException catch, editor.active with no buffer, editor.activate requires + validates id, editor.read no-active / unknown-id, editor.set-selection no-active / clamped, editor.set-content with + without selection, editor.save no-active, editor.close requires + validates id. - files_commands_test (8 new): files.read happy + missing-path + empty-path + outside-root + missing-file, files.ls outside-root, files.watch idempotent, FilesService.atCwd resolver. - pane_commands_test (10 new): argv-non-string rejection, unknown kind rejection, env passthrough, close / write / focus / resize missing-id and unknown-id validations, write requires bytes_b64 or text, malformed base64 rejection. - pql_commands_test (14 new): pql.files glob + limit, pql.backlinks happy, pql.outlinks missing, pql.tags, pql.query + pql.search happy paths + missing-arg user_error, pql.decisions.read missing + happy, pql.decisions.show with --with-refs / --with-tickets, pql.decisions.list domain filter, pql.tickets.list multi-filter, pql.tickets.show missing + happy, pql.tickets.status missing + partial-args, pql.tickets.board with team. Coverage: src/daemon/editor_commands.dart 64/100 -> 88/100; files_commands.dart 33/70 -> 64/70 (91%); pane_commands.dart 66/92 -> 78/92 (85%); pql_commands.dart 62/149 -> 105/149 (70% — remaining 44 lines are the per-command PqlException catch branches that only fire when the pql subprocess itself fails mid-call). Total coverage 77.92% -> 79.26%; floor bumped to 79. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
197 lines
6.4 KiB
Dart
197 lines
6.4 KiB
Dart
/// Tests for the `pane.*` command handlers.
|
|
///
|
|
/// Drives the real registry through the dispatcher — that's the
|
|
/// integration surface the CLI + Flutter app both hit. Registry-level
|
|
/// behaviour is covered more fully in `test/panes/registry_test.dart`.
|
|
library;
|
|
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:clide/clide.dart';
|
|
import 'package:clide/src/daemon/pane_commands.dart';
|
|
import 'package:clide/src/panes/registry.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
if (!Platform.isLinux && !Platform.isMacOS) return;
|
|
|
|
group('pane.* dispatch', () {
|
|
late DaemonDispatcher dispatcher;
|
|
late PaneRegistry registry;
|
|
|
|
setUp(() {
|
|
final sink = RecordingEventSink();
|
|
registry = PaneRegistry(events: sink);
|
|
dispatcher = DaemonDispatcher();
|
|
registerPaneCommands(dispatcher, registry);
|
|
});
|
|
|
|
tearDown(() => registry.shutdown());
|
|
|
|
Future<IpcResponse> call(String cmd, Map<String, Object?> args) {
|
|
return dispatcher.dispatch(IpcRequest(id: '1', cmd: cmd, args: args));
|
|
}
|
|
|
|
test('pane.spawn requires argv', () async {
|
|
final r = await call('pane.spawn', const {});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.kind, 'user_error');
|
|
expect(r.error!.message, contains('argv'));
|
|
});
|
|
|
|
test('pane.spawn returns pane metadata', () async {
|
|
final r = await call('pane.spawn', {
|
|
'argv': const ['/bin/sh', '-c', 'sleep 0.1'],
|
|
'kind': 'terminal',
|
|
});
|
|
expect(r.ok, isTrue, reason: r.error?.message);
|
|
expect(r.data['id'], startsWith('p_'));
|
|
expect(r.data['kind'], 'terminal');
|
|
});
|
|
|
|
test('pane.list shows spawned panes', () async {
|
|
await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
});
|
|
await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
'kind': 'claude',
|
|
});
|
|
final r = await call('pane.list', const {});
|
|
final panes = (r.data['panes'] as List).cast<Map>();
|
|
expect(panes, hasLength(2));
|
|
expect(panes.map((p) => p['kind']), containsAll(['terminal', 'claude']));
|
|
});
|
|
|
|
test('pane.write accepts text or bytes_b64', () async {
|
|
final spawn = await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
});
|
|
final id = spawn.data['id']! as String;
|
|
|
|
final viaText = await call('pane.write', {'id': id, 'text': 'abc'});
|
|
expect(viaText.ok, isTrue);
|
|
expect(viaText.data['written'], greaterThan(0));
|
|
|
|
final viaBase64 = await call('pane.write', {
|
|
'id': id,
|
|
'bytes_b64': base64Encode(utf8.encode('def')),
|
|
});
|
|
expect(viaBase64.ok, isTrue);
|
|
});
|
|
|
|
test('pane.write on unknown id → not-found', () async {
|
|
final r = await call('pane.write', {'id': 'p_404', 'text': 'x'});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.code, IpcExitCode.notFound);
|
|
});
|
|
|
|
test('pane.resize + pane.close + pane.focus round-trip', () async {
|
|
final spawn = await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
});
|
|
final id = spawn.data['id']! as String;
|
|
|
|
final r1 = await call('pane.resize', {'id': id, 'cols': 100, 'rows': 30});
|
|
expect(r1.ok, isTrue);
|
|
|
|
final r2 = await call('pane.focus', {'id': id});
|
|
expect(r2.ok, isTrue);
|
|
|
|
final r3 = await call('pane.close', {'id': id});
|
|
expect(r3.ok, isTrue);
|
|
|
|
final list = await call('pane.list', const {});
|
|
expect((list.data['panes'] as List), isEmpty);
|
|
});
|
|
|
|
test('pane.tail ack is a no-op', () async {
|
|
final r = await call('pane.tail', const {});
|
|
expect(r.ok, isTrue);
|
|
expect(r.data['subscribed'], isTrue);
|
|
});
|
|
|
|
test('pane.spawn rejects non-string argv entries', () async {
|
|
final r = await call('pane.spawn', const {
|
|
'argv': ['/bin/sh', 42]
|
|
});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.message, contains('strings'));
|
|
});
|
|
|
|
test('pane.spawn rejects an unknown kind', () async {
|
|
final r = await call('pane.spawn', const {
|
|
'argv': ['/bin/cat'],
|
|
'kind': 'no-such-kind',
|
|
});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.kind, 'user_error');
|
|
});
|
|
|
|
test('pane.spawn passes env through as strings', () async {
|
|
final r = await call('pane.spawn', {
|
|
'argv': const ['/bin/sh', '-c', 'env'],
|
|
'env': const {'FOO': 'bar'},
|
|
});
|
|
expect(r.ok, isTrue, reason: r.error?.message);
|
|
});
|
|
|
|
test('pane.close requires id and validates it', () async {
|
|
final missing = await call('pane.close', const {});
|
|
expect(missing.ok, isFalse);
|
|
expect(missing.error!.kind, 'user_error');
|
|
final unknown = await call('pane.close', const {'id': 'p_404'});
|
|
expect(unknown.ok, isFalse);
|
|
expect(unknown.error!.kind, 'not_found');
|
|
});
|
|
|
|
test('pane.write requires id and validates it', () async {
|
|
final missing = await call('pane.write', const {'text': 'x'});
|
|
expect(missing.ok, isFalse);
|
|
expect(missing.error!.kind, 'user_error');
|
|
});
|
|
|
|
test('pane.write requires bytes_b64 or text', () async {
|
|
final spawn = await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
});
|
|
final id = spawn.data['id']! as String;
|
|
final r = await call('pane.write', {'id': id});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.message, contains('bytes_b64 or text'));
|
|
});
|
|
|
|
test('pane.write rejects malformed base64', () async {
|
|
final spawn = await call('pane.spawn', {
|
|
'argv': const ['/bin/cat'],
|
|
});
|
|
final id = spawn.data['id']! as String;
|
|
final r = await call('pane.write', {'id': id, 'bytes_b64': 'not-base64!!!'});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.message, contains('base64'));
|
|
});
|
|
|
|
test('pane.resize requires all three of id / cols / rows', () async {
|
|
final r = await call('pane.resize', const {'id': 'p_1'});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.kind, 'user_error');
|
|
});
|
|
|
|
test('pane.resize on unknown id is not-found', () async {
|
|
final r = await call('pane.resize', const {'id': 'p_404', 'cols': 80, 'rows': 24});
|
|
expect(r.ok, isFalse);
|
|
expect(r.error!.code, IpcExitCode.notFound);
|
|
});
|
|
|
|
test('pane.focus requires id and validates it', () async {
|
|
final missing = await call('pane.focus', const {});
|
|
expect(missing.ok, isFalse);
|
|
expect(missing.error!.kind, 'user_error');
|
|
final unknown = await call('pane.focus', const {'id': 'p_404'});
|
|
expect(unknown.ok, isFalse);
|
|
expect(unknown.error!.kind, 'not_found');
|
|
});
|
|
});
|
|
}
|