fsmon 0.4.6

Lightweight High-Performance File System Change Tracking Tool
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
use super::*;
use std::fs;
use temp_env;

fn unique_home_dir() -> PathBuf {
    use std::sync::atomic::{AtomicU64, Ordering};
    static COUNTER: AtomicU64 = AtomicU64::new(0);
    let n = COUNTER.fetch_add(1, Ordering::Relaxed);
    let id = std::process::id();
    let thread = std::thread::current().id();
    std::env::temp_dir().join(format!("fsmon_home_test_{}_{:?}_{}", id, thread, n))
}

/// Mutex to prevent concurrent env var manipulation across tests
static ENV_LOCK: std::sync::Mutex<()> = std::sync::Mutex::new(());

/// Override HOME for test isolation.
/// Uses catch_unwind to prevent mutex poisoning on panic.
fn with_isolated_home(f: impl FnOnce(&Path)) {
    let lock = ENV_LOCK.lock().unwrap();
    let dir = unique_home_dir();
    let _ = fs::remove_dir_all(&dir);
    let home_val = dir.to_string_lossy().to_string();

    temp_env::with_vars(
        [
            ("HOME", Some(home_val.as_str())),
            ("XDG_CONFIG_HOME", None::<&str>),
            ("SUDO_UID", None::<&str>),
        ],
        || {
            let result = std::panic::catch_unwind(std::panic::AssertUnwindSafe(|| f(&dir)));
            let _ = fs::remove_dir_all(&dir);
            if let Err(e) = result {
                std::panic::resume_unwind(e);
            }
        },
    );

    drop(lock);
}

#[test]
fn test_load_returns_default_when_no_file() {
    with_isolated_home(|_| {
        let cfg = Config::load().unwrap();
        assert_eq!(
            cfg.monitored.path.to_string_lossy(),
            "~/.local/share/fsmon/monitored.jsonl"
        );
        assert_eq!(
            cfg.logging.path,
            Some(PathBuf::from("~/.local/state/fsmon"))
        );
        assert_eq!(cfg.socket.path.to_string_lossy(), "/tmp/fsmon-<UID>.sock");
    });
}

#[test]
fn test_load_reads_existing_file() {
    with_isolated_home(|_| {
        // Write a config file
        let config_path = Config::path();
        fs::create_dir_all(config_path.parent().unwrap()).unwrap();
        let content = r#"[monitored]
path = "/custom/monitored.jsonl"

[logging]
path = "/custom/logs"

[socket]
path = "/tmp/custom.sock"
"#;
        fs::write(&config_path, content).unwrap();

        let cfg = Config::load().unwrap();
        assert_eq!(cfg.monitored.path, PathBuf::from("/custom/monitored.jsonl"));
        assert_eq!(cfg.logging.path, Some(PathBuf::from("/custom/logs")));
        assert_eq!(cfg.socket.path, PathBuf::from("/tmp/custom.sock"));
    });
}

#[test]
fn test_load_invalid_config_returns_error_for_bad_toml() {
    with_isolated_home(|_| {
        let config_path = Config::path();
        fs::create_dir_all(config_path.parent().unwrap()).unwrap();
        // Write invalid TOML (not comment-only)
        fs::write(&config_path, "garbage [[[").unwrap();

        // Should error
        assert!(Config::load().is_err());

        // File should be untouched
        let content = fs::read_to_string(&config_path).unwrap();
        assert_eq!(content.trim(), "garbage [[[");
    });
}

#[test]
fn test_load_empty_file_returns_defaults() {
    with_isolated_home(|_| {
        let config_path = Config::path();
        fs::create_dir_all(config_path.parent().unwrap()).unwrap();
        // Empty file or comment-only → return defaults (same as no file)
        fs::write(&config_path, "").unwrap();
        let cfg = Config::load().unwrap();
        assert_eq!(
            cfg.monitored.path.to_string_lossy(),
            "~/.local/share/fsmon/monitored.jsonl"
        );
    });
}

#[test]
fn test_resolve_paths_expands_tilde_and_uid() {
    with_isolated_home(|home| {
        let mut cfg = Config::default();
        // Set log path explicitly for test (default is None now)
        cfg.logging.path = Some(PathBuf::from("~/.local/state/fsmon"));
        cfg.resolve_paths().unwrap();

        let home_str = home.to_string_lossy();
        assert!(
            cfg.monitored.path.to_string_lossy().starts_with(&*home_str),
            "monitored.path should start with home dir: {} vs {}",
            cfg.monitored.path.display(),
            home_str
        );
        assert!(
            cfg.logging
                .path
                .as_ref()
                .unwrap()
                .to_string_lossy()
                .starts_with(&*home_str),
            "logging.path should start with home dir"
        );
        assert!(
            cfg.socket.path.to_string_lossy().contains("/tmp/fsmon-"),
            "socket should contain /tmp/fsmon-"
        );
        assert!(
            !cfg.socket.path.to_string_lossy().contains("<UID>"),
            "socket should not contain <UID> placeholder"
        );
    });
}

