pacsea 0.8.2

A fast, friendly TUI for browsing and installing Arch and AUR packages with built-in news and security scanning
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
//! Unit tests for system update modal handlers.

use crate::state::AppState;
use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};

use super::handle_system_update;

#[test]
/// What: Verify `SystemUpdate` modal handles Esc to close.
///
/// Inputs:
/// - `SystemUpdate` modal, Esc key event.
///
/// Output:
/// - Modal is closed.
///
/// Details:
/// - Tests that Esc closes the `SystemUpdate` modal.
fn system_update_esc_closes_modal() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: false,
            force_sync: false,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = false;
    let mut force_sync = false;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Esc, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    match app.modal {
        crate::state::Modal::None => {}
        _ => panic!("Expected modal to be closed"),
    }
}

#[test]
/// What: Verify `SystemUpdate` modal handles navigation.
///
/// Inputs:
/// - `SystemUpdate` modal, Down key event.
///
/// Output:
/// - Cursor moves down.
///
/// Details:
/// - Tests that navigation keys work in `SystemUpdate` modal.
fn system_update_navigation() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: false,
            force_sync: false,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = false;
    let mut force_sync = false;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Down, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    assert_eq!(cursor, 1, "Cursor should move down");
}

#[test]
/// What: Verify `SystemUpdate` modal handles toggle with Space.
///
/// Inputs:
/// - `SystemUpdate` modal, Space key event on first option.
///
/// Output:
/// - `do_mirrors` flag is toggled.
///
/// Details:
/// - Tests that Space toggles options in `SystemUpdate` modal.
fn system_update_toggle() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: false,
            force_sync: false,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = false;
    let mut force_sync = false;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Char(' '), KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    assert!(do_mirrors, "do_mirrors should be toggled to true");
}

#[test]
/// What: Verify `SystemUpdate` modal handles Enter to show password prompt.
///
/// Inputs:
/// - `SystemUpdate` modal with options selected, Enter key event.
///
/// Output:
/// - Transitions to `PasswordPrompt` modal with pending update commands.
///
/// Details:
/// - Tests that Enter triggers password prompt before system update execution.
/// - Verifies that `pending_update_commands` is set with the update commands.
fn system_update_enter_executes() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: true,
            force_sync: false,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = true;
    let mut force_sync = false;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Enter, KeyModifiers::empty());
    let result = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    // Should return Some(true) when Enter triggers password prompt
    assert_eq!(result, Some(true));
    // Modal should transition to PasswordPrompt
    match &app.modal {
        crate::state::Modal::PasswordPrompt { purpose, .. } => {
            assert!(
                matches!(purpose, crate::state::modal::PasswordPurpose::Update),
                "Password purpose should be Update"
            );
        }
        _ => panic!("Expected modal to transition to PasswordPrompt"),
    }
    // Verify that pending_update_commands is set
    assert!(
        app.pending_update_commands.is_some(),
        "System update should set pending_update_commands"
    );
    // Verify the commands include pacman update with normal sync (-Syu)
    let commands = app
        .pending_update_commands
        .as_ref()
        .expect("pending_update_commands should be set");
    assert!(
        commands.iter().any(|c| c.contains("pacman -Syu")),
        "Commands should include pacman -Syu for normal sync"
    );
}

#[test]
/// What: Verify force sync option uses `-Syyu` instead of `-Syu`.
///
/// Inputs:
/// - `SystemUpdate` modal with `force_sync` enabled, Enter key event.
///
/// Output:
/// - Commands use `-Syyu` flag.
///
/// Details:
/// - Tests that enabling force sync uses the force database refresh flag.
fn system_update_force_sync_uses_syyu() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: true,
            force_sync: true,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = true;
    let mut force_sync = true;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Enter, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    // Verify the commands use -Syyu (force sync)
    let commands = app
        .pending_update_commands
        .as_ref()
        .expect("pending_update_commands should be set");
    assert!(
        commands.iter().any(|c| c.contains("-Syyu")),
        "Commands should include -Syyu for force sync"
    );
    assert!(
        !commands
            .iter()
            .any(|c| c.contains("-Syu --noconfirm") && !c.contains("-Syyu")),
        "Commands should not include plain -Syu when force sync is enabled"
    );
}

