cruise 0.1.30

YAML-driven coding agent workflow orchestrator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { render, screen, act, waitFor, cleanup } from "@testing-library/react";
import { SessionSidebar } from "../components/SessionSidebar";
import { PLANNING_LABEL } from "../components/PhaseBadge";
import type { Session } from "../types";
import * as commands from "../lib/commands";

vi.mock("@tauri-apps/api/app", () => ({
  getVersion: vi.fn().mockResolvedValue("0.0.0"),
}));

vi.mock("../lib/updater", () => ({
  checkForUpdate: vi.fn().mockResolvedValue(null),
  downloadAndInstall: vi.fn(),
}));

vi.mock("../lib/commands", () => ({
  listSessions: vi.fn(),
  cleanSessions: vi.fn(),
  getUpdateReadiness: vi.fn().mockResolvedValue({ canAutoUpdate: true }),
}));

// --- Helpers ---

function makeSession(overrides: Partial<Session> = {}): Session {
  return {
    id: "session-1",
    phase: "Planned",
    configSource: "default.yaml",
    baseDir: "/home/user/project",
    input: "test task",
    createdAt: "2026-01-01T00:00:00Z",
    workspaceMode: "Worktree",
    ...overrides,
  };
}

const defaultProps = {
  selectedId: null as string | null,
  onSelect: vi.fn(),
  onNewSession: vi.fn(),
  onRunAll: vi.fn(),
};

// --- Tests ---

