cruise 0.1.39

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
/**
 * Tests for the GUI settings modal (parallelism configuration).
 *
 * These tests describe the expected behaviour of the settings affordance added to
 * the sidebar header (plan #7). They will fail until the modal is implemented and
 * `getAppConfig` / `updateAppConfig` are wired into App.tsx.
 *
 * Design assumptions (from plan #7):
 *   - A settings button is visible in the sidebar header near "Clean" / "Run All" / "+ New".
 *   - Clicking it opens a modal/dialog (role="dialog").
 *   - The modal contains a numeric input (role="spinbutton") for `run_all_parallelism`.
 *   - Saving calls `updateAppConfig({ runAllParallelism: N })`.
 *   - Parallelism 0 or below is rejected with an inline validation message before saving.
 *   - Saving closes the modal on success.
 *   - A close / cancel button closes the modal without calling `updateAppConfig`.
 */
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { render, screen, waitFor, cleanup } from "@testing-library/react";
import userEvent from "@testing-library/user-event";
import App from "../App";
import type { Session } from "../types";
import * as commands from "../lib/commands";
import * as desktopNotifications from "../lib/desktopNotifications";
import { openSettingsModal } from "./helpers";

// ─── Module mocks ──────────────────────────────────────────────────────────────

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

vi.mock("@tauri-apps/api/core", () => ({
  Channel: class {
    onmessage: ((event: unknown) => void) | null = null;
  },
}));

vi.mock("@tauri-apps/plugin-opener", () => ({
  openUrl: vi.fn(),
}));

vi.mock("@tauri-apps/plugin-dialog", () => ({
  open: vi.fn(),
}));

vi.mock("../lib/commands", () => ({
  listSessions: vi.fn(),
  listConfigs: vi.fn(),
  createSession: vi.fn(),
  approveSession: vi.fn(),
  discardSession: vi.fn(),
  getSession: vi.fn(),
  getSessionLog: vi.fn(),
  getSessionPlan: vi.fn(),
  getNewSessionHistorySummary: vi.fn().mockResolvedValue({ recentWorkingDirs: [] }),
  getNewSessionConfigDefaults: vi.fn().mockResolvedValue({
    steps: [],
    defaultSkippedSteps: [],
  }),
  listDirectory: vi.fn(),
  getUpdateReadiness: vi.fn(),
  cleanSessions: vi.fn(),
  deleteSession: vi.fn(),
  runSession: vi.fn(),
  cancelSession: vi.fn(),
  resetSession: vi.fn(),
  respondToOption: vi.fn(),
  runAllSessions: vi.fn(),
  fixSession: vi.fn(),
  askSession: vi.fn(),
  getAppConfig: vi.fn(),
  updateAppConfig: vi.fn(),
}));

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

vi.mock("../lib/desktopNotifications", () => ({
  notifyDesktop: vi.fn(),
}));

// ─── 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",
    skippedSteps: [],
    ...overrides,
  };
}

// ─── Tests ────────────────────────────────────────────────────────────────────

describe("App: Settings modal — basic presence", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([makeSession()]);
    vi.mocked(commands.listConfigs).mockResolvedValue([]);
    vi.mocked(commands.getSessionLog).mockResolvedValue("");
    vi.mocked(commands.getSessionPlan).mockResolvedValue("");
    vi.mocked(commands.listDirectory).mockResolvedValue([]);
    vi.mocked(commands.getUpdateReadiness).mockResolvedValue({ canAutoUpdate: true });
    vi.mocked(commands.cleanSessions).mockResolvedValue({ deleted: 0, skipped: 0 });
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 1 });
    vi.mocked(commands.updateAppConfig).mockResolvedValue();
  });

  afterEach(() => {
    cleanup();
  });

  it("settings button is present in the sidebar", async () => {
    // Given: App is rendered
    render(<App />);

    // Then: a settings button is visible in the sidebar
    await waitFor(() => {
      expect(screen.getByRole("button", { name: /settings/i })).toBeInTheDocument();
    });
  });

  it("opens settings modal dialog when settings button is clicked", async () => {
    // Given: App is rendered
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));

    // When: settings button is clicked
    await userEvent.click(screen.getByRole("button", { name: /settings/i }));

    // Then: a dialog is visible
    await waitFor(() => {
      expect(screen.getByRole("dialog")).toBeInTheDocument();
    });
  });
});

