hoard 0.6.1

Hoard backups of files across your filesystem into one location.
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
use futures::TryStreamExt;
use hoard::hoard_item::HoardItem;
use hoard::newtypes::PileName;
use hoard::paths::{HoardPath, RelativePath, SystemPath};
use rand::RngCore;
use sha2::digest::generic_array::GenericArray;
use sha2::digest::OutputSizeUser;
use sha2::{Digest, Sha256};
use std::collections::HashMap;
use std::ops::{Deref, DerefMut};
use std::path::{Path, PathBuf};
use tokio::fs;
use tokio_stream::wrappers::ReadDirStream;

use super::tester::Tester;

pub const HOARD_ANON_DIR: &str = "anon_dir";
pub const HOARD_ANON_FILE: &str = "anon_file";
pub const HOARD_NAMED: &str = "named";
pub const HOARD_NAMED_FILE: &str = "file";
pub const HOARD_NAMED_DIR1: &str = "dir1";
pub const HOARD_NAMED_DIR2: &str = "dir2";
pub const DIR_FILE_1: &str = "1";
pub const DIR_FILE_2: &str = "2";
pub const DIR_FILE_3: &str = "3";

pub const BASE_CONFIG: &str = r#"
# Using weird table-array syntax to make converting from TOML->YAML for tests easier.
# Using inline {} tables uses a custom TOML type that does not translate correctly
# NOTE: this is only for testing. Inline tables work fine with Hoard

exclusivity = [
    ["first", "second"],
    ["unix", "windows"]
]

[envs]
[envs.first]
[[envs.first.env]]
    var = "USE_ENV"
    expected = "1"
[envs.second]
[[envs.second.env]]
    var = "USE_ENV"
    expected = "2"
[envs.windows]
    os = ["windows"]
[[envs.windows.env]]
    var = "HOARD_TMP"
[envs.unix]
    os = ["linux", "macos"]
[[envs.unix.env]]
    var = "HOME"

[config]
    ignore = ["global*"]

[hoards]
[hoards.anon_dir]
    "unix|first"  = "${HOME}/first_anon_dir"
    "unix|second" = "${HOME}/second_anon_dir"
    "windows|first"  = "${HOARD_TMP}/first_anon_dir"
    "windows|second" = "${HOARD_TMP}/second_anon_dir"
[hoards.anon_file]
    "unix|first"  = "${HOME}/first_anon_file"
    "unix|second" = "${HOME}/second_anon_file"
    "windows|first"  = "${HOARD_TMP}/first_anon_file"
    "windows|second" = "${HOARD_TMP}/second_anon_file"
[hoards.named]
    [hoards.named.config]
        ignore = ["*hoard*"]
    [hoards.named.file]
        "unix|first"  = "${HOME}/first_named_file"
        "unix|second" = "${HOME}/second_named_file"
        "windows|first"  = "${HOARD_TMP}/first_named_file"
        "windows|second" = "${HOARD_TMP}/second_named_file"
    [hoards.named.dir1]
        "unix|first"  = "${HOME}/first_named_dir1"
        "unix|second" = "${HOME}/second_named_dir1"
        "windows|first"  = "${HOARD_TMP}/first_named_dir1"
        "windows|second" = "${HOARD_TMP}/second_named_dir1"
    [hoards.named.dir1.config]
        ignore = ["*pile*", ".hidden"]
    [hoards.named.dir2]
        "unix|first"  = "${HOME}/first_named_dir2"
        "unix|second" = "${HOME}/second_named_dir2"
        "windows|first"  = "${HOARD_TMP}/first_named_dir2"
        "windows|second" = "${HOARD_TMP}/second_named_dir2"
    [hoards.named.dir2.config]
        ignore = ["**/.hidden"]
"#;

pub struct DefaultConfigTester {
    tester: Tester,
    is_first_env: Option<bool>,
}

impl AsRef<Tester> for DefaultConfigTester {
    fn as_ref(&self) -> &Tester {
        &self.tester
    }
}

impl Deref for DefaultConfigTester {
    type Target = Tester;
    fn deref(&self) -> &Self::Target {
        &self.tester
    }
}

impl DerefMut for DefaultConfigTester {
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.tester
    }
}

impl DefaultConfigTester {
    pub async fn new() -> Self {
        Self::with_log_level(tracing::Level::INFO).await
    }

    pub async fn with_log_level(log_level: tracing::Level) -> Self {
        Self {
            tester: Tester::with_log_level(BASE_CONFIG, log_level).await,
            is_first_env: None,
        }
    }

