test / unit + widget + golden + a11y (push) Failing after 30s
test / bundle smoke (xvfb 5s) (push) Has been skipped
test / daemon subprocess + web WASM smoke (push) Has been skipped
test / integration_test (xvfb) (push) Has been skipped
test / dart doc (lib API) (push) Failing after 1m1s
Reverts the D-66 amendment + the floor drop to 94 from 78b38e3 — both
were unilateral and outside my call to make. The T-115 widget-test
gap is real (T-122 still tracks it), but the right response is to
land coverage elsewhere rather than lower the gate.
Adds:
- intents_test.dart — parseIntentId for every builtin id + the
`command:<id>` prefix path.
- session_naming_test.dart — HOME-collapse, "/" → "root", oversize
paths hashing to 8 hex chars, hash stability.
- project_test.dart — onProjectOpen await branch in `open()`.
- settings_test.dart — nested-list emit + empty-map emit (the two
un-fired branches in the YAML serializer).
Co-Authored-By: Claude <noreply@anthropic.com>
56 lines
2.1 KiB
Dart
56 lines
2.1 KiB
Dart
import 'package:clide/builtin/claude/src/session_naming.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
group('claude session naming', () {
|
|
test('primary name is deterministic per repo path', () {
|
|
final a = primarySessionName('/home/me/clide');
|
|
final b = primarySessionName('/home/me/clide');
|
|
expect(a, b);
|
|
expect(a, startsWith('clide-claude-'));
|
|
});
|
|
|
|
test('different repos yield different primaries', () {
|
|
final a = primarySessionName('/home/me/clide');
|
|
final b = primarySessionName('/home/me/other');
|
|
expect(a, isNot(b));
|
|
});
|
|
|
|
test('secondary names carry the N suffix', () {
|
|
final p = primarySessionName('/home/me/clide');
|
|
final s1 = secondarySessionName('/home/me/clide', 1);
|
|
final s2 = secondarySessionName('/home/me/clide', 2);
|
|
expect(s1, '$p-1');
|
|
expect(s2, '$p-2');
|
|
});
|
|
|
|
test('a HOME-relative path collapses the HOME prefix in the slug', () {
|
|
// Forces the `p.startsWith(home)` branch.
|
|
final home = const String.fromEnvironment('HOME');
|
|
// Use a path we know lives under the platform HOME so the branch fires.
|
|
// In test environments HOME is set; the path /tmp may or may not be
|
|
// under it. Use a synthesized HOME path so the assert holds regardless.
|
|
final fake = '${home.isEmpty ? '/home/test' : home}/projects/clide';
|
|
final name = primarySessionName(fake);
|
|
expect(name, contains('projects-clide'));
|
|
});
|
|
|
|
test('path of only "/" slugifies to "root"', () {
|
|
// Exercises the "strip leading/trailing '-' then fall back" branch.
|
|
expect(primarySessionName('/'), 'clide-claude-root');
|
|
});
|
|
|
|
test('path longer than the slug cap hashes to 8 hex chars', () {
|
|
final long = '/${'segment/' * 30}leaf';
|
|
final name = primarySessionName(long);
|
|
// Hash form: clide-claude-<8 hex>.
|
|
expect(name, matches(RegExp(r'^clide-claude-[0-9a-f]{8}$')));
|
|
});
|
|
|
|
test('the same long path produces a stable hash', () {
|
|
final long = '/${'a/' * 200}';
|
|
expect(primarySessionName(long), primarySessionName(long));
|
|
});
|
|
});
|
|
}
|