Files
clide/test/builtin/claude/session_naming_test.dart
T
jpmschweitzerandClaude Opus 4.7 e1cd4653c0 bind each Claude pane to its own session id (T-146)
A regression from T-137: every pane rendered the newest .jsonl in the
workspace dir, so concurrent sessions collided — a secondary tab showed
the primary's conversation. Each pane now spawns claude with its own
--session-id (a transcript is named <session-id>.jsonl), tails that
exact file via TranscriptReader's file: param, and uses a per-session
MessageBus channel so controllers don't cross-talk.

The primary's id is deterministic from its session name (stable → it
resumes across restarts, like /resume off the same history file);
secondaries get a fresh random id so a clean session is always available.
The reader now waits for the bound file to appear rather than throwing.

Migration: an existing tmux session created before this (no --session-id,
claude chose its own id) must be killed once (claude.kill-all-sessions)
so the next spawn binds the controlled id.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-23 08:28:55 +02:00

80 lines
2.9 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));
});
});
group('claude session ids (T-146)', () {
final uuidRe = RegExp(r'^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$');
test('primary id is a valid v4-format UUID', () {
expect(primarySessionId('/home/me/clide'), matches(uuidRe));
});
test('primary id is deterministic per repo (resumes across restarts)', () {
expect(primarySessionId('/home/me/clide'), primarySessionId('/home/me/clide'));
});
test('different repos get different primary ids', () {
expect(primarySessionId('/home/me/clide'), isNot(primarySessionId('/home/me/other')));
});
test('fresh ids are valid UUIDs and unique per call (clean secondaries)', () {
final a = freshSessionId();
final b = freshSessionId();
expect(a, matches(uuidRe));
expect(b, matches(uuidRe));
expect(a, isNot(b));
});
});
}