dotling 0.8.0

A dotfiles management CLI — track, link, and sync your config files across machines
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
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
//! Comprehensive integration tests for the template sync/status lifecycle.
//!
//! These tests verify that template entries correctly track sync state through
//! the full lifecycle: add → sync → status → encrypt → sync → status.
//!
//! Each test creates an isolated temp environment simulating the dotling
//! directory structure (repo + ~/.dotling/). Tests manipulate `$HOME` so
//! they must run serially.

#![allow(clippy::disallowed_types)]

use std::{
    collections::HashMap,
    fs,
    path::{Path, PathBuf},
    sync::{Mutex, MutexGuard},
};

use dotling::{
    commands::encrypt::encrypt_single_entry,
    config::{DeployMethod, Entry},
    deploy::{EntryState, check_state},
    fingerprint::{FingerprintStore, WhichSide},
    template::{RenderContext, render},
};
use serial_test::serial;

// ── Shared lock for HOME-sensitive tests ──────────────────────────

#[allow(clippy::disallowed_types)]
static ENV_LOCK: Mutex<()> = Mutex::new(());

fn lock_env() -> MutexGuard<'static, ()> {
    ENV_LOCK
        .lock()
        .unwrap_or_else(std::sync::PoisonError::into_inner)
}

// ── Test environment ──────────────────────────────────────────────

struct TestEnv {
    home: PathBuf,
    repo: PathBuf,
    original_home: Option<String>,
    _guard: MutexGuard<'static, ()>,
}

impl TestEnv {
    fn new() -> Self {
        let guard = lock_env();
        let tmp = tempfile::tempdir().unwrap();
        let home = tmp.path().join("home");
        let repo = tmp.path().join("repo");
        fs::create_dir_all(&home).unwrap();
        fs::create_dir_all(&repo).unwrap();

        let original_home = std::env::var("HOME").ok();
        unsafe { std::env::set_var("HOME", &home) };

        // Register the repo in ~/.dotling/state.toml
        dotling::store::set_repo_root(&repo).unwrap();

        Self {
            home,
            repo,
            original_home,
            _guard: guard,
        }
    }

    fn dotling_dir(&self) -> PathBuf {
        self.home.join(".dotling")
    }

    fn fp_path(&self) -> PathBuf {
        self.dotling_dir().join("fingerprints.toml")
    }

    #[allow(clippy::unused_self)]
    fn make_entry(&self, source: &str, target: &str, template: bool) -> Entry {
        Entry {
            source: source.into(),
            target: target.into(),
            method: Some(DeployMethod::Copy),
            encrypted: false,
            directory: false,
            template,
            os: None,
            permissions: None,
            before: None,
            after: None,
        }
    }

    fn write_template(&self, rel_path: &str, content: &str) {
        let path = self.repo.join(rel_path);
        fs::create_dir_all(path.parent().unwrap()).unwrap();
        fs::write(&path, content).unwrap();
    }

    fn render_template(&self, entry: &Entry) -> String {
        let source_path = self.repo.join(&entry.source);
        let template_text = fs::read_to_string(&source_path).unwrap();
        let ctx = RenderContext {
            builtins: HashMap::from([
                ("hostname".into(), "testhost".into()),
                ("username".into(), "testuser".into()),
                ("os".into(), "macos".into()),
                ("arch".into(), "aarch64".into()),
                ("home".into(), self.home.to_string_lossy().into_owned()),
                ("repo".into(), self.repo.to_string_lossy().into_owned()),
            ]),
            vars: Vec::new(),
            env: HashMap::new(),
        };
        render(&template_text, &ctx, &entry.source).unwrap()
    }

    fn render_template_with_vars(&self, entry: &Entry, vars: Vec<(String, String)>) -> String {
        let source_path = self.repo.join(&entry.source);
        let template_text = fs::read_to_string(&source_path).unwrap();
        let ctx = RenderContext {
            builtins: HashMap::from([
                ("hostname".into(), "testhost".into()),
                ("username".into(), "testuser".into()),
                ("os".into(), "macos".into()),
                ("arch".into(), "aarch64".into()),
                ("home".into(), self.home.to_string_lossy().into_owned()),
                ("repo".into(), self.repo.to_string_lossy().into_owned()),
            ]),
            vars,
            env: HashMap::new(),
        };
        render(&template_text, &ctx, &entry.source).unwrap()
    }

    #[allow(clippy::unused_self)]
    fn deploy_rendered(&self, entry: &Entry, rendered: &str) {
        let target_path = dotling::path::expand_tilde(Path::new(&entry.target)).unwrap();
        fs::create_dir_all(target_path.parent().unwrap()).unwrap();
        fs::write(&target_path, rendered).unwrap();
    }

