installrs 0.1.0-rc13

Build self-contained software installers in plain Rust, with an optional native wizard GUI (Win32 / GTK3), component selection, progress, cancellation, and compression.
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
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
#[path = "../build/mod.rs"]
mod build;

use std::path::PathBuf;

use anyhow::Result;
use clap::Parser;

#[derive(Parser, Debug)]
#[command(
    name = "installrs",
    about = "Build self-contained installer executables"
)]
struct Cli {
    /// Directory containing the installer source crate
    #[arg(long, default_value = ".")]
    target: PathBuf,

    /// Output installer file path
    #[arg(long, short, default_value = "./installer")]
    output: PathBuf,

    /// Compression method: lzma, gzip, bzip2, or none
    #[arg(long, default_value = "lzma")]
    compression: String,

    /// Comma-separated glob patterns to ignore when including directories
    #[arg(long, default_value = ".git,.svn,node_modules")]
    ignore: String,

    /// Rust target triple for cross-compilation (e.g. x86_64-pc-windows-gnu)
    #[arg(long)]
    target_triple: Option<String>,

    /// Enable a user-library cargo feature in the generated installer.
    /// Activates `source!(..., features = [...])` entries gated on the
    /// same name, and enables the matching feature on the user-crate
    /// dependency so `#[cfg(feature = "...")]` code in `install()` /
    /// `uninstall()` is compiled in. Repeatable.
    #[arg(long = "feature", value_name = "NAME", action = clap::ArgAction::Append)]
    features: Vec<String>,

    /// Override a `[package.metadata.installrs]` key. Repeatable. Format:
    /// `key=value`. Use a dotted path (`installer.file-version=1.2.3`,
    /// `uninstaller.file-description=...`) to target the installer or
    /// uninstaller subtable. Values parse as TOML (bool / int /
    /// otherwise string), so `-m gui=true` and `-m language=0x0409`
    /// work. Useful for stamping CI-provided version strings without
    /// touching `Cargo.toml`.
    #[arg(
        long = "metadata",
        short = 'm',
        value_name = "KEY=VALUE",
        action = clap::ArgAction::Append,
    )]
    metadata: Vec<String>,

    /// Enable debug output (-v) or trace output (-vv)
    #[arg(long, short, action = clap::ArgAction::Count)]
    verbose: u8,

    /// Suppress non-error output
    #[arg(long, short)]
    quiet: bool,

    /// Suppress all output
    #[arg(long, short)]
    silent: bool,
}

fn main() {
    let cli = Cli::parse();

    let log_level = if cli.silent {
        "off"
    } else if cli.quiet {
        "error"
    } else {
        match cli.verbose {
            0 => "info",
            1 => "debug",
            _ => "trace",
        }
    };

    env_logger::Builder::new()
        .filter_level(log_level.parse().unwrap())
        .format_timestamp(None)
        .format_target(false)
        .init();

    if let Err(e) = run(cli) {
        log::error!("{e:#}");
        std::process::exit(1);
    }
}

fn run(cli: Cli) -> Result<()> {
    let target = cli
        .target
        .canonicalize()
        .unwrap_or_else(|_| cli.target.clone());

    let build_dir = target.join("build");

    let ignore_patterns: Vec<String> = cli
        .ignore
        .split(',')
        .map(|s| s.trim().to_string())
        .filter(|s| !s.is_empty())
        .collect();

    let mut output_file = cli.output;
    if let Some(ref triple) = cli.target_triple {
        if triple.contains("windows") && output_file.extension().map(|e| e != "exe").unwrap_or(true)
        {
            output_file.set_extension("exe");
        }
    }

    // Always read the [package.metadata.installrs] config — the builder
    // decides per-target whether to emit Windows resources vs. embed the
    // icon as PNG for the GTK backend.
    let metadata_overrides = parse_metadata_overrides(&cli.metadata)?;

    let (installer_win_resource, uninstaller_win_resource) =
        build::builder::read_win_resource_config(&target, &cli.features, &metadata_overrides)?;

    let gui_enabled = build::builder::read_gui_config(&target, &cli.features, &metadata_overrides)?;
    if gui_enabled {
        log::info!("GUI support enabled");
    }

    let params = build::builder::BuildParams {
        target_dir: target,
        build_dir,
        output_file,
        compression: cli.compression,
        ignore_patterns,
        target_triple: cli.target_triple,
        verbosity: cli.verbose,
        installer_win_resource,
        uninstaller_win_resource,
        gui_enabled,
        features: cli.features,
    };

    build::builder::build(params)
}