    pub fn use_first_env(&mut self) {
        std::env::set_var("USE_ENV", "1");
        self.is_first_env = Some(true);
        self.reset_config(BASE_CONFIG);
    }

    pub fn use_second_env(&mut self) {
        std::env::set_var("USE_ENV", "2");
        self.is_first_env = Some(false);
        self.reset_config(BASE_CONFIG);
    }

    pub fn unset_env(&mut self) {
        std::env::remove_var("USE_ENV");
        self.is_first_env = None;
        self.reset_config(BASE_CONFIG);
    }

    fn is_first_env(&self) -> bool {
        self.is_first_env.expect("USE_ENV must be set")
    }

    fn file_prefix(&self) -> &'static str {
        if self.is_first_env() {
            "first_"
        } else {
            "second_"
        }
    }

    pub fn anon_file(&self) -> HoardItem {
        let system_path = SystemPath::try_from(self.home_dir().join(format!(
            "{}{}",
            self.file_prefix(),
            HOARD_ANON_FILE
        )))
        .unwrap();
        let hoard_path =
            HoardPath::try_from(self.data_dir().join("hoards").join(HOARD_ANON_FILE)).unwrap();
        HoardItem::new(
            PileName::anonymous(),
            hoard_path,
            system_path,
            RelativePath::none(),
        )
    }

    pub fn anon_dir(&self) -> HoardItem {
        let system_path = SystemPath::try_from(self.home_dir().join(format!(
            "{}{}",
            self.file_prefix(),
            HOARD_ANON_DIR
        )))
        .unwrap();
        let hoard_path =
            HoardPath::try_from(self.data_dir().join("hoards").join(HOARD_ANON_DIR)).unwrap();
        HoardItem::new(
            PileName::anonymous(),
            hoard_path,
            system_path,
            RelativePath::none(),
        )
    }

    pub fn named_file(&self) -> HoardItem {
        let system_path = SystemPath::try_from(self.home_dir().join(format!(
            "{}named_{}",
            self.file_prefix(),
            HOARD_NAMED_FILE
        )))
        .unwrap();
        let hoard_path = HoardPath::try_from(
            self.data_dir()
                .join("hoards")
                .join(HOARD_NAMED)
                .join(HOARD_NAMED_FILE),
        )
        .unwrap();
        HoardItem::new(
            HOARD_NAMED_FILE.parse().unwrap(),
            hoard_path,
            system_path,
            RelativePath::none(),
        )
    }

    pub fn named_dir1(&self) -> HoardItem {
        let system_path = SystemPath::try_from(self.home_dir().join(format!(
            "{}named_{}",
            self.file_prefix(),
            HOARD_NAMED_DIR1
        )))
        .unwrap();
        let hoard_path = HoardPath::try_from(
            self.data_dir()
                .join("hoards")
                .join(HOARD_NAMED)
                .join(HOARD_NAMED_DIR1),
        )
        .unwrap();
        HoardItem::new(
            HOARD_NAMED_DIR1.parse().unwrap(),
            hoard_path,
            system_path,
            RelativePath::none(),
        )
    }

    pub fn named_dir2(&self) -> HoardItem {
        let system_path = SystemPath::try_from(self.home_dir().join(format!(
            "{}named_{}",
            self.file_prefix(),
            HOARD_NAMED_DIR2
        )))
        .unwrap();
        let hoard_path = HoardPath::try_from(
            self.data_dir()
                .join("hoards")
                .join(HOARD_NAMED)
                .join(HOARD_NAMED_DIR2),
        )
        .unwrap();
        HoardItem::new(
            HOARD_NAMED_DIR2.parse().unwrap(),
            hoard_path,
            system_path,
            RelativePath::none(),
        )
    }

    fn file_in_hoard_dir(dir: &HoardItem, file: RelativePath) -> HoardItem {
        HoardItem::new(
            dir.pile_name().clone(),
            dir.hoard_prefix().clone(),
            dir.system_prefix().clone(),
            file,
        )
    }

    fn env_files_inner(&self) -> Vec<HoardItem> {
        let anon_dir = self.anon_dir();
        let named_dir1 = self.named_dir1();
        let named_dir2 = self.named_dir2();
        vec![
            self.anon_file(),
            Self::file_in_hoard_dir(
                &anon_dir,
                RelativePath::try_from(PathBuf::from(DIR_FILE_1)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &anon_dir,
                RelativePath::try_from(PathBuf::from(DIR_FILE_2)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &anon_dir,
                RelativePath::try_from(PathBuf::from(DIR_FILE_3)).unwrap(),
            ),
            self.named_file(),
            Self::file_in_hoard_dir(
                &named_dir1,
                RelativePath::try_from(PathBuf::from(DIR_FILE_1)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &named_dir1,
                RelativePath::try_from(PathBuf::from(DIR_FILE_2)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &named_dir1,
                RelativePath::try_from(PathBuf::from(DIR_FILE_3)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &named_dir2,
                RelativePath::try_from(PathBuf::from(DIR_FILE_1)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &named_dir2,
                RelativePath::try_from(PathBuf::from(DIR_FILE_2)).unwrap(),
            ),
            Self::file_in_hoard_dir(
                &named_dir2,
                RelativePath::try_from(PathBuf::from(DIR_FILE_3)).unwrap(),
            ),
        ]
    }

    pub fn first_env_files(&mut self) -> Vec<HoardItem> {
        let old_env = self.is_first_env;
        self.is_first_env = Some(true);
        let result = self.env_files_inner();
        self.is_first_env = old_env;
        result
    }

    pub fn second_env_files(&mut self) -> Vec<HoardItem> {
        let old_env = self.is_first_env;
        self.is_first_env = Some(false);
        let result = self.env_files_inner();
        self.is_first_env = old_env;
        result
    }

    pub async fn setup_files(&mut self) {
        // First Env
        let first_paths = self.first_env_files();

        // Second Env
        let second_paths = self.second_env_files();

        let paths = first_paths
            .into_iter()
            .chain(second_paths)
            .map(|file| file.system_path().to_path_buf());

        for file in paths {
            if let Some(parent) = file.parent() {
                fs::create_dir_all(parent)
                    .await
                    .expect("creating parent dirs should not fail");
            }

            super::create_file_with_random_data::<2048>(&file).await;
        }
    }

    async fn hash_file(file: &Path) -> GenericArray<u8, <Sha256 as OutputSizeUser>::OutputSize> {
        let data = fs::read(file).await.expect("file should always exist");
        Sha256::digest(data)
    }

    async fn file_contents(
        path: &Path,
        root: &Path,
    ) -> HashMap<PathBuf, GenericArray<u8, <Sha256 as OutputSizeUser>::OutputSize>> {
        let mut path_stack = vec![path.to_path_buf()];
        let mut contents_map = HashMap::new();

        while let Some(path) = path_stack.pop() {
            if path.is_file() {
                let key = path
                    .strip_prefix(root)
                    .expect("path should always have root as prefix")
                    .to_path_buf();
                contents_map.insert(key, Self::hash_file(&path).await);
            } else if path.is_dir() {
                let mut stream = fs::read_dir(path).await.unwrap();
                while let Some(entry) = stream.next_entry().await.unwrap() {
                    path_stack.push(entry.path());
                }
            } else if !path.exists() {
                panic!("{} does not exist", path.display());
            } else {
                panic!("{} exists but is not a file or directory", path.display());
            }
        }

        contents_map
    }

    async fn assert_same_tree(left: &Path, right: &Path) {
        let left_content = Self::file_contents(left, left).await;
        let right_content = Self::file_contents(right, right).await;
        assert_eq!(
            left_content,
            right_content,
            "{} and {} do not have matching contents",
            left.display(),
            right.display()
        );
    }

    pub async fn assert_first_tree(&self) {
        let hoards_root = self.data_dir().join("hoards");
        Self::assert_same_tree(
            &self.home_dir().join("first_anon_file"),
            &hoards_root.join("anon_file"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("first_anon_dir"),
            &hoards_root.join("anon_dir"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("first_named_file"),
            &hoards_root.join("named").join("file"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("first_named_dir1"),
            &hoards_root.join("named").join("dir1"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("first_named_dir2"),
            &hoards_root.join("named").join("dir2"),
        )
        .await;
    }

    pub async fn assert_second_tree(&self) {
        let hoards_root = self.data_dir().join("hoards");
        Self::assert_same_tree(
            &self.home_dir().join("second_anon_file"),
            &hoards_root.join("anon_file"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("second_anon_dir"),
            &hoards_root.join("anon_dir"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("second_named_file"),
            &hoards_root.join("named").join("file"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("second_named_dir1"),
            &hoards_root.join("named").join("dir1"),
        )
        .await;
        Self::assert_same_tree(
            &self.home_dir().join("second_named_dir2"),
            &hoards_root.join("named").join("dir2"),
        )
        .await;
    }
}