    fn load_fp_store(&self) -> FingerprintStore {
        FingerprintStore::load(self.fp_path())
    }

    #[allow(clippy::unused_self)]
    fn save_fp_store(&self, store: &mut FingerprintStore) {
        store.save().unwrap();
    }

    fn deploy_state(&self, entry: &Entry) -> EntryState {
        check_state(entry, &self.repo, DeployMethod::Copy)
    }

    fn encrypt_source(&self, entry: &mut Entry) {
        let key = [0x42u8; 32];
        encrypt_single_entry(entry, &self.repo, &key).unwrap();
    }

    #[allow(clippy::unused_self)]
    fn expand_target(&self, entry: &Entry) -> PathBuf {
        dotling::path::expand_tilde(Path::new(&entry.target)).unwrap()
    }
}

impl Drop for TestEnv {
    fn drop(&mut self) {
        if let Some(ref home) = self.original_home {
            unsafe { std::env::set_var("HOME", home) };
        } else {
            unsafe { std::env::remove_var("HOME") };
        }
    }
}

// ── Helpers ───────────────────────────────────────────────────────

fn source_path(env: &TestEnv, entry: &Entry) -> PathBuf {
    env.repo.join(&entry.source)
}

fn target_path(env: &TestEnv, entry: &Entry) -> PathBuf {
    env.expand_target(entry)
}

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

#[test]
#[serial]
fn template_basic_lifecycle() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# zsh config\nexport PATH=$HOME/bin:$PATH");

    // Render + deploy (simulating first sync)
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // Verify deploy state is Deployed
    assert_eq!(env.deploy_state(&entry), EntryState::Deployed);

    // Record fingerprint (what sync does after rendering)
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Reload and verify status check: should be in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_with_variables() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template(
        "shell/zshrc",
        "# config for {{ dotling.hostname }}\neditor={{ var.editor }}",
    );

    let vars = vec![("editor".into(), "vim".into())];
    let rendered = env.render_template_with_vars(&entry, vars);

    assert!(rendered.contains("testhost"), "hostname should resolve");
    assert!(rendered.contains("editor=vim"), "var.editor should resolve");

    env.deploy_rendered(&entry, &rendered);

    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_sync_no_change_is_idempotent() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# stable config");

    // First sync
    let rendered1 = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered1);
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Second sync: rendered output should match deployed file
    let rendered2 = env.render_template(&entry);
    assert_eq!(rendered1, rendered2, "rendering is deterministic");

    // Fingerprint still valid
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_source_changed_needs_sync() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# original");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Modify source in repo
    env.write_template("shell/zshrc", "# modified template");

    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::RepoOnly,
    );
}

#[test]
#[serial]
fn template_target_modified_needs_sync() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Modify deployed target file
    fs::write(target_path(&env, &entry), "# user modified").unwrap();

    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::ActualOnly,
    );
}

#[test]
#[serial]
fn template_both_changed_needs_sync() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# original");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Modify both sides
    env.write_template("shell/zshrc", "# repo modified");
    fs::write(target_path(&env, &entry), "# target modified").unwrap();

    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Both,
    );
}

#[test]
#[serial]
fn template_encrypt_then_sync_in_sync() {
    let env = TestEnv::new();
    let mut entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    // Template has no variables, so rendering is a passthrough
    env.write_template("shell/zshrc", "# my zsh config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // Record fingerprint (sync completed)
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Verify in sync before encrypt
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );

    // Encrypt the source file in-place
    env.encrypt_source(&mut entry);
    assert!(entry.encrypted);

    // After encrypt, source hash changed → who_changed should detect it
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::RepoOnly,
        "after encrypt, source hash should differ from stored fingerprint"
    );

    // Simulate sync: decrypt + render, output matches deployed file
    // (template has no variables, so rendered == original content)
    let key = [0x42u8; 32];
    let encrypted_bytes = fs::read(source_path(&env, &entry)).unwrap();
    let decrypted = dotling::crypto::decrypt_with_key(&encrypted_bytes, &key).unwrap();
    let decrypted_text = String::from_utf8(decrypted).unwrap();
    let ctx = RenderContext {
        builtins: HashMap::from([
            ("hostname".into(), "testhost".into()),
            ("username".into(), "testuser".into()),
            ("os".into(), "macos".into()),
            ("arch".into(), "aarch64".into()),
            ("home".into(), env.home.to_string_lossy().into_owned()),
            ("repo".into(), env.repo.to_string_lossy().into_owned()),
        ]),
        vars: Vec::new(),
        env: HashMap::new(),
    };
    let re_rendered = render(&decrypted_text, &ctx, &entry.source).unwrap();

    // Rendered output should match what's already deployed
    let current_target = fs::read_to_string(target_path(&env, &entry)).unwrap();
    assert_eq!(
        re_rendered, current_target,
        "re-rendered should match deployed"
    );

    // Sync updates fingerprint with new source hash (encrypted bytes)
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Now status should show in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
        "after updating fingerprint, should be in sync"
    );
}