fn parse_override_value(value: &str) -> toml::Value {
    if let Ok(b) = value.parse::<bool>() {
        return toml::Value::Boolean(b);
    }
    let hex = value
        .strip_prefix("0x")
        .or_else(|| value.strip_prefix("0X"));
    if let Some(stripped) = hex {
        if let Ok(n) = i64::from_str_radix(stripped, 16) {
            return toml::Value::Integer(n);
        }
    }
    if let Ok(n) = value.parse::<i64>() {
        return toml::Value::Integer(n);
    }
    toml::Value::String(value.to_string())
}

/// Parse each `--metadata KEY=VALUE` entry into a (path, value) pair.
/// `KEY` is split on `.` for nested overrides; `VALUE` parses as TOML
/// (bool / integer first, falling back to string) so booleans and
/// numeric metadata keys work without quoting.
fn parse_metadata_overrides(raw: &[String]) -> Result<Vec<(Vec<String>, toml::Value)>> {
    let mut out = Vec::with_capacity(raw.len());
    for entry in raw {
        let (key, value) = entry
            .split_once('=')
            .ok_or_else(|| anyhow::anyhow!("--metadata expects KEY=VALUE, got {entry:?}"))?;
        if key.is_empty() {
            return Err(anyhow::anyhow!("--metadata key is empty in {entry:?}"));
        }
        let path: Vec<String> = key.split('.').map(|s| s.to_string()).collect();
        if path.iter().any(|s| s.is_empty()) {
            return Err(anyhow::anyhow!(
                "--metadata key {key:?} has an empty path segment"
            ));
        }
        let parsed = parse_override_value(value);
        out.push((path, parsed));
    }
    Ok(out)
}

#[cfg(test)]
mod tests {
    use super::build::builder::CargoManifest;
    use super::build::compress;
    use super::build::scanner;
    use std::io::Read;

    // ── per-feature metadata overlays ────────────────────────────────────────

    fn write_manifest(dir: &std::path::Path, body: &str) {
        let header = "[package]\nname = \"t\"\nversion = \"0.0.0\"\nedition = \"2021\"\n\n";
        std::fs::write(dir.join("Cargo.toml"), format!("{header}{body}")).unwrap();
    }

    fn write_manifest_with_version(dir: &std::path::Path, version: &str, body: &str) {
        let header =
            format!("[package]\nname = \"t\"\nversion = \"{version}\"\nedition = \"2021\"\n\n");
        std::fs::write(dir.join("Cargo.toml"), format!("{header}{body}")).unwrap();
    }

    #[test]
    fn file_version_defaults_to_package_version() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest_with_version(
            tmp.path(),
            "1.2.3",
            r#"
[package.metadata.installrs]
product-name = "App"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, uninstaller) = m.win_resource_config(&[], &[]).unwrap();
        let i_v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        let u_v: std::collections::HashMap<_, _> =
            uninstaller.unwrap().version_info.into_iter().collect();
        assert_eq!(i_v.get("FileVersion").unwrap(), "1.2.3");
        assert_eq!(i_v.get("ProductVersion").unwrap(), "1.2.3");
        assert_eq!(u_v.get("FileVersion").unwrap(), "1.2.3");
    }

    #[test]
    fn explicit_file_version_overrides_package_version_fallback() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest_with_version(
            tmp.path(),
            "1.2.3",
            r#"
[package.metadata.installrs]
file-version = "9.9.9.9"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m.win_resource_config(&[], &[]).unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        assert_eq!(v.get("FileVersion").unwrap(), "9.9.9.9");
        // ProductVersion still falls back to package version.
        assert_eq!(v.get("ProductVersion").unwrap(), "1.2.3");
    }

    #[test]
    fn cli_metadata_override_wins_over_base_and_package_fallback() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest_with_version(
            tmp.path(),
            "1.2.3",
            r#"
[package.metadata.installrs]
file-version = "1.0.0.0"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let overrides: Vec<(Vec<String>, toml::Value)> = vec![(
            vec!["file-version".to_string()],
            toml::Value::String("9.9.9.9".to_string()),
        )];
        let (installer, _) = m.win_resource_config(&[], &overrides).unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        assert_eq!(v.get("FileVersion").unwrap(), "9.9.9.9");
        // ProductVersion still falls back to package version.
        assert_eq!(v.get("ProductVersion").unwrap(), "1.2.3");
    }

    #[test]
    fn cli_metadata_dotted_path_targets_installer_subtable() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