#[test]
fn test_config_path_uses_xdg_config_home() {
    let _lock = ENV_LOCK.lock().unwrap();

    temp_env::with_vars(
        [
            ("XDG_CONFIG_HOME", Some("/custom/xdg/config")),
            ("HOME", Some("/home/test")),
        ],
        || {
            let path = Config::path();
            assert!(
                path.to_string_lossy()
                    .contains("/custom/xdg/config/fsmon/fsmon.toml")
            );

            temp_env::with_var_unset("XDG_CONFIG_HOME", || {
                let path = Config::path();
                assert!(
                    path.to_string_lossy()
                        .contains("/home/test/.config/fsmon/fsmon.toml")
                );
            });
        },
    );
}

#[test]
fn test_init_dirs_creates_directories() {
    with_isolated_home(|home| {
        Config::init_dirs().unwrap();

        let log_dir = home.join(".local/state/fsmon");
        let monitored_dir = home.join(".local/share/fsmon");
        let config_file = home.join(".config/fsmon/fsmon.toml");

        assert!(
            !log_dir.exists(),
            "log dir should not exist (init only creates config)"
        );
        assert!(
            !monitored_dir.exists(),
            "monitored dir should not exist (init only creates config)"
        );
        assert!(
            config_file.exists(),
            "config file should be created by init"
        );
        // Config should load from the new file (comment-only → defaults)
        let cfg = Config::load().unwrap();
        assert_eq!(
            cfg.monitored.path.to_string_lossy(),
            "~/.local/share/fsmon/monitored.jsonl"
        );
    });
}

#[test]
fn test_init_dirs_uses_config_when_present() {
    with_isolated_home(|home| {
        let config_path = Config::path();
        fs::create_dir_all(config_path.parent().unwrap()).unwrap();
        // Write config with default paths
        fs::write(
            &config_path,
            r#"[monitored]
path = "~/.local/share/fsmon/monitored.jsonl"

[logging]
path = "~/.local/state/fsmon"

[socket]
path = "/tmp/fsmon-<UID>.sock"
"#,
        )
        .unwrap();

        Config::init_dirs().unwrap();

        let log_dir = home.join(".local/state/fsmon");
        let monitored_dir = home.join(".local/share/fsmon");
        assert!(
            !log_dir.exists(),
            "log dir should not exist (init only creates config)"
        );
        assert!(
            !monitored_dir.exists(),
            "monitored dir should not exist (init only creates config)"
        );
    });
}

#[test]
fn test_init_dirs_uses_custom_config_paths() {
    with_isolated_home(|home| {
        let config_path = Config::path();
        fs::create_dir_all(config_path.parent().unwrap()).unwrap();
        let custom_log = home.join("my_logs");
        let custom_monitored_dir = home.join("my_data");
        let _custom_monitored_file = custom_monitored_dir.join("paths.jsonl");
        let content = format!(
            r#"[monitored]
path = "{}/my_data/paths.jsonl"

[logging]
path = "{}/my_logs"

[socket]
path = "/tmp/test.sock"
"#,
            home.to_string_lossy(),
            home.to_string_lossy(),
        );
        fs::write(&config_path, content).unwrap();

        Config::init_dirs().unwrap();

        assert!(!custom_log.exists(), "init only creates config, not dirs");
        assert!(
            !custom_monitored_dir.exists(),
            "init only creates config, not dirs"
        );
    });
}

#[test]
fn test_resolve_uid_no_sudo() {
    // Without SUDO_UID, resolve_uid returns our own UID
    let _lock = ENV_LOCK.lock().unwrap();
    temp_env::with_var_unset("SUDO_UID", || {
        let uid = resolve_uid();
        assert_eq!(uid, nix::unistd::geteuid().as_raw());
    });
}

#[test]
fn test_expand_tilde_basic() {
    assert_eq!(
        expand_tilde(Path::new("~/foo/bar"), "/home/user"),
        PathBuf::from("/home/user/foo/bar")
    );
    assert_eq!(
        expand_tilde(Path::new("~"), "/home/user"),
        PathBuf::from("/home/user")
    );
    assert_eq!(
        expand_tilde(Path::new("/absolute/path"), "/home/user"),
        PathBuf::from("/absolute/path")
    );
}