#[test]
#[serial]
fn template_encrypt_changes_source_hash() {
    let env = TestEnv::new();
    let mut entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Confirm in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );

    // Encrypt source
    env.encrypt_source(&mut entry);

    // Stale fingerprint → RepoOnly (this was the bug)
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::RepoOnly,
        "encrypt changes source bytes, stale fingerprint should detect RepoOnly"
    );
}

#[test]
#[serial]
fn template_never_synced_needs_sync() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // No fingerprint recorded
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Unknown,
        "never-synced entry should return Unknown"
    );
}

#[test]
#[serial]
fn template_fingerprint_persists_across_reloads() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // Record and save
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Reload from disk
    let fp2 = env.load_fp_store();
    assert_eq!(
        fp2.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );

    // has_record should also work after reload
    assert!(fp2.has_record(&entry.source));
}

#[test]
#[serial]
fn encrypted_entry_fingerprint_tracking() {
    let env = TestEnv::new();
    let entry = env.make_entry("secrets/token", "~/.token", false);
    let enc_path = source_path(&env, &entry);
    let tgt_path = target_path(&env, &entry);

    // Create encrypted source and target
    let key = [0x42u8; 32];
    let encrypted = dotling::crypto::encrypt_with_key(b"secret data", &key).unwrap();
    fs::create_dir_all(enc_path.parent().unwrap()).unwrap();
    fs::write(&enc_path, &encrypted).unwrap();
    fs::create_dir_all(tgt_path.parent().unwrap()).unwrap();
    fs::write(&tgt_path, "secret data").unwrap();

    // Record via record() (encrypted path)
    let mut fp = env.load_fp_store();
    fp.record(&entry.source, &enc_path, &tgt_path).unwrap();
    env.save_fp_store(&mut fp);

    // Should be in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.is_in_sync(&entry.source, &enc_path, &tgt_path),
        Some(true)
    );

    // Modify target
    fs::write(&tgt_path, "tampered data").unwrap();

    let fp = env.load_fp_store();
    assert_eq!(
        fp.is_in_sync(&entry.source, &enc_path, &tgt_path),
        Some(false)
    );
}

#[test]
#[serial]
fn encrypted_entry_unknown_source() {
    let env = TestEnv::new();
    let enc_path = env.repo.join("secrets/token");
    let tgt_path = env.home.join(".token");

    let fp = env.load_fp_store();
    assert_eq!(fp.is_in_sync("nonexistent", &enc_path, &tgt_path), None);
}

#[test]
#[serial]
fn deploy_state_template_always_deployed() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    // Source and target have completely different content
    env.write_template("shell/zshrc", "# template source");
    let target = target_path(&env, &entry);
    fs::create_dir_all(target.parent().unwrap()).unwrap();
    fs::write(&target, "totally different content").unwrap();

    // Template entries always return Deployed (fingerprint-based comparison
    // happens separately in status/sync)
    assert_eq!(env.deploy_state(&entry), EntryState::Deployed);
}

#[test]
#[serial]
fn deploy_state_template_missing_target() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# template");
    // Target does NOT exist

    assert_eq!(env.deploy_state(&entry), EntryState::Missing);
}