file-version = "1.0.0.0"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let overrides: Vec<(Vec<String>, toml::Value)> = vec![(
            vec!["installer".to_string(), "file-version".to_string()],
            toml::Value::String("7.7.7.7".to_string()),
        )];
        let (installer, uninstaller) = m.win_resource_config(&[], &overrides).unwrap();
        let i_v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        let u_v: std::collections::HashMap<_, _> =
            uninstaller.unwrap().version_info.into_iter().collect();
        // Installer side overridden via dotted path.
        assert_eq!(i_v.get("FileVersion").unwrap(), "7.7.7.7");
        // Uninstaller still inherits the base value.
        assert_eq!(u_v.get("FileVersion").unwrap(), "1.0.0.0");
    }

    #[test]
    fn pack_version_u64_handles_common_shapes() {
        use super::build::builder::pack_version_u64;
        assert_eq!(
            pack_version_u64("1.2.3.4"),
            (1u64 << 48) | (2u64 << 32) | (3u64 << 16) | 4u64
        );
        // Missing parts default to 0.
        assert_eq!(
            pack_version_u64("1.2.3"),
            (1u64 << 48) | (2u64 << 32) | (3u64 << 16)
        );
        assert_eq!(pack_version_u64("1.2"), (1u64 << 48) | (2u64 << 32));
        // Pre-release / build suffixes are stripped before parsing.
        assert_eq!(
            pack_version_u64("1.2.3-rc4"),
            (1u64 << 48) | (2u64 << 32) | (3u64 << 16)
        );
        assert_eq!(pack_version_u64("0.1.0-rc12+sha.abc"), 1u64 << 32);
        // Non-numeric segments → 0; leading digits within a segment are kept.
        assert_eq!(pack_version_u64("1.beta.3"), (1u64 << 48) | (3u64 << 16));
        assert_eq!(pack_version_u64(""), 0);
    }

    #[test]
    fn pack_version_u64_handles_calver_with_commit_sha() {
        use super::build::builder::pack_version_u64;
        // CalVer like 2026.04.30 with a git-sha build suffix — the
        // suffix should be stripped, leaving the date components in
        // the FIXEDFILEINFO numeric block.
        assert_eq!(
            pack_version_u64("2026.04.30-abc123def"),
            (2026u64 << 48) | (4u64 << 32) | (30u64 << 16)
        );
        // Year-only CalVer with a 4-digit year still fits in u16.
        assert_eq!(
            pack_version_u64("2026.04.30.7-rc1+sha.deadbeef"),
            (2026u64 << 48) | (4u64 << 32) | (30u64 << 16) | 7u64
        );
    }

    #[test]
    fn cli_metadata_can_toggle_gui() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        assert!(!m.gui_enabled(&[], &[]));
        let overrides: Vec<(Vec<String>, toml::Value)> =
            vec![(vec!["gui".to_string()], toml::Value::Boolean(true))];
        assert!(m.gui_enabled(&[], &overrides));
    }

    #[test]
    fn parse_override_value_distinguishes_types() {
        use super::parse_override_value;
        assert_eq!(parse_override_value("true"), toml::Value::Boolean(true));
        assert_eq!(parse_override_value("false"), toml::Value::Boolean(false));
        assert_eq!(parse_override_value("42"), toml::Value::Integer(42));
        assert_eq!(parse_override_value("0x0409"), toml::Value::Integer(0x0409));
        assert_eq!(
            parse_override_value("1.2.3"),
            toml::Value::String("1.2.3".to_string())
        );
        assert_eq!(
            parse_override_value("My App"),
            toml::Value::String("My App".to_string())
        );
    }

    #[test]
    fn installer_subtable_override_wins_over_package_version_fallback() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest_with_version(
            tmp.path(),
            "1.2.3",
            r#"
[package.metadata.installrs.installer]
file-version = "7.0.0.0"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, uninstaller) = m.win_resource_config(&[], &[]).unwrap();
        let i_v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        let u_v: std::collections::HashMap<_, _> =
            uninstaller.unwrap().version_info.into_iter().collect();
        assert_eq!(i_v.get("FileVersion").unwrap(), "7.0.0.0");
        // Uninstaller has no override, so it gets the package fallback.
        assert_eq!(u_v.get("FileVersion").unwrap(), "1.2.3");
    }

    #[test]
    fn feature_overlay_overrides_base_scalars() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "Base"