#[test]
fn test_cache_config_defaults() {
    let r = ResolvedCacheConfig::default();
    assert_eq!(r.dir_capacity, crate::fid_parser::DIR_CACHE_CAP);
    assert_eq!(r.dir_ttl_secs, crate::fid_parser::DIR_CACHE_TTL_SECS);
    assert_eq!(r.file_size_capacity, crate::fid_parser::FILE_SIZE_CACHE_CAP);
    assert_eq!(r.proc_ttl_secs, crate::proc_cache::PROC_CACHE_TTL_SECS);
    assert_eq!(r.buffer_size, 4096 * 8);
    assert_eq!(r.stats_interval_secs, 60);
}

#[test]
fn test_cache_config_resolve_with_cli_override() {
    // Config empty, CLI overrides → CLI values win
    let cfg = CacheConfig {
        dir_capacity: None,
        dir_ttl_secs: None,
        file_size_capacity: None,
        proc_ttl_secs: None,
        stats_interval_secs: None,
        channel_capacity: None,
        subscribe_buf: None,
    };
    let cli = CliCacheOverride {
        dir_capacity: Some(50000),
        dir_ttl_secs: Some(7200),
        file_size_capacity: Some(5000),
        proc_ttl_secs: Some(300),
        stats_interval_secs: Some(30),
        buffer_size: Some(65536),
        channel_capacity: None,
        subscribe_buf: None,
    };
    let r = cfg.resolve_with_cli(&cli);
    assert_eq!(r.dir_capacity, 50000);
    assert_eq!(r.dir_ttl_secs, 7200);
    assert_eq!(r.file_size_capacity, 5000);
    assert_eq!(r.proc_ttl_secs, 300);
    assert_eq!(r.stats_interval_secs, 30);
    assert_eq!(r.buffer_size, 65536);
}

#[test]
fn test_cache_config_resolve_config_over_default() {
    // Config has values, CLI empty → config values win
    let cfg = CacheConfig {
        dir_capacity: Some(200000),
        dir_ttl_secs: None,
        file_size_capacity: Some(20000),
        proc_ttl_secs: None,
        stats_interval_secs: None,
        channel_capacity: None,
        subscribe_buf: None,
    };
    let cli = CliCacheOverride::default();
    let r = cfg.resolve_with_cli(&cli);
    assert_eq!(r.dir_capacity, 200000);
    assert_eq!(r.dir_ttl_secs, crate::fid_parser::DIR_CACHE_TTL_SECS);
    assert_eq!(r.file_size_capacity, 20000);
    assert_eq!(r.proc_ttl_secs, crate::proc_cache::PROC_CACHE_TTL_SECS);
}

#[test]
fn test_cache_config_cli_highest_priority() {
    // Both config and CLI have values → CLI wins
    let cfg = CacheConfig {
        dir_capacity: Some(50000),
        dir_ttl_secs: Some(100),
        file_size_capacity: Some(500),
        proc_ttl_secs: Some(50),
        stats_interval_secs: None,
        channel_capacity: None,
        subscribe_buf: None,
    };
    let cli = CliCacheOverride {
        dir_capacity: Some(99999),
        dir_ttl_secs: None,
        file_size_capacity: Some(999),
        proc_ttl_secs: None,
        stats_interval_secs: Some(120),
        buffer_size: None,
        channel_capacity: None,
        subscribe_buf: None,
    };
    let r = cfg.resolve_with_cli(&cli);
    assert_eq!(r.dir_capacity, 99999); // CLI wins
    assert_eq!(r.dir_ttl_secs, 100); // Config (CLI didn't set)
    assert_eq!(r.file_size_capacity, 999); // CLI wins
    assert_eq!(r.proc_ttl_secs, 50); // Config (CLI didn't set)
}

#[test]
fn test_cache_config_toml_parsing() {
    // Verify that the TOML config can be parsed with [cache] section
    let toml_str = r#"
[monitored]
path = "/tmp/test.jsonl"

[logging]
path = "/tmp/logs"

[socket]
path = "/tmp/sock"

[cache]
dir_capacity = 123456
dir_ttl_secs = 7200
file_size_capacity = 5000
proc_ttl_secs = 300
"#;
    let cfg: Config = toml::from_str(toml_str).unwrap();
    let cache = cfg.cache.expect("cache section should be parsed");
    assert_eq!(cache.dir_capacity, Some(123456));
    assert_eq!(cache.dir_ttl_secs, Some(7200));
    assert_eq!(cache.file_size_capacity, Some(5000));
    assert_eq!(cache.proc_ttl_secs, Some(300));
}