#[test]
#[serial]
fn template_sync_backfills_missing_fingerprint() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // No fingerprint recorded (simulating add --template without sync)
    let fp = env.load_fp_store();
    assert!(!fp.has_record(&entry.source));
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Unknown,
    );

    // Simulate sync backfilling the fingerprint when rendered == deployed
    // (this is the fix we applied)
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Now status should show in sync
    let fp = env.load_fp_store();
    assert!(fp.has_record(&entry.source));
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_encrypt_decrypt_roundtrip_preserves_sync() {
    let env = TestEnv::new();
    let mut entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# my config\nalias ll='ls -la'");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // Sync: record fingerprint
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Encrypt
    env.encrypt_source(&mut entry);

    // Sync after encrypt: update fingerprint
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Verify in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );

    // Decrypt
    let key = [0x42u8; 32];
    dotling::commands::encrypt::decrypt_single_entry(&mut entry, &env.repo, &key).unwrap();
    assert!(!entry.encrypted);

    // After decrypt, source hash changed again
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::RepoOnly,
        "decrypt changes source bytes back to plaintext"
    );

    // Sync again: update fingerprint
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_fingerprint_survives_file_persistence() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", true);

    env.write_template("shell/zshrc", "# persistent config");
    let rendered = env.render_template(&entry);
    env.deploy_rendered(&entry, &rendered);

    // Record, save, and verify the file exists on disk
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry.source,
        &source_path(&env, &entry),
        &target_path(&env, &entry),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    assert!(env.fp_path().exists(), "fingerprints.toml should exist");

    // Read the file and verify it contains our entry
    let content = fs::read_to_string(env.fp_path()).unwrap();
    assert!(
        content.contains("shell/zshrc"),
        "fingerprints file should contain our entry"
    );
    assert!(
        content.contains("source_hash"),
        "fingerprints file should have source_hash for plain entries"
    );
    assert!(
        content.contains("target_hash"),
        "fingerprints file should have target_hash"
    );

    // Reload and verify
    let fp2 = env.load_fp_store();
    assert!(fp2.has_record(&entry.source));
    assert_eq!(
        fp2.who_changed(
            &entry.source,
            &source_path(&env, &entry),
            &target_path(&env, &entry)
        ),
        WhichSide::Neither,
    );
}

#[test]
#[serial]
fn template_multiple_entries_independent() {
    let env = TestEnv::new();

    let entry_a = env.make_entry("shell/zshrc", "~/.zshrc", true);
    let entry_b = env.make_entry("shell/bashrc", "~/.bashrc", true);

    env.write_template("shell/zshrc", "# zsh config");
    env.write_template("shell/bashrc", "# bash config");

    // Deploy both
    let rendered_a = env.render_template(&entry_a);
    let rendered_b = env.render_template(&entry_b);
    env.deploy_rendered(&entry_a, &rendered_a);
    env.deploy_rendered(&entry_b, &rendered_b);

    // Record fingerprints for both A and B
    let mut fp = env.load_fp_store();
    fp.record_plain(
        &entry_a.source,
        &source_path(&env, &entry_a),
        &target_path(&env, &entry_a),
    )
    .unwrap();
    fp.record_plain(
        &entry_b.source,
        &source_path(&env, &entry_b),
        &target_path(&env, &entry_b),
    )
    .unwrap();
    env.save_fp_store(&mut fp);

    // Both should be in sync
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry_a.source,
            &source_path(&env, &entry_a),
            &target_path(&env, &entry_a)
        ),
        WhichSide::Neither,
    );
    assert_eq!(
        fp.who_changed(
            &entry_b.source,
            &source_path(&env, &entry_b),
            &target_path(&env, &entry_b)
        ),
        WhichSide::Neither,
    );

    // Modify B's source
    env.write_template("shell/bashrc", "# modified bash config");

    // A still in sync, B is RepoOnly
    let fp = env.load_fp_store();
    assert_eq!(
        fp.who_changed(
            &entry_a.source,
            &source_path(&env, &entry_a),
            &target_path(&env, &entry_a)
        ),
        WhichSide::Neither,
    );
    assert_eq!(
        fp.who_changed(
            &entry_b.source,
            &source_path(&env, &entry_b),
            &target_path(&env, &entry_b)
        ),
        WhichSide::RepoOnly,
    );
}

#[test]
#[serial]
fn has_record_false_for_missing() {
    let env = TestEnv::new();
    let fp = env.load_fp_store();
    assert!(!fp.has_record("nonexistent/path"));
}

#[test]
#[serial]
fn deploy_state_plain_copy_modified() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", false);

    let source = source_path(&env, &entry);
    let target = target_path(&env, &entry);
    fs::create_dir_all(source.parent().unwrap()).unwrap();
    fs::create_dir_all(target.parent().unwrap()).unwrap();
    fs::write(&source, "same content").unwrap();
    fs::write(&target, "different content").unwrap();

    // Plain copy entry with different content → Modified
    assert_eq!(env.deploy_state(&entry), EntryState::Modified);
}

#[test]
#[serial]
fn deploy_state_plain_copy_deployed() {
    let env = TestEnv::new();
    let entry = env.make_entry("shell/zshrc", "~/.zshrc", false);

    let source = source_path(&env, &entry);
    let target = target_path(&env, &entry);
    fs::create_dir_all(source.parent().unwrap()).unwrap();
    fs::create_dir_all(target.parent().unwrap()).unwrap();
    fs::write(&source, "same content").unwrap();
    fs::write(&target, "same content").unwrap();

    // Plain copy entry with identical content → Deployed
    assert_eq!(env.deploy_state(&entry), EntryState::Deployed);
}