file-version = "1.0.0.0"

[package.metadata.installrs.feature.pro]
product-name = "Pro"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m.win_resource_config(&["pro".to_string()], &[]).unwrap();
        let v = installer.unwrap().version_info;
        let by_key: std::collections::HashMap<_, _> = v.into_iter().collect();
        assert_eq!(by_key.get("ProductName").unwrap(), "Pro");
        assert_eq!(by_key.get("FileVersion").unwrap(), "1.0.0.0");
    }

    #[test]
    fn feature_overlay_inactive_uses_base() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "Base"

[package.metadata.installrs.feature.pro]
product-name = "Pro"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m.win_resource_config(&[], &[]).unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        assert_eq!(v.get("ProductName").unwrap(), "Base");
    }

    #[test]
    fn feature_overlay_last_wins_in_order() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "Base"

[package.metadata.installrs.feature.a]
product-name = "A"

[package.metadata.installrs.feature.b]
product-name = "B"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m
            .win_resource_config(&["a".to_string(), "b".to_string()], &[])
            .unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        assert_eq!(v.get("ProductName").unwrap(), "B");
    }

    #[test]
    fn feature_overlay_merges_installer_subtable_keywise() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "App"

[package.metadata.installrs.installer]
file-description = "App Installer"
internal-name = "app-installer"

[package.metadata.installrs.feature.pro.installer]
file-description = "App Pro Installer"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m.win_resource_config(&["pro".to_string()], &[]).unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        // Overridden by the feature overlay.
        assert_eq!(v.get("FileDescription").unwrap(), "App Pro Installer");
        // Inherited from the base installer subtable — not wiped.
        assert_eq!(v.get("InternalName").unwrap(), "app-installer");
    }

    #[test]
    fn feature_overlay_installer_works_without_base_installer_subtable() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "App"

[package.metadata.installrs.feature.pro.installer]
file-description = "App Pro Installer"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, _) = m.win_resource_config(&["pro".to_string()], &[]).unwrap();
        let v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        assert_eq!(v.get("ProductName").unwrap(), "App");
        assert_eq!(v.get("FileDescription").unwrap(), "App Pro Installer");
    }

    #[test]
    fn feature_overlay_uninstaller_subtable_isolated_from_installer() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]
product-name = "App"