#[test]
/// What: Verify AUR update uses `-Sua` when pacman is also selected.
///
/// Inputs:
/// - `SystemUpdate` modal with both `do_pacman` and `do_aur` enabled, Enter key event.
///
/// Output:
/// - AUR command uses `-Sua` flag (AUR only, since official packages are updated by pacman).
///
/// Details:
/// - Tests that when both pacman and AUR updates are selected, AUR uses `-Sua` to avoid redundant official package updates.
fn system_update_aur_uses_sua_when_pacman_selected() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: true,
            force_sync: false,
            do_aur: true,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = true;
    let mut force_sync = false;
    let mut do_aur = true;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Enter, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    // Verify the commands include pacman -Syu
    let commands = app
        .pending_update_commands
        .as_ref()
        .expect("pending_update_commands should be set");
    assert!(
        commands.iter().any(|c| c.contains("pacman -Syu")),
        "Commands should include pacman -Syu"
    );
    // Verify AUR command is stored separately and uses -Sua (not -Syu) when pacman is also selected
    let aur_command = app
        .pending_aur_update_command
        .as_ref()
        .expect("pending_aur_update_command should be set when both pacman and AUR are selected");
    assert!(
        aur_command.contains("paru -Sua") || aur_command.contains("yay -Sua"),
        "AUR command should use -Sua when pacman is also selected"
    );
    assert!(
        !aur_command.contains("paru -Syu") && !aur_command.contains("yay -Syu"),
        "AUR command should not use -Syu when pacman is also selected"
    );
    // Verify AUR command is NOT in the main command list
    assert!(
        !commands
            .iter()
            .any(|c| c.contains("paru") || c.contains("yay")),
        "AUR command should not be in pending_update_commands when pacman is also selected"
    );
}

#[test]
/// What: Verify AUR update uses `-Sua` when only AUR is selected (no pacman).
///
/// Inputs:
/// - `SystemUpdate` modal with only `do_aur` enabled (no pacman), Enter key event.
///
/// Output:
/// - AUR command uses `-Sua` flag (updates only AUR packages).
///
/// Details:
/// - Tests that when only AUR update is selected, AUR uses `-Sua` to update only AUR packages.
/// - AUR helpers will handle dependency resolution and report if newer official packages are needed.
fn system_update_aur_uses_sua_when_only_aur_selected() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: false,
            force_sync: false,
            do_aur: true,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 0,
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = false;
    let mut force_sync = false;
    let mut do_aur = true;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 0;

    let ke = KeyEvent::new(KeyCode::Enter, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    // Verify AUR command uses -Sua (not -Syu) when only AUR is selected
    let commands = app
        .pending_update_commands
        .as_ref()
        .expect("pending_update_commands should be set");
    assert!(
        commands
            .iter()
            .any(|c| c.contains("paru -Sua") || c.contains("yay -Sua")),
        "AUR command should use -Sua when only AUR is selected"
    );
    assert!(
        commands
            .iter()
            .all(|c| !c.contains("-Syu") || c.contains("-Sua")),
        "AUR command should not use -Syu when only AUR is selected (must use -Sua if -Syu is present)"
    );
}

#[test]
/// What: Verify left/right/tab keys toggle `force_sync` on pacman row.
///
/// Inputs:
/// - `SystemUpdate` modal on cursor row 1 (pacman), Left/Right/Tab key event.
///
/// Output:
/// - `force_sync` is toggled.
///
/// Details:
/// - Tests that Left/Right/Tab on pacman row toggles sync mode.
fn system_update_left_right_toggles_force_sync() {
    let mut app = AppState {
        modal: crate::state::Modal::SystemUpdate {
            do_mirrors: false,
            do_pacman: true,
            force_sync: false,
            do_aur: false,
            do_cache: false,
            country_idx: 0,
            countries: vec!["Worldwide".to_string()],
            mirror_count: 10,
            cursor: 1, // Pacman row
        },
        ..Default::default()
    };

    let mut do_mirrors = false;
    let mut do_pacman = true;
    let mut force_sync = false;
    let mut do_aur = false;
    let mut do_cache = false;
    let mut country_idx = 0;
    let countries = vec!["Worldwide".to_string()];
    let mut mirror_count = 10;
    let mut cursor = 1; // Pacman row

    // Press Right to toggle force_sync to true
    let ke = KeyEvent::new(KeyCode::Right, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    assert!(
        force_sync,
        "force_sync should be toggled to true with Right"
    );

    // Press Left to toggle force_sync back to false
    let ke = KeyEvent::new(KeyCode::Left, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    assert!(
        !force_sync,
        "force_sync should be toggled back to false with Left"
    );

    // Press Tab to toggle force_sync to true
    let ke = KeyEvent::new(KeyCode::Tab, KeyModifiers::empty());
    let _ = handle_system_update(
        ke,
        &mut app,
        &mut do_mirrors,
        &mut do_pacman,
        &mut force_sync,
        &mut do_aur,
        &mut do_cache,
        &mut country_idx,
        &countries,
        &mut mirror_count,
        &mut cursor,
    );

    assert!(force_sync, "force_sync should be toggled to true with Tab");
}