describe("SessionSidebar", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([]);
  });

  afterEach(() => {
    cleanup();
    vi.restoreAllMocks();
    vi.useRealTimers();
  });

  it("calls listSessions after mount", async () => {
    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then
    await waitFor(() => {
      expect(commands.listSessions).toHaveBeenCalledOnce();
    });
  });

  it("shows Loading... while loading", async () => {
    // Given: first listSessions is pending
    let resolve!: (v: Session[]) => void;
    vi.mocked(commands.listSessions).mockReturnValueOnce(
      new Promise<Session[]>((r) => {
        resolve = r;
      }),
    );

    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then: loading indicator is shown
    expect(screen.getByText("Loading...")).toBeTruthy();

    // Cleanup
    await act(async () => {
      resolve([]);
    });
  });

  it("shows session list when listSessions succeeds", async () => {
    // Given
    vi.mocked(commands.listSessions).mockResolvedValue([
      makeSession({ id: "abc123", input: "hello world" }),
    ]);

    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then
    await waitFor(() => {
      expect(screen.getByText("hello world")).toBeTruthy();
    });
  });

  it("shows error when listSessions fails", async () => {
    // Given
    vi.mocked(commands.listSessions).mockRejectedValue(
      new Error("network error"),
    );

    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then
    await waitFor(() => {
      expect(screen.getByText("Error: Error: network error")).toBeTruthy();
    });
  });

  it("refresh via onRefreshRef does not show loading (silent mode)", async () => {
    // Given: slow refresh after initial load completes
    vi.mocked(commands.listSessions).mockResolvedValueOnce([]);
    let resolveRefresh!: (v: Session[]) => void;
    vi.mocked(commands.listSessions).mockReturnValueOnce(
      new Promise<Session[]>((r) => {
        resolveRefresh = r;
      }),
    );

    const refreshRef = { current: null as (() => void) | null };
    render(
      <SessionSidebar {...defaultProps} onRefreshRef={refreshRef} />,
    );

    // Wait for initial load to complete
    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // When: refresh via ref
    act(() => {
      refreshRef.current?.();
    });

    // Then: no loading indicator (silent mode)
    expect(screen.queryByText("Loading...")).toBeNull();

    // Cleanup
    await act(async () => {
      resolveRefresh([]);
    });
  });

  it("failure via onRefreshRef does not show error (silent mode)", async () => {
    // Given: initial load succeeds, subsequent refresh fails
    vi.mocked(commands.listSessions).mockResolvedValueOnce([]);
    vi.mocked(commands.listSessions).mockRejectedValueOnce(
      new Error("poll error"),
    );

    const refreshRef = { current: null as (() => void) | null };
    render(
      <SessionSidebar {...defaultProps} onRefreshRef={refreshRef} />,
    );

    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // When
    await act(async () => {
      refreshRef.current?.();
    });

    // Then: no error shown
    expect(screen.queryByText(/Error:/)).toBeNull();
  });

  it("success via onRefreshRef clears existing error (silent mode)", async () => {
    // Given: initial load fails -> error is shown
    vi.mocked(commands.listSessions).mockRejectedValueOnce(
      new Error("initial error"),
    );
    vi.mocked(commands.listSessions).mockResolvedValueOnce([]);

    const refreshRef = { current: null as (() => void) | null };
    render(
      <SessionSidebar {...defaultProps} onRefreshRef={refreshRef} />,
    );

    // Verify initial error
    await waitFor(() => {
      expect(screen.queryByText(/Error:/)).not.toBeNull();
    });

    // When: silent refresh succeeds
    await act(async () => {
      refreshRef.current?.();
    });

    // Then: error is cleared
    await waitFor(() => {
      expect(screen.queryByText(/Error:/)).toBeNull();
    });
  });

  it("calls listSessions every 3 seconds (polling)", async () => {
    // Given
    vi.useFakeTimers({ toFake: ["setInterval", "clearInterval"] });
    vi.mocked(commands.listSessions).mockResolvedValue([]);

    render(<SessionSidebar {...defaultProps} />);
    // Resolve the initial load Promise
    await act(async () => {
      await Promise.resolve();
    });

    const callsAfterMount = vi.mocked(commands.listSessions).mock.calls.length;

    // When: 3 seconds pass
    await act(async () => {
      vi.advanceTimersByTime(3000);
      await Promise.resolve();
    });

    // Then: listSessions is called additionally
    expect(vi.mocked(commands.listSessions).mock.calls.length).toBeGreaterThan(
      callsAfterMount,
    );
  });

  it("does not show loading during polling (silent mode)", async () => {
    // Given
    vi.useFakeTimers({ toFake: ["setInterval", "clearInterval"] });
    // Initial load: completes immediately
    vi.mocked(commands.listSessions).mockResolvedValueOnce([]);
    // Polling call: set to pending state
    let resolvePolling!: (v: Session[]) => void;
    vi.mocked(commands.listSessions).mockReturnValueOnce(
      new Promise<Session[]>((r) => {
        resolvePolling = r;
      }),
    );

    render(<SessionSidebar {...defaultProps} />);
    // Initial load complete
    await act(async () => {
      await Promise.resolve();
    });

    // When: polling fires
    act(() => {
      vi.advanceTimersByTime(3000);
    });

    // Then: no loading indicator even while pending (silent mode)
    expect(screen.queryByText("Loading...")).toBeNull();

    // Cleanup
    await act(async () => {
      resolvePolling([]);
    });
  });

  it("skips polling when visibilityState is hidden", async () => {
    // Given
    vi.useFakeTimers({ toFake: ["setInterval", "clearInterval"] });
    vi.spyOn(document, "visibilityState", "get").mockReturnValue("hidden");
    vi.mocked(commands.listSessions).mockResolvedValue([]);

    render(<SessionSidebar {...defaultProps} />);
    await act(async () => {
      await Promise.resolve();
    });

    const callsAfterMount = vi.mocked(commands.listSessions).mock.calls.length;

    // When: 9 seconds pass (3 polling intervals)
    await act(async () => {
      vi.advanceTimersByTime(9000);
      await Promise.resolve();
    });

    // Then: no additional calls while window is hidden
    expect(vi.mocked(commands.listSessions).mock.calls.length).toBe(
      callsAfterMount,
    );
  });

  it("stops polling after unmount", async () => {
    // Given
    vi.useFakeTimers({ toFake: ["setInterval", "clearInterval"] });
    vi.mocked(commands.listSessions).mockResolvedValue([]);

    const { unmount } = render(<SessionSidebar {...defaultProps} />);
    await act(async () => {
      await Promise.resolve();
    });

    // Confirm polling works before unmounting
    await act(async () => {
      vi.advanceTimersByTime(3000);
      await Promise.resolve();
    });
    const callsBeforeUnmount =
      vi.mocked(commands.listSessions).mock.calls.length;

    // When: unmount
    unmount();

    // Then: listSessions is not called even after more time passes
    await act(async () => {
      vi.advanceTimersByTime(9000);
      await Promise.resolve();
    });
    expect(vi.mocked(commands.listSessions).mock.calls.length).toBe(
      callsBeforeUnmount,
    );
  });

  // --- onSelectedSessionUpdated callback -------------------------------------

  it("calls onSelectedSessionUpdated when load returns a session matching selectedId", async () => {
    // Given: selectedId matches a session in the initial load result
    const session = makeSession({ id: "session-1", phase: "Planned" });
    vi.mocked(commands.listSessions).mockResolvedValue([session]);

    const onSelectedSessionUpdated = vi.fn();

    // When
    render(
      <SessionSidebar
        {...defaultProps}
        selectedId="session-1"
        onSelectedSessionUpdated={onSelectedSessionUpdated}
      />,
    );

    // Then: callback is called with the latest DTO for the selected session
    await waitFor(() => {
      expect(onSelectedSessionUpdated).toHaveBeenCalledWith(
        expect.objectContaining({ id: "session-1", phase: "Planned" }),
      );
    });
  });

  it("calls onSelectedSessionUpdated with updated session after a silent refresh", async () => {
    // Given: initial load returns one state, then a refresh returns an updated state
    const initial = makeSession({ id: "session-1", phase: "Planned" });
    vi.mocked(commands.listSessions).mockResolvedValueOnce([initial]);
    const updated = makeSession({ id: "session-1", phase: "Running" });
    vi.mocked(commands.listSessions).mockResolvedValueOnce([updated]);

    const onSelectedSessionUpdated = vi.fn();
    const refreshRef = { current: null as (() => void) | null };

    render(
      <SessionSidebar
        {...defaultProps}
        selectedId="session-1"
        onSelectedSessionUpdated={onSelectedSessionUpdated}
        onRefreshRef={refreshRef}
      />,
    );

    // Wait for the initial load to complete
    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // When: silent refresh fires (polling or visibility change)
    await act(async () => {
      refreshRef.current?.();
    });

    // Then: parent receives the updated session
    await waitFor(() => {
      expect(onSelectedSessionUpdated).toHaveBeenLastCalledWith(
        expect.objectContaining({ id: "session-1", phase: "Running" }),
      );
    });
  });

  it("does not call onSelectedSessionUpdated when selectedId is null", async () => {
    // Given: no session is selected
    vi.mocked(commands.listSessions).mockResolvedValue([
      makeSession({ id: "session-1" }),
    ]);
    const onSelectedSessionUpdated = vi.fn();

    // When
    render(
      <SessionSidebar
        {...defaultProps}
        selectedId={null}
        onSelectedSessionUpdated={onSelectedSessionUpdated}
      />,
    );

    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // Then: callback is never called (nothing is selected)
    expect(onSelectedSessionUpdated).not.toHaveBeenCalled();
  });

  it("does not call onSelectedSessionUpdated when selectedId is not in the result", async () => {
    // Given: the selected session is absent from the returned list
    vi.mocked(commands.listSessions).mockResolvedValue([
      makeSession({ id: "other-session" }),
    ]);
    const onSelectedSessionUpdated = vi.fn();

    // When
    render(
      <SessionSidebar
        {...defaultProps}
        selectedId="session-1"
        onSelectedSessionUpdated={onSelectedSessionUpdated}
      />,
    );

    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // Then: callback is not called (session no longer exists in the list)
    expect(onSelectedSessionUpdated).not.toHaveBeenCalled();
  });

  // --- Header buttons --------------------------------------------------------

  it("renders Clean, Run All, and + New buttons but no Refresh button in the header", async () => {
    // Given
    vi.mocked(commands.listSessions).mockResolvedValue([]);

    // When
    render(<SessionSidebar {...defaultProps} />);
    await waitFor(() =>
      expect(commands.listSessions).toHaveBeenCalledTimes(1),
    );

    // Then
    expect(screen.queryByTitle("Refresh")).toBeNull();
    expect(screen.getByText("Clean")).toBeTruthy();
    expect(screen.getByText("Run All")).toBeTruthy();
    expect(screen.getByText("+ New")).toBeTruthy();
  });

  it("calls listSessions immediately when visibilitychange makes document visible", async () => {
    // Given
    vi.useFakeTimers({ toFake: ["setInterval", "clearInterval"] });
    vi.mocked(commands.listSessions).mockResolvedValue([]);

    render(<SessionSidebar {...defaultProps} />);
    await act(async () => {
      await Promise.resolve();
    });

    const callsAfterMount = vi.mocked(commands.listSessions).mock.calls.length;

    // Set window to visible state
    vi.spyOn(document, "visibilityState", "get").mockReturnValue("visible");

    // When: fire visibilitychange event
    await act(async () => {
      document.dispatchEvent(new Event("visibilitychange"));
      await Promise.resolve();
    });

    // Then: listSessions is called immediately without waiting for interval
    expect(vi.mocked(commands.listSessions).mock.calls.length).toBeGreaterThan(
      callsAfterMount,
    );
  });

  // --- PhaseBadge planAvailable indicator ------------------------------------

  it("shows blue dot indicator for 'Awaiting Approval' session when planAvailable is true", async () => {
    // Given: a session that is awaiting approval with a plan already generated
    vi.mocked(commands.listSessions).mockResolvedValue([
      makeSession({ id: "session-1", phase: "Awaiting Approval", planAvailable: true }),
    ]);

    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then: the blue dot indicator is shown for that session
    await waitFor(() => {
      expect(screen.getByLabelText("plan ready for approval")).toBeTruthy();
    });
  });

  it("shows 'Planning' label for 'Awaiting Approval' session when planAvailable is false", async () => {
    // Given: a session that is awaiting approval but plan is not yet generated
    vi.mocked(commands.listSessions).mockResolvedValue([
      makeSession({ id: "session-1", phase: "Awaiting Approval", planAvailable: false }),
    ]);

    // When
    render(<SessionSidebar {...defaultProps} />);

    // Then: the label shows "Planning" instead of "Awaiting Approval"
    await waitFor(() => {
      expect(screen.getByText(PLANNING_LABEL)).toBeTruthy();
    });

    // And: no blue dot is shown
    expect(screen.queryByLabelText("plan ready for approval")).toBeNull();
  });

});