[package.metadata.installrs.feature.pro.uninstaller]
file-description = "App Pro Uninstaller"
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        let (installer, uninstaller) = m.win_resource_config(&["pro".to_string()], &[]).unwrap();
        let i_v: std::collections::HashMap<_, _> =
            installer.unwrap().version_info.into_iter().collect();
        let u_v: std::collections::HashMap<_, _> =
            uninstaller.unwrap().version_info.into_iter().collect();
        // Installer keeps the base ProductName and gets no FileDescription.
        assert_eq!(i_v.get("ProductName").unwrap(), "App");
        assert!(!i_v.contains_key("FileDescription"));
        // Uninstaller picks up the feature override.
        assert_eq!(u_v.get("FileDescription").unwrap(), "App Pro Uninstaller");
    }

    #[test]
    fn feature_overlay_can_enable_gui() {
        let tmp = tempfile::tempdir().unwrap();
        write_manifest(
            tmp.path(),
            r#"
[package.metadata.installrs]

[package.metadata.installrs.feature.gui]
gui = true
"#,
        );
        let m = CargoManifest::load(tmp.path()).unwrap();
        assert!(!m.gui_enabled(&[], &[]));
        assert!(m.gui_enabled(&["gui".to_string()], &[]));
    }

    // ── compress::validate_method ─────────────────────────────────────────────

    #[test]
    fn validate_accepts_lzma() {
        compress::validate_method("lzma").unwrap();
    }

    #[test]
    fn validate_accepts_gzip() {
        compress::validate_method("gzip").unwrap();
    }

    #[test]
    fn validate_accepts_bzip2() {
        compress::validate_method("bzip2").unwrap();
    }

    #[test]
    fn validate_accepts_none() {
        compress::validate_method("none").unwrap();
    }

    #[test]
    fn validate_rejects_unknown() {
        assert!(compress::validate_method("zstd")
            .unwrap_err()
            .to_string()
            .contains("unsupported"));
    }

    #[test]
    fn validate_rejects_empty_string() {
        // "" is not in the accepted set; only the explicit string "none" is.
        assert!(compress::validate_method("").is_err());
    }

    // ── compress round-trips ──────────────────────────────────────────────────

    const SAMPLE: &[u8] = b"round-trip test data for compression algorithms";

    #[test]
    fn compress_none_is_passthrough() {
        assert_eq!(compress::compress(SAMPLE, "none").unwrap(), SAMPLE);
    }

    #[test]
    fn compress_empty_is_passthrough() {
        assert_eq!(compress::compress(SAMPLE, "").unwrap(), SAMPLE);
    }

    #[test]
    fn compress_lzma_roundtrip() {
        let compressed = compress::compress(SAMPLE, "lzma").unwrap();
        let mut out = Vec::new();
        lzma_rust2::XzReader::new(compressed.as_slice(), false)
            .read_to_end(&mut out)
            .unwrap();
        assert_eq!(out, SAMPLE);
    }

    #[test]
    fn compress_gzip_roundtrip() {
        let compressed = compress::compress(SAMPLE, "gzip").unwrap();
        let mut out = Vec::new();
        flate2::read::GzDecoder::new(compressed.as_slice())
            .read_to_end(&mut out)
            .unwrap();
        assert_eq!(out, SAMPLE);
    }

    #[test]
    fn compress_bzip2_roundtrip() {
        let compressed = compress::compress(SAMPLE, "bzip2").unwrap();
        let mut out = Vec::new();
        bzip2::read::BzDecoder::new(compressed.as_slice())
            .read_to_end(&mut out)
            .unwrap();
        assert_eq!(out, SAMPLE);
    }

    #[test]
    fn compress_unknown_errors() {
        assert!(compress::compress(SAMPLE, "zstd").is_err());
    }

    // ── scanner helper ────────────────────────────────────────────────────────

    fn scan_str(source: &str) -> scanner::ScanResult {
        let tmp = tempfile::TempDir::new().unwrap();
        std::fs::write(tmp.path().join("lib.rs"), source).unwrap();
        scanner::scan_source_dir(tmp.path()).unwrap()
    }

    // ── scanner: function detection ───────────────────────────────────────────

    #[test]
    fn scanner_detects_install_fn() {
        let r = scan_str("pub fn install(i: &mut T) -> R { Ok(()) }");
        assert!(r.has_install_fn);
        assert!(!r.has_uninstall_fn);
    }

    #[test]
    fn scanner_detects_uninstall_fn() {
        let r = scan_str("pub fn uninstall(i: &mut T) -> R { Ok(()) }");
        assert!(!r.has_install_fn);
        assert!(r.has_uninstall_fn);
    }

    #[test]
    fn scanner_detects_both_fns() {
        let r = scan_str("pub fn install() {} pub fn uninstall() {}");
        assert!(r.has_install_fn);
        assert!(r.has_uninstall_fn);
    }

    #[test]
    fn scanner_detects_neither_fn() {
        let r = scan_str("fn helper() {}");
        assert!(!r.has_install_fn);
        assert!(!r.has_uninstall_fn);
    }

    // ── scanner: source! macro detection ─────────────────────────────────────

    fn has_path(list: &[scanner::SourceRef], path: &str) -> bool {
        list.iter().any(|r| r.path == path)
    }

    #[test]
    fn scanner_detects_source_macro() {
        let r = scan_str(
            r#"fn install(i: &mut T) { i.file(installrs::source!("cfg.toml"), "dst").install().unwrap(); }"#,
        );
        assert!(has_path(&r.install_sources, "cfg.toml"));
    }

    #[test]
    fn scanner_detects_unqualified_source_macro() {
        let r = scan_str(r#"fn install(i: &mut T) { i.file(source!("data.txt"), "dst"); }"#);
        assert!(has_path(&r.install_sources, "data.txt"));
    }

    #[test]
    fn scanner_no_duplicate_sources() {
        let r = scan_str(
            r#"fn install(i: &mut T) {
                i.file(source!("x.txt"), "a");
                i.file(source!("x.txt"), "b");
            }"#,
        );
        assert_eq!(
            r.install_sources
                .iter()
                .filter(|p| p.path == "x.txt")
                .count(),
            1
        );
    }

    #[test]
    fn scanner_source_nested_path() {
        let r =
            scan_str(r#"fn install(i: &mut T) { i.file(source!("vendor/lib.so"), "lib.so"); }"#);
        assert!(
            has_path(&r.install_sources, "vendor/lib.so"),
            "got: {:?}",
            r.install_sources
        );
    }

    #[test]
    fn scanner_source_in_dir_call() {
        // Builder determines file-vs-dir from filesystem; scanner just collects paths.
        let r = scan_str(r#"fn install(i: &mut T) { i.dir(source!("assets/icons"), "icons"); }"#);
        assert!(
            has_path(&r.install_sources, "assets/icons"),
            "got: {:?}",
            r.install_sources
        );
    }

    // ── scanner: function-scoped macro detection ─────────────────────────────

    #[test]
    fn scanner_source_in_uninstall_goes_to_uninstall() {
        let r = scan_str(r#"fn uninstall(i: &mut T) { i.file(source!("cleanup.sh"), "dst"); }"#);
        assert!(has_path(&r.uninstall_sources, "cleanup.sh"));
        assert!(r.install_sources.is_empty());
    }

    #[test]
    fn scanner_source_outside_install_uninstall_goes_to_both() {
        let r = scan_str(r#"fn helper(i: &mut T) { i.file(source!("shared.dat"), "dst"); }"#);
        assert!(has_path(&r.install_sources, "shared.dat"));
        assert!(has_path(&r.uninstall_sources, "shared.dat"));
    }

    #[test]
    fn scanner_ignores_non_source_macros() {
        let r = scan_str(
            r#"fn install(i: &mut T) {
                println!("{}", "nope.txt");
                format!("also-ignored.txt");
                i.file(source!("real.txt"), "dst");
            }"#,
        );
        assert_eq!(r.install_sources.len(), 1);
        assert_eq!(r.install_sources[0].path, "real.txt");
    }

    // ── scanner: source! options ─────────────────────────────────────────────

    #[test]
    fn scanner_parses_ignore_option() {
        let r = scan_str(
            r#"fn install(i: &mut T) { i.dir(source!("assets", ignore = ["*.bak", "scratch"]), "dst"); }"#,
        );
        let s = r
            .install_sources
            .iter()
            .find(|s| s.path == "assets")
            .expect("missing assets source");
        assert_eq!(s.ignore, vec!["*.bak".to_string(), "scratch".to_string()]);
    }

    #[test]
    fn scanner_parses_features_option() {
        let r = scan_str(
            r#"fn install(i: &mut T) { i.file(source!("docs.tar", features = ["docs", "full"]), "dst"); }"#,
        );
        let s = r
            .install_sources
            .iter()
            .find(|s| s.path == "docs.tar")
            .expect("missing docs.tar source");
        assert_eq!(s.features, vec!["docs".to_string(), "full".to_string()]);
    }

    #[test]
    fn scanner_empty_features_wins_over_gated_repeat() {
        let r = scan_str(
            r#"fn install(i: &mut T) {
                i.file(source!("x.dat", features = ["pro"]), "a");
                i.file(source!("x.dat"), "b");
            }"#,
        );
        let s = r
            .install_sources
            .iter()
            .find(|s| s.path == "x.dat")
            .unwrap();
        assert!(
            s.features.is_empty(),
            "unconditional reference should clear feature gates, got {:?}",
            s.features
        );
    }

    #[test]
    fn scanner_unions_features_across_invocations() {
        let r = scan_str(
            r#"fn install(i: &mut T) {
                i.file(source!("x.dat", features = ["a"]), "1");
                i.file(source!("x.dat", features = ["b"]), "2");
            }"#,
        );
        let s = r
            .install_sources
            .iter()
            .find(|s| s.path == "x.dat")
            .unwrap();
        assert!(s.features.contains(&"a".to_string()));
        assert!(s.features.contains(&"b".to_string()));
    }

    #[test]
    fn scanner_merges_ignore_across_invocations() {
        let r = scan_str(
            r#"fn install(i: &mut T) {
                i.dir(source!("assets", ignore = ["*.bak"]), "a");
                i.dir(source!("assets", ignore = ["scratch"]), "b");
            }"#,
        );
        let s = r
            .install_sources
            .iter()
            .find(|s| s.path == "assets")
            .unwrap();
        assert!(s.ignore.contains(&"*.bak".to_string()));
        assert!(s.ignore.contains(&"scratch".to_string()));
    }
}