clipmem 0.4.2

macOS clipboard memory backed by SQLite and searchable from agent runtimes
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
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
use std::path::PathBuf;

use clap::Parser;

use crate::db::{SearchMode, TimelineSort};

use super::{
    classify_command_error, Cli, CliExitCode, Command, OutputFormat, ProgressFormat,
    RecallOutputFormat, RetentionValue,
};

#[test]
fn watch_command_parses_global_db_and_runtime_flags() {
    let cli = Cli::parse_from([
        "clipmem",
        "--db",
        "/tmp/clipmem.sqlite3",
        "watch",
        "--interval-ms",
        "250",
        "--quiet",
        "--skip-initial",
    ]);

    assert_eq!(cli.db, Some(PathBuf::from("/tmp/clipmem.sqlite3")));
    match cli.command {
        Command::Watch(args) => {
            assert_eq!(args.interval_ms, 250);
            assert!(args.quiet);
            assert!(args.skip_initial);
        }
        other => panic!("expected watch command, got {other:?}"),
    }
}

#[test]
fn agents_openclaw_commands_parse_install_and_doctor_flags() {
    let install_cli = Cli::parse_from([
        "clipmem",
        "agents",
        "openclaw",
        "install-skill",
        "--shared",
        "--dest",
        "/tmp/clipboard-memory",
        "--force",
    ]);

    match install_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Openclaw(args) => match args.command {
                super::OpenClawCommand::InstallSkill(args) => {
                    assert!(args.shared);
                    assert_eq!(args.dest, Some(PathBuf::from("/tmp/clipboard-memory")));
                    assert!(args.force);
                }
                other => panic!("expected install-skill command, got {other:?}"),
            },
            other => panic!("expected openclaw command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }

    let doctor_cli = Cli::parse_from([
        "clipmem",
        "agents",
        "openclaw",
        "doctor",
        "--dest",
        "/tmp/clipboard-memory",
    ]);
    match doctor_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Openclaw(args) => match args.command {
                super::OpenClawCommand::Doctor(args) => {
                    assert_eq!(args.dest, Some(PathBuf::from("/tmp/clipboard-memory")));
                    assert!(!args.shared);
                }
                other => panic!("expected doctor command, got {other:?}"),
            },
            other => panic!("expected openclaw command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }
}

#[test]
fn agents_hermes_commands_parse_install_doctor_print_and_uninstall() {
    let install_cli = Cli::parse_from([
        "clipmem",
        "agents",
        "hermes",
        "install-skill",
        "--dest",
        "/tmp/clipboard-memory",
        "--force",
    ]);

    match install_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Hermes(args) => match args.command {
                super::HermesCommand::InstallSkill(args) => {
                    assert_eq!(args.dest, Some(PathBuf::from("/tmp/clipboard-memory")));
                    assert!(args.force);
                }
                other => panic!("expected install-skill command, got {other:?}"),
            },
            other => panic!("expected hermes command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }

    let doctor_cli = Cli::parse_from([
        "clipmem",
        "agents",
        "hermes",
        "doctor",
        "--dest",
        "/tmp/clipboard-memory",
    ]);
    match doctor_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Hermes(args) => match args.command {
                super::HermesCommand::Doctor(args) => {
                    assert_eq!(args.dest, Some(PathBuf::from("/tmp/clipboard-memory")));
                }
                other => panic!("expected doctor command, got {other:?}"),
            },
            other => panic!("expected hermes command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }

    let print_cli = Cli::parse_from(["clipmem", "agents", "hermes", "print-skill"]);
    match print_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Hermes(args) => {
                assert!(matches!(args.command, super::HermesCommand::PrintSkill));
            }
            other => panic!("expected hermes command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }

    let uninstall_cli = Cli::parse_from(["clipmem", "agents", "hermes", "uninstall-skill"]);
    match uninstall_cli.command {
        Command::Agents(args) => match args.command {
            super::AgentsCommand::Hermes(args) => {
                assert!(matches!(
                    args.command,
                    super::HermesCommand::UninstallSkill(_)
                ));
            }
            other => panic!("expected hermes command, got {other:?}"),
        },
        other => panic!("expected agents command, got {other:?}"),
    }
}

#[test]
fn search_command_parses_explicit_mode() {
    let cli = Cli::parse_from(["clipmem", "search", "--mode", "literal", "50%"]);

    match cli.command {
        Command::Search(args) => {
            assert!(matches!(args.mode, SearchMode::Literal));
            assert_eq!(args.query, "50%");
            assert_eq!(args.output.resolved().unwrap(), OutputFormat::Text);
        }
        other => panic!("expected search command, got {other:?}"),
    }
}

#[test]
fn list_commands_parse_output_format_and_cursor() {
    let cli = Cli::parse_from([
        "clipmem", "recent", "--limit", "5", "--cursor", "abcd", "--format", "jsonl",
    ]);

    match cli.command {
        Command::Recent(args) => {
            assert_eq!(args.cursor.as_deref(), Some("abcd"));
            assert_eq!(args.output.resolved().unwrap(), OutputFormat::Jsonl);
        }
        other => panic!("expected recent command, got {other:?}"),
    }
}

#[test]
fn timeline_command_parses_filters_and_sort() {
    let cli = Cli::parse_from([
        "clipmem",
        "timeline",
        "--since",
        "2026-04-16T09:00:00Z",
        "--until",
        "2026-04-16T10:00:00Z",
        "--hours",
        "24",
        "--limit",
        "5",
        "--cursor",
        "abcd",
        "--sort",
        "asc",
        "--format",
        "md",
    ]);

    match cli.command {
        Command::Timeline(args) => {
            assert_eq!(args.filters.since.as_deref(), Some("2026-04-16T09:00:00Z"));
            assert_eq!(args.filters.until.as_deref(), Some("2026-04-16T10:00:00Z"));
            assert_eq!(args.filters.hours, Some(24));
            assert_eq!(args.limit, 5);
            assert_eq!(args.cursor.as_deref(), Some("abcd"));
            assert_eq!(args.sort, TimelineSort::Asc);
            assert_eq!(args.output.resolved().unwrap(), OutputFormat::Md);
        }
        other => panic!("expected timeline command, got {other:?}"),
    }
}

#[test]
fn timeline_command_defaults_to_desc_sort() {
    let cli = Cli::parse_from(["clipmem", "timeline"]);

    match cli.command {
        Command::Timeline(args) => {
            assert_eq!(args.sort, TimelineSort::Desc);
        }
        other => panic!("expected timeline command, got {other:?}"),
    }
}

#[test]
fn recall_command_parses_optional_query_and_flags() {
    let cli = Cli::parse_from([
        "clipmem",
        "recall",
        "git status",
        "--format",
        "json",
        "--limit",
        "4",
        "--hours",
        "24",
        "--full",
        "--quote",
        "--min-score",
        "0.7",
        "--prefer-recent",
        "--prefer-app",
        "terminal",
    ]);

    match cli.command {
        Command::Recall(args) => {
            assert_eq!(args.query.as_deref(), Some("git status"));
            assert_eq!(args.output.resolved().unwrap(), RecallOutputFormat::Json);
            assert_eq!(args.limit, 4);
            assert_eq!(args.filters.hours, Some(24));
            assert!(args.full);
            assert!(args.quote);
            assert_eq!(args.min_score, Some(0.7));
            assert!(args.prefer_recent);
            assert_eq!(args.prefer_app.as_deref(), Some("terminal"));
        }
        other => panic!("expected recall command, got {other:?}"),
    }
}

#[test]
fn recall_command_defaults_to_markdown_output() {
    let cli = Cli::parse_from(["clipmem", "recall"]);

    match cli.command {
        Command::Recall(args) => {
            assert_eq!(args.output.resolved().unwrap(), RecallOutputFormat::Md);
        }
        other => panic!("expected recall command, got {other:?}"),
    }
}

#[test]
fn json_alias_resolves_to_json_output() {
    let cli = Cli::parse_from(["clipmem", "get", "42", "--json"]);

    match cli.command {
        Command::Get(args) => {
            assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
        }
        other => panic!("expected get command, got {other:?}"),
    }
}

#[test]
fn json_alias_rejects_non_json_format() {
    let error = super::run_from(["clipmem", "search", "git", "--json", "--format", "md"])
        .expect_err("invalid output alias combination should fail");

    assert!(error
        .to_string()
        .contains("`--json` is only compatible with `--format json`"));
}

#[test]
fn timeline_command_rejects_inverted_time_range() {
    let error = super::run_from([
        "clipmem",
        "timeline",
        "--since",
        "2026-04-16T11:00:00Z",
        "--until",
        "2026-04-16T10:00:00Z",
    ])
    .expect_err("invalid time range should fail");

    assert!(error
        .to_string()
        .contains("`--since` must be earlier than or equal to `--until`"));
}

#[test]
fn get_command_parses_shared_filters() {
    let cli = Cli::parse_from([
        "clipmem",
        "get",
        "42",
        "--events",
        "3",
        "--app",
        "terminal",
        "--bundle-id",
        "com.apple.Terminal",
        "--kind",
        "url",
        "--has-url",
        "--min-bytes",
        "20",
        "--max-bytes",
        "200",
        "--format",
        "json",
    ]);

    match cli.command {
        Command::Get(args) => {
            assert_eq!(args.snapshot_id, 42);
            assert_eq!(args.events, 3);
            assert_eq!(args.filters.app.as_deref(), Some("terminal"));
            assert_eq!(
                args.filters.bundle_id.as_deref(),
                Some("com.apple.Terminal")
            );
            assert!(matches!(
                args.filters.kind,
                Some(crate::db::RetrievalKind::Url)
            ));
            assert!(args.filters.has_url);
            assert_eq!(args.filters.min_bytes, Some(20));
            assert_eq!(args.filters.max_bytes, Some(200));
            assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
        }
        other => panic!("expected get command, got {other:?}"),
    }
}

#[test]
fn export_command_parses_shared_filters() {
    let cli = Cli::parse_from([
        "clipmem",
        "export",
        "42",
        "--item",
        "1",
        "--uti",
        "public.url",
        "--out",
        "/tmp/clipmem.url",
        "--since",
        "2026-04-16T09:00:00Z",
        "--hours",
        "24",
        "--app",
        "safari",
        "--kind",
        "file",
        "--has-file-url",
    ]);

    match cli.command {
        Command::Export(args) => {
            assert_eq!(args.snapshot_id, 42);
            assert_eq!(args.item, 1);
            assert_eq!(args.uti, "public.url");
            assert_eq!(args.out, PathBuf::from("/tmp/clipmem.url"));
            assert!(!args.force);
            assert_eq!(args.filters.since.as_deref(), Some("2026-04-16T09:00:00Z"));
            assert_eq!(args.filters.hours, Some(24));
            assert_eq!(args.filters.app.as_deref(), Some("safari"));
            assert!(matches!(
                args.filters.kind,
                Some(crate::db::RetrievalKind::File)
            ));
            assert!(args.filters.has_file_url);
        }
        other => panic!("expected export command, got {other:?}"),
    }
}

#[test]
fn shared_filters_reject_inverted_byte_window() {
    let error = super::run_from([
        "clipmem",
        "search",
        "git",
        "--min-bytes",
        "200",
        "--max-bytes",
        "20",
    ])
    .expect_err("invalid byte range should fail");

    assert!(error
        .to_string()
        .contains("`--min-bytes` must be less than or equal to `--max-bytes`"));
}

#[test]
fn shared_filters_reject_empty_app_and_bundle_id_values() {
    let app_error = super::run_from(["clipmem", "recent", "--app", "   "])
        .expect_err("empty app filter should fail");
    assert!(app_error.to_string().contains("--app cannot be empty"));

    let bundle_error = super::run_from(["clipmem", "timeline", "--bundle-id", ""])
        .expect_err("empty bundle id filter should fail");
    assert!(bundle_error
        .to_string()
        .contains("--bundle-id cannot be empty"));
}

#[test]
fn shared_filters_normalize_hours_away_when_since_is_present() {
    let cli = Cli::parse_from([
        "clipmem",
        "search",
        "--since",
        "2026-04-16T09:00:00Z",
        "--hours",
        "24",
        "git",
    ]);

    match cli.command {
        Command::Search(args) => {
            let filters = args.filters.normalized().expect("filters should normalize");
            assert_eq!(filters.since(), Some("2026-04-16T09:00:00Z"));
            assert_eq!(filters.hours(), None);
        }
        other => panic!("expected search command, got {other:?}"),
    }
}

#[test]
fn search_command_rejects_zero_limit() {
    let result = Cli::try_parse_from(["clipmem", "search", "--limit", "0", "git"]);

    assert!(result.is_err());
}

#[test]
fn export_command_parses_required_arguments() {
    let cli = Cli::parse_from([
        "clipmem",
        "export",
        "42",
        "--item",
        "1",
        "--uti",
        "public.png",
        "--out",
        "/tmp/clipmem.bin",
        "--force",
    ]);

    match cli.command {
        Command::Export(args) => {
            assert_eq!(args.snapshot_id, 42);
            assert_eq!(args.item, 1);
            assert_eq!(args.uti, "public.png");
            assert_eq!(args.out, PathBuf::from("/tmp/clipmem.bin"));
            assert!(args.force);
        }
        other => panic!("expected export command, got {other:?}"),
    }
}

#[test]
fn restore_forget_and_purge_commands_parse_expected_arguments() {
    let restore_cli = Cli::parse_from(["clipmem", "restore", "42"]);
    match restore_cli.command {
        Command::Restore(args) => assert_eq!(args.snapshot_id, 42),
        other => panic!("expected restore command, got {other:?}"),
    }

    let forget_cli = Cli::parse_from(["clipmem", "forget", "42"]);
    match forget_cli.command {
        Command::Forget(args) => assert_eq!(args.snapshot_id, 42),
        other => panic!("expected forget command, got {other:?}"),
    }

    let purge_cli = Cli::parse_from(["clipmem", "purge", "--older-than", "30d", "--dry-run"]);
    match purge_cli.command {
        Command::Purge(args) => {
            assert_eq!(args.older_than.raw(), "30d");
            assert_eq!(args.older_than.seconds(), 30 * 24 * 60 * 60);
            assert!(args.dry_run);
        }
        other => panic!("expected purge command, got {other:?}"),
    }
}

#[test]
fn storage_commands_parse_expected_arguments() {
    let compact_cli = Cli::parse_from([
        "clipmem",
        "storage",
        "compact",
        "--dry-run",
        "--format",
        "json",
    ]);
    match compact_cli.command {
        Command::Storage(args) => match args.command {
            super::StorageCommand::Compact(args) => {
                assert!(args.dry_run);
                assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
            }
            other => panic!("expected storage compact command, got {other:?}"),
        },
        other => panic!("expected storage command, got {other:?}"),
    }

    let optimize_cli = Cli::parse_from([
        "clipmem",
        "storage",
        "optimize-images",
        "--no-compact",
        "--limit",
        "50",
        "--format",
        "json",
    ]);
    match optimize_cli.command {
        Command::Storage(args) => match args.command {
            super::StorageCommand::OptimizeImages(args) => {
                assert!(!args.dry_run);
                assert!(args.no_compact);
                assert_eq!(args.limit, 50);
                assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
            }
            other => panic!("expected storage optimize-images command, got {other:?}"),
        },
        other => panic!("expected storage command, got {other:?}"),
    }

    let progress_cli = Cli::parse_from([
        "clipmem",
        "storage",
        "optimize-images",
        "--progress",
        "jsonl",
    ]);
    match progress_cli.command {
        Command::Storage(args) => match args.command {
            super::StorageCommand::OptimizeImages(args) => {
                assert_eq!(args.progress, Some(ProgressFormat::Jsonl));
            }
            other => panic!("expected storage optimize-images command, got {other:?}"),
        },
        other => panic!("expected storage command, got {other:?}"),
    }
}

#[test]
fn storage_optimize_images_progress_rejects_output_format_flags() {
    let error = super::run_from([
        "clipmem",
        "storage",
        "optimize-images",
        "--progress",
        "jsonl",
        "--format",
        "json",
    ])
    .expect_err("progress output should reject explicit output format");

    assert!(error
        .to_string()
        .contains("`--progress jsonl` cannot be combined"));
}

#[test]
fn settings_commands_parse_policy_variants() {
    let show_cli = Cli::parse_from(["clipmem", "settings", "show", "--format", "json"]);
    match show_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::Show(args) => {
                assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
            }
            other => panic!("expected settings show command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }

    let pause_cli = Cli::parse_from(["clipmem", "settings", "pause", "on"]);
    match pause_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::Pause(args) => assert!(args.state.is_paused()),
            other => panic!("expected settings pause command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }

    let filter_cli = Cli::parse_from(["clipmem", "settings", "api-key-filter", "on"]);
    match filter_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::ApiKeyFilter(args) => assert!(args.state.is_paused()),
            other => panic!("expected settings api-key-filter command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }

    let ocr_cli = Cli::parse_from(["clipmem", "settings", "ocr", "on"]);
    match ocr_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::Ocr(args) => assert!(args.state.is_paused()),
            other => panic!("expected settings ocr command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }

    let retention_cli = Cli::parse_from(["clipmem", "settings", "retention", "forever"]);
    match retention_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::Retention(args) => {
                assert!(matches!(args.value, RetentionValue::Forever));
                assert_eq!(args.value.retention_seconds(), None);
            }
            other => panic!("expected settings retention command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }

    let ignore_cli =
        Cli::parse_from(["clipmem", "settings", "ignore", "add", "com.apple.Terminal"]);
    match ignore_cli.command {
        Command::Settings(args) => match args.command {
            super::SettingsCommand::Ignore(args) => match args.command {
                super::SettingsIgnoreCommand::Add(args) => {
                    assert_eq!(args.bundle_id, "com.apple.Terminal");
                }
                other => panic!("expected settings ignore add command, got {other:?}"),
            },
            other => panic!("expected settings ignore command, got {other:?}"),
        },
        other => panic!("expected settings command, got {other:?}"),
    }
}

#[test]
fn ocr_commands_parse_status_and_run_options() {
    let status_cli = Cli::parse_from(["clipmem", "ocr", "status", "--format", "json"]);
    match status_cli.command {
        Command::Ocr(args) => match args.command {
            super::OcrCommand::Status(args) => {
                assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
            }
            other => panic!("expected ocr status command, got {other:?}"),
        },
        other => panic!("expected ocr command, got {other:?}"),
    }

    let run_cli = Cli::parse_from([
        "clipmem",
        "ocr",
        "run",
        "--limit",
        "7",
        "--snapshot",
        "42",
        "--retry-failed",
        "--format",
        "json",
    ]);
    match run_cli.command {
        Command::Ocr(args) => match args.command {
            super::OcrCommand::Run(args) => {
                assert_eq!(args.limit, 7);
                assert_eq!(args.snapshot, Some(42));
                assert!(args.retry_failed);
                assert_eq!(args.output.resolved().unwrap(), OutputFormat::Json);
            }
            other => panic!("expected ocr run command, got {other:?}"),
        },
        other => panic!("expected ocr command, got {other:?}"),
    }
}

#[test]
fn duration_parser_accepts_single_unit_values_and_rejects_invalid_ones() {
    let days_cli = Cli::parse_from(["clipmem", "purge", "--older-than", "30d"]);
    match days_cli.command {
        Command::Purge(args) => assert_eq!(args.older_than.seconds(), 30 * 24 * 60 * 60),
        other => panic!("expected purge command, got {other:?}"),
    }

    let hours_cli = Cli::parse_from(["clipmem", "purge", "--older-than", "12h"]);
    match hours_cli.command {
        Command::Purge(args) => assert_eq!(args.older_than.seconds(), 12 * 60 * 60),
        other => panic!("expected purge command, got {other:?}"),
    }

    let minutes_cli = Cli::parse_from(["clipmem", "purge", "--older-than", "15m"]);
    match minutes_cli.command {
        Command::Purge(args) => assert_eq!(args.older_than.seconds(), 15 * 60),
        other => panic!("expected purge command, got {other:?}"),
    }

    let compound = super::run_from(["clipmem", "purge", "--older-than", "1h30m"])
        .expect_err("compound durations should fail");
    assert!(compound.to_string().contains("expected an integer amount"));

    let zero = super::run_from(["clipmem", "purge", "--older-than", "0d"])
        .expect_err("zero durations should fail");
    assert!(zero.to_string().contains("greater than zero"));
}

#[test]
fn get_command_rejects_zero_event_limit() {
    let result = Cli::try_parse_from(["clipmem", "get", "42", "--events", "0"]);

    assert!(result.is_err());
}

#[test]
fn command_error_classifier_marks_platform_failures() {
    let error = classify_command_error(anyhow::anyhow!(
        "clipboard capture is only supported on macOS"
    ));

    assert_eq!(error.exit_code(), CliExitCode::PlatformError);
    assert!(error.to_string().contains("only supported on macOS"));
}