forjar 1.4.2

Rust-native Infrastructure as Code — bare-metal first, BLAKE3 state, provenance tracing
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
#![allow(unused)]
//! Tests: Coverage for transport, notify (part 1 of 3).
//! Covers: exec_pepita, ensure_namespace, cleanup_namespace, send_apply_notifications.
use std::io::Write;
use std::path::{Path, PathBuf};

use super::dispatch_notify::*;
use super::doctor::*;
use super::drift::*;
use super::helpers::*;
use super::observe::*;
use super::status_convergence::*;
use super::test_fixtures::*;
use crate::core::{parser, state, types};
use crate::transport;

#[cfg(test)]
mod tests {
    use super::*;
    use std::collections::HashMap;

    fn write_temp_config(yaml: &str) -> tempfile::NamedTempFile {
        let mut f = tempfile::NamedTempFile::new().unwrap();
        f.write_all(yaml.as_bytes()).unwrap();
        f.flush().unwrap();
        f
    }

    fn write_yaml(dir: &Path, name: &str, content: &str) -> PathBuf {
        let p = dir.join(name);
        if let Some(parent) = p.parent() {
            std::fs::create_dir_all(parent).unwrap();
        }
        std::fs::write(&p, content).unwrap();
        p
    }

    fn minimal_config_yaml() -> &'static str {
        r#"version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  f1:
    type: file
    machine: local
    path: /tmp/forjar-cov-transport-test.txt
    content: "hello"
"#
    }

    fn empty_notify_opts<'a>() -> NotifyOpts<'a> {
        NotifyOpts {
            slack: None,
            email: None,
            webhook: None,
            teams: None,
            discord: None,
            opsgenie: None,
            datadog: None,
            newrelic: None,
            grafana: None,
            victorops: None,
            msteams_adaptive: None,
            incident: None,
            sns: None,
            pubsub: None,
            eventbridge: None,
            kafka: None,
            azure_servicebus: None,
            gcp_pubsub_v2: None,
            rabbitmq: None,
            nats: None,
            mqtt: None,
            redis: None,
            amqp: None,
            stomp: None,
            zeromq: None,
            grpc: None,
            sqs: None,
            mattermost: None,
            ntfy: None,
            pagerduty: None,
            discord_webhook: None,
            teams_webhook: None,
            slack_blocks: None,
            custom_template: None,
            custom_webhook: None,
            custom_headers: None,
            custom_json: None,
            custom_filter: None,
            custom_retry: None,
            custom_transform: None,
            custom_batch: None,
            custom_deduplicate: None,
            custom_throttle: None,
            custom_aggregate: None,
            custom_priority: None,
            custom_routing: None,
            custom_dedup_window: None,
            custom_rate_limit: None,
            custom_backoff: None,
            custom_circuit_breaker: None,
            custom_dead_letter: None,
            custom_escalation: None,
            custom_correlation: None,
            custom_sampling: None,
            custom_digest: None,
            custom_severity_filter: None,
        }
    }

    fn make_local_machine() -> types::Machine {
        types::Machine {
            hostname: "localhost".to_string(),
            addr: "127.0.0.1".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: None,
            container: None,
            pepita: None,
            cost: 0,
            allowed_operators: vec![],
        }
    }

    fn make_ssh_machine() -> types::Machine {
        types::Machine {
            hostname: "remote".to_string(),
            addr: "10.99.99.99".to_string(),
            user: "deploy".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: None,
            container: None,
            pepita: None,
            cost: 0,
            allowed_operators: vec![],
        }
    }

    // ===================================================================
    // transport/pepita.rs — exec_pepita
    // ===================================================================

    #[test]
    fn test_exec_pepita_no_config_returns_error() {
        let machine = types::Machine {
            hostname: "test-ns".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: None,
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::exec_pepita(&machine, "echo ok");
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("no pepita config"));
    }

    #[test]
    fn test_exec_pepita_missing_pidfile_error() {
        let machine = types::Machine {
            hostname: "cov-nonexistent-ns".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "debootstrap:jammy".to_string(),
                memory_mb: None,
                cpus: None,
                network: "host".to_string(),
                filesystem: "bind".to_string(),
                ephemeral: false,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::exec_pepita(&machine, "echo hi");
        assert!(result.is_err());
        let err = result.unwrap_err();
        assert!(err.contains("pidfile") || err.contains("cannot read"));
    }

    #[test]
    fn test_exec_pepita_isolated_network_missing_pidfile() {
        let machine = types::Machine {
            hostname: "cov-isolated-ns".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "debootstrap:jammy".to_string(),
                memory_mb: Some(512),
                cpus: Some(2.0),
                network: "isolated".to_string(),
                filesystem: "overlay".to_string(),
                ephemeral: true,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::exec_pepita(&machine, "echo hi");
        assert!(result.is_err());
        let err = result.unwrap_err();
        assert!(
            err.contains("pidfile") || err.contains("cannot read"),
            "expected pidfile error, got: {err}"
        );
    }

    #[test]
    fn test_exec_pepita_empty_script() {
        let machine = types::Machine {
            hostname: "cov-empty-script".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "noop".to_string(),
                memory_mb: None,
                cpus: None,
                network: "host".to_string(),
                filesystem: "bind".to_string(),
                ephemeral: false,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        // Will fail reading the pidfile, but exercises the config extraction path
        let result = transport::pepita::exec_pepita(&machine, "");
        assert!(result.is_err());
    }

    // ===================================================================
    // transport/pepita.rs — ensure_namespace (error paths)
    // ===================================================================

    #[test]
    fn test_ensure_namespace_no_config_returns_error() {
        let machine = types::Machine {
            hostname: "test-ns-no-cfg".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: None,
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::ensure_namespace(&machine);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("no pepita config"));
    }

    #[test]
    fn test_ensure_namespace_host_network() {
        // This will either succeed (if root) or fail with permission error
        let machine = types::Machine {
            hostname: "cov-ensure-host".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "debootstrap:jammy".to_string(),
                memory_mb: None,
                cpus: None,
                network: "host".to_string(),
                filesystem: "bind".to_string(),
                ephemeral: false,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        // In CI/non-root, this will fail at creating /run/forjar or unshare
        let result = transport::pepita::ensure_namespace(&machine);
        // We just exercise the code path; it's OK if it errors in non-root env
        let _ = result;
    }

    #[test]
    fn test_ensure_namespace_isolated_with_limits() {
        let machine = types::Machine {
            hostname: "cov-ensure-limits".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "debootstrap:jammy".to_string(),
                memory_mb: Some(256),
                cpus: Some(1.5),
                network: "isolated".to_string(),
                filesystem: "overlay".to_string(),
                ephemeral: true,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::ensure_namespace(&machine);
        // exercise code path — may fail without root
        let _ = result;
    }

    #[test]
    fn test_ensure_namespace_no_memory_no_cpus() {
        let machine = types::Machine {
            hostname: "cov-ensure-nolimits".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "noop".to_string(),
                memory_mb: None,
                cpus: None,
                network: "host".to_string(),
                filesystem: "bind".to_string(),
                ephemeral: false,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::ensure_namespace(&machine);
        let _ = result;
    }

    // ===================================================================
    // transport/pepita.rs — cleanup_namespace
    // ===================================================================

    #[test]
    fn test_cleanup_namespace_no_config() {
        let machine = types::Machine {
            hostname: "cleanup-no-cfg".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: None,
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::cleanup_namespace(&machine);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("no pepita config"));
    }

    #[test]
    fn test_cleanup_namespace_nonexistent_succeeds() {
        let machine = types::Machine {
            hostname: "cov-cleanup-nonexist".to_string(),
            addr: "pepita".to_string(),
            user: "root".to_string(),
            arch: "x86_64".to_string(),
            ssh_key: None,
            roles: vec![],
            transport: Some("pepita".to_string()),
            container: None,
            pepita: Some(types::PepitaTransportConfig {
                rootfs: "noop".to_string(),
                memory_mb: None,
                cpus: None,
                network: "host".to_string(),
                filesystem: "bind".to_string(),
                ephemeral: false,
            }),
            cost: 0,
            allowed_operators: vec![],
        };
        let result = transport::pepita::cleanup_namespace(&machine);
        assert!(result.is_ok());
    }

    // ===================================================================
    // dispatch_notify.rs — send_custom_retry_notification via send_apply_notifications
    // ===================================================================

    #[test]
    fn test_send_apply_notifications_all_none_noop() {
        let opts = empty_notify_opts();
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/forjar.yaml"));
        // No panic = success; all None means no notifications sent
    }

    #[test]
    fn test_send_apply_notifications_custom_retry_success() {
        let mut opts = empty_notify_opts();
        // Set custom_retry with an unreachable URL — the retry code path runs
        opts.custom_retry = Some("http://127.0.0.1:1/noop|retries:1");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/test.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_retry_failure() {
        let mut opts = empty_notify_opts();
        opts.custom_retry = Some("http://127.0.0.1:1/noop|retries:2");
        let result: Result<(), String> = Err("apply failed".to_string());
        send_apply_notifications(&opts, &result, Path::new("/tmp/fail.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_retry_bad_retries() {
        let mut opts = empty_notify_opts();
        // Missing retries value — defaults to 3
        opts.custom_retry = Some("http://127.0.0.1:1/noop|retries:abc");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/bad.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_retry_no_pipe() {
        let mut opts = empty_notify_opts();
        // No pipe separator — parts.len() != 2, early return
        opts.custom_retry = Some("http://127.0.0.1:1/noop");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/nopipe.yaml"));
    }

    // ===================================================================
    // dispatch_notify.rs — send_custom_headers_notification via send_apply_notifications
    // ===================================================================

    #[test]
    fn test_send_apply_notifications_custom_headers_success() {
        let mut opts = empty_notify_opts();
        opts.custom_headers = Some("http://127.0.0.1:1/noop|X-Token:abc|X-Source:forjar");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/headers.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_headers_failure_result() {
        let mut opts = empty_notify_opts();
        opts.custom_headers = Some("http://127.0.0.1:1/noop|Authorization:Bearer tok123");
        let result: Result<(), String> = Err("deploy failed".to_string());
        send_apply_notifications(&opts, &result, Path::new("/tmp/hdr-fail.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_headers_no_extra_headers() {
        let mut opts = empty_notify_opts();
        // URL only, no extra headers after the pipe
        opts.custom_headers = Some("http://127.0.0.1:1/endpoint");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/no-hdr.yaml"));
    }

    #[test]
    fn test_send_apply_notifications_custom_headers_empty() {
        let mut opts = empty_notify_opts();
        opts.custom_headers = Some("");
        let result: Result<(), String> = Ok(());
        send_apply_notifications(&opts, &result, Path::new("/tmp/empty-hdr.yaml"));
    }
}