describe("App: Settings modal — config load and display", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([]);
    vi.mocked(commands.listConfigs).mockResolvedValue([]);
    vi.mocked(commands.getSessionLog).mockResolvedValue("");
    vi.mocked(commands.getSessionPlan).mockResolvedValue("");
    vi.mocked(commands.listDirectory).mockResolvedValue([]);
    vi.mocked(commands.getUpdateReadiness).mockResolvedValue({ canAutoUpdate: true });
    vi.mocked(commands.cleanSessions).mockResolvedValue({ deleted: 0, skipped: 0 });
    vi.mocked(commands.updateAppConfig).mockResolvedValue();
  });

  afterEach(() => {
    cleanup();
  });

  it("shows current parallelism value from getAppConfig in the input field", async () => {
    // Given: getAppConfig returns parallelism=4
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 4 });

    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));

    // When: settings modal is opened
    await openSettingsModal();

    // Then: the numeric input shows "4" (the persisted value)
    await waitFor(() => {
      const input = screen.getByRole("spinbutton") as HTMLInputElement;
      expect(input.value).toBe("4");
    });
  });

  it("shows default parallelism of 1 when getAppConfig returns default", async () => {
    // Given: getAppConfig returns the default value (1)
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 1 });

    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));

    // When: settings modal is opened
    await openSettingsModal();

    // Then: the input shows "1"
    await waitFor(() => {
      const input = screen.getByRole("spinbutton") as HTMLInputElement;
      expect(input.value).toBe("1");
    });
  });
});

describe("App: Settings modal — save behaviour", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([]);
    vi.mocked(commands.listConfigs).mockResolvedValue([]);
    vi.mocked(commands.getSessionLog).mockResolvedValue("");
    vi.mocked(commands.getSessionPlan).mockResolvedValue("");
    vi.mocked(commands.listDirectory).mockResolvedValue([]);
    vi.mocked(commands.getUpdateReadiness).mockResolvedValue({ canAutoUpdate: true });
    vi.mocked(commands.cleanSessions).mockResolvedValue({ deleted: 0, skipped: 0 });
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 1 });
    vi.mocked(commands.updateAppConfig).mockResolvedValue();
  });

  afterEach(() => {
    cleanup();
  });

  it("calls updateAppConfig with the new parallelism value when saved", async () => {
    // Given: modal is open showing parallelism=1
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change value to 3 and click save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "3");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: updateAppConfig is called with the new value
    await waitFor(() => {
      expect(vi.mocked(commands.updateAppConfig)).toHaveBeenCalledWith({ runAllParallelism: 3 });
    });
  });

  it("closes the modal after a successful save", async () => {
    // Given: modal is open
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change value and save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "2");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: modal is dismissed on success
    await waitFor(() => {
      expect(screen.queryByRole("dialog")).toBeNull();
    });
  });

  it("does not call updateAppConfig when cancel/close is clicked", async () => {
    // Given: modal is open
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: the close/cancel button is clicked (without saving)
    const closeButton = screen.getByRole("button", { name: /close|cancel/i });
    await userEvent.click(closeButton);

    // Then: modal closes and updateAppConfig was NOT called
    await waitFor(() => {
      expect(screen.queryByRole("dialog")).toBeNull();
    });
    expect(vi.mocked(commands.updateAppConfig)).not.toHaveBeenCalled();
  });

  it("shows an error message when updateAppConfig rejects", async () => {
    // Given: updateAppConfig will fail with a server error
    vi.mocked(commands.updateAppConfig).mockRejectedValueOnce(new Error("disk write failed"));

    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change value and attempt to save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "2");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: an error message is displayed in the modal
    await waitFor(() => {
      expect(screen.getByText(/disk write failed/i)).toBeInTheDocument();
    });
    // And: the dialog is still visible (not dismissed on error)
    expect(screen.getByRole("dialog")).toBeInTheDocument();
  });
});

