forjar 1.4.0

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
//! Tests: Coverage for apply edge cases, dispatch_lock extras (part 4).

#![allow(unused_imports)]
use super::apply::*;
use super::check::*;
use super::commands::*;
use super::destroy::*;
use super::dispatch::*;
use super::dispatch_lock::*;
use super::dispatch_misc::*;
use super::helpers::*;
use super::helpers_state::*;
use super::infra::*;
use super::observe::*;
use super::test_fixtures::*;
use crate::core::{executor, parser, planner, resolver, state, types};
use std::io::Write;
use std::path::{Path, PathBuf};

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

    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-dispatch-test.txt
    content: "hello"
"#
    }

    #[test]
    fn test_cov_apply_with_confirm_destructive_no_yes() {
        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("apply-cd.txt");
        let config_yaml = format!(
            r#"version: "1.0"
name: apply-cd
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  f1:
    type: file
    machine: local
    path: {}
    content: "confirm"
"#,
            target.display()
        );
        let config = write_yaml(dir.path(), "forjar.yaml", &config_yaml);
        let state = dir.path().join("state");
        std::fs::create_dir_all(&state).unwrap();
        // confirm_destructive=true, yes=false, dry_run=false
        // With no existing state, there are no destroy actions, so it should proceed
        // but then prompt for confirmation (which will fail on stdin)
        let result = cmd_apply(
            &config,
            &state,
            None,
            None,
            None,
            None,
            false,
            false,
            false,
            &[],
            false,
            None,
            false,
            false,
            None,
            None,
            false,
            false,
            None,
            false,
            false,
            0,
            false, // yes=false — will fail on stdin prompt
            false,
            None,
            false,
            None,
            None,
            None,
            true, // confirm_destructive
            None,
            false,
            None, // telemetry_endpoint
            false, // refresh
            None, // force_tag
        );
        // This will either fail on "aborted by user" or stdin error
        assert!(result.is_err());
    }

    #[test]
    fn test_cov_apply_with_subset_filter() {
        let dir = tempfile::tempdir().unwrap();
        let t1 = dir.path().join("subset-1.txt");
        let t2 = dir.path().join("subset-2.txt");
        let config_yaml = format!(
            r#"version: "1.0"
name: subset-test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  web-config:
    type: file
    machine: local
    path: {}
    content: "web"
  db-config:
    type: file
    machine: local
    path: {}
    content: "db"
"#,
            t1.display(),
            t2.display()
        );
        let config = write_yaml(dir.path(), "forjar.yaml", &config_yaml);
        let state = dir.path().join("state");
        std::fs::create_dir_all(&state).unwrap();
        let result = cmd_apply(
            &config,
            &state,
            None,
            None,
            None,
            None,
            false,
            false,
            false,
            &[],
            false,
            None,
            false,
            false,
            None,
            None,
            false,
            false,
            None,
            false,
            false,
            0,
            true, // yes
            false,
            None,
            false,
            None,
            None,
            Some("web*"), // subset — only web-config
            false,
            None,
            false,
            None, // telemetry_endpoint
            false, // refresh
            None, // force_tag
        );
        assert!(result.is_ok());
        assert!(t1.exists());
        assert!(!t2.exists());
        let _ = std::fs::remove_file(&t1);
    }

    #[test]
    fn test_cov_apply_with_exclude_filter() {
        let dir = tempfile::tempdir().unwrap();
        let t1 = dir.path().join("excl-1.txt");
        let t2 = dir.path().join("excl-2.txt");
        let config_yaml = format!(
            r#"version: "1.0"
name: exclude-test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  web-config:
    type: file
    machine: local
    path: {}
    content: "web"
  db-config:
    type: file
    machine: local
    path: {}
    content: "db"
"#,
            t1.display(),
            t2.display()
        );
        let config = write_yaml(dir.path(), "forjar.yaml", &config_yaml);
        let state = dir.path().join("state");
        std::fs::create_dir_all(&state).unwrap();
        let result = cmd_apply(
            &config,
            &state,
            None,
            None,
            None,
            None,
            false,
            false,
            false,
            &[],
            false,
            None,
            false,
            false,
            None,
            None,
            false,
            false,
            None,
            false,
            false,
            0,
            true, // yes
            false,
            None,
            false,
            None,
            None,
            None,
            false,
            Some("db*"), // exclude — remove db-config
            false,
            None, // telemetry_endpoint
            false, // refresh
            None, // force_tag
        );
        assert!(result.is_ok());
        assert!(t1.exists());
        assert!(!t2.exists());
        let _ = std::fs::remove_file(&t1);
    }

    #[test]
    fn test_cov_apply_subset_no_match() {
        let dir = tempfile::tempdir().unwrap();
        let config = write_yaml(dir.path(), "forjar.yaml", minimal_config_yaml());
        let state = dir.path().join("state");
        std::fs::create_dir_all(&state).unwrap();
        let result = cmd_apply(
            &config,
            &state,
            None,
            None,
            None,
            None,
            false,
            false,
            false,
            &[],
            false,
            None,
            false,
            false,
            None,
            None,
            false,
            false,
            None,
            false,
            false,
            0,
            true,
            false,
            None,
            false,
            None,
            None,
            Some("nonexistent-pattern*"), // subset that matches nothing
            false,
            None,
            false,
            None, // telemetry_endpoint
            false, // refresh
            None, // force_tag
        );
        assert!(result.is_err());
        let err = result.unwrap_err();
        assert!(err.contains("no resources match"), "got: {err}");
    }

    #[test]
    fn test_cov_apply_dry_run_json() {
        let dir = tempfile::tempdir().unwrap();
        let target = dir.path().join("dry-json.txt");
        let config_yaml = format!(
            r#"version: "1.0"
name: dry-json
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  f1:
    type: file
    machine: local
    path: {}
    content: "dry json"
"#,
            target.display()
        );
        let config = write_yaml(dir.path(), "forjar.yaml", &config_yaml);
        let state = dir.path().join("state");
        std::fs::create_dir_all(&state).unwrap();
        let result = cmd_apply(
            &config,
            &state,
            None,
            None,
            None,
            None,
            false,
            true, // dry_run
            false,
            &[],
            false,
            None,
            true, // json
            false,
            None,
            None,
            false,
            false,
            None,
            false,
            false,
            0,
            true,
            false,
            None,
            false,
            None,
            None,
            None,
            false,
            None,
            false,
            None, // telemetry_endpoint
            false, // refresh
            None, // force_tag
        );
        assert!(result.is_ok());
    }

    // ========================================================================
    // Additional edge case tests
    // ========================================================================

    #[test]
    fn test_cov_dispatch_misc_state_mv_same() {
        let dir = tempfile::tempdir().unwrap();
        let result = dispatch_misc_cmd(
            Commands::StateMv(StateMvArgs {
                old_id: "same".to_string(),
                new_id: "same".to_string(),
                state_dir: dir.path().to_path_buf(),
                machine: None,
            }),
            false,
        );
        assert!(result.is_err());
    }

    #[test]
    fn test_cov_dispatch_misc_state_rm_missing() {
        let dir = tempfile::tempdir().unwrap();
        let result = dispatch_misc_cmd(
            Commands::StateRm(StateRmArgs {
                resource_id: "missing".to_string(),
                state_dir: dir.path().to_path_buf(),
                machine: None,
                force: false,
            }),
            false,
        );
        assert!(result.is_err());
    }

}