describe("App: Settings modal — config load failure", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([]);
    vi.mocked(commands.listConfigs).mockResolvedValue([]);
    vi.mocked(commands.getSessionLog).mockResolvedValue("");
    vi.mocked(commands.getSessionPlan).mockResolvedValue("");
    vi.mocked(commands.listDirectory).mockResolvedValue([]);
    vi.mocked(commands.getUpdateReadiness).mockResolvedValue({ canAutoUpdate: true });
    vi.mocked(commands.cleanSessions).mockResolvedValue({ deleted: 0, skipped: 0 });
    vi.mocked(commands.updateAppConfig).mockResolvedValue();
  });

  afterEach(() => {
    cleanup();
  });

  it("fires desktop notification and does not open dialog when getAppConfig fails", async () => {
    // Given: getAppConfig rejects when the settings button is clicked
    vi.mocked(commands.getAppConfig).mockRejectedValue(new Error("config read error"));

    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));

    // When: the settings button is clicked
    await userEvent.click(screen.getByRole("button", { name: /settings/i }));

    // Then: desktop notification is fired (not just addToast)
    await waitFor(() => {
      expect(vi.mocked(desktopNotifications.notifyDesktop)).toHaveBeenCalledWith(
        "Cruise",
        expect.stringContaining("Failed"),
      );
    });

    // And: the settings dialog is NOT opened (error path)
    expect(screen.queryByRole("dialog")).toBeNull();
  });
});

describe("App: Settings modal — validation", () => {
  beforeEach(() => {
    vi.clearAllMocks();
    vi.mocked(commands.listSessions).mockResolvedValue([]);
    vi.mocked(commands.listConfigs).mockResolvedValue([]);
    vi.mocked(commands.getSessionLog).mockResolvedValue("");
    vi.mocked(commands.getSessionPlan).mockResolvedValue("");
    vi.mocked(commands.listDirectory).mockResolvedValue([]);
    vi.mocked(commands.getUpdateReadiness).mockResolvedValue({ canAutoUpdate: true });
    vi.mocked(commands.cleanSessions).mockResolvedValue({ deleted: 0, skipped: 0 });
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 1 });
    vi.mocked(commands.updateAppConfig).mockResolvedValue();
  });

  afterEach(() => {
    cleanup();
  });

  it("shows a validation error and does not call updateAppConfig when parallelism is 0", async () => {
    // Given: modal is open
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change parallelism to 0 (invalid — must be ≥ 1) and click save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "0");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: a validation error is shown (the value 0 is explicitly rejected)
    await waitFor(() => {
      // Error message should mention the constraint (≥1) or the invalid value
      const errorText = screen.getByText(/must be|at least|≥\s*1|minimum/i);
      expect(errorText).toBeInTheDocument();
    });
    // And: updateAppConfig must NOT be called — 0 is never silently coerced
    expect(vi.mocked(commands.updateAppConfig)).not.toHaveBeenCalled();
  });

  it("shows a validation error for negative parallelism", async () => {
    // Given: modal is open
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: user types a negative number (the HTML input min=1 may prevent this,
    // but we verify the save path also guards against it)
    const input = screen.getByRole("spinbutton") as HTMLInputElement;
    // Override value directly to bypass HTML min attr
    Object.defineProperty(input, "valueAsNumber", { get: () => -1, configurable: true });
    await userEvent.clear(input);
    await userEvent.type(input, "-1");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: updateAppConfig must NOT be called for invalid values (≤ 0)
    expect(vi.mocked(commands.updateAppConfig)).not.toHaveBeenCalled();
  });

  it("accepts parallelism of 1 (minimum valid value)", async () => {
    // Given: modal is open showing a value other than 1
    vi.mocked(commands.getAppConfig).mockResolvedValue({ runAllParallelism: 4 });

    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change value to 1 and save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "1");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: updateAppConfig is called with 1 — minimum is valid
    await waitFor(() => {
      expect(vi.mocked(commands.updateAppConfig)).toHaveBeenCalledWith({ runAllParallelism: 1 });
    });
  });

  it("accepts a large parallelism value", async () => {
    // Given: modal is open
    render(<App />);
    await waitFor(() => screen.getByRole("button", { name: /settings/i }));
    await openSettingsModal();

    // When: change value to 8 and save
    const input = screen.getByRole("spinbutton");
    await userEvent.clear(input);
    await userEvent.type(input, "8");
    await userEvent.click(screen.getByRole("button", { name: /save/i }));

    // Then: updateAppConfig is called with the large value
    await waitFor(() => {
      expect(vi.mocked(commands.updateAppConfig)).toHaveBeenCalledWith({ runAllParallelism: 8 });
    });
  });
});