forjar 1.6.1

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
//! FJ-132: Integration tests (part 1).

use super::test_fixtures::*;
use super::*;

// ── FJ-132: Integration tests ──────────────────────────────

#[test]
fn test_fj132_force_apply_reconverges() {
    // Force apply should re-apply even when hash matches
    let config = local_config();
    let dir = tempfile::tempdir().unwrap();

    // First apply
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let r1 = apply(&cfg).unwrap();
    assert_eq!(r1[0].resources_converged, 1);

    // Normal re-apply should skip (unchanged)
    let r2 = apply(&cfg).unwrap();
    assert_eq!(r2[0].resources_unchanged, 1);
    assert_eq!(r2[0].resources_converged, 0);

    // Force apply should re-converge
    let force_cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: true,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let r3 = apply(&force_cfg).unwrap();
    assert_eq!(r3[0].resources_converged, 1);
    assert_eq!(r3[0].resources_unchanged, 0);

    let _ = std::fs::remove_file("/tmp/forjar-test-executor.txt");
}

#[test]
fn test_fj132_resource_filter_applies_only_matching() {
    // Resource filter should only apply the specified resource
    let output_dir = tempfile::tempdir().unwrap();
    let path_a = output_dir.path().join("filter-a.txt");
    let path_b = output_dir.path().join("filter-b.txt");
    let yaml = format!(
        r#"
version: "1.0"
name: filter-test
machines: {{}}
resources:
  file-a:
    type: file
    machine: localhost
    path: "{}"
    content: "alpha"
  file-b:
    type: file
    machine: localhost
    path: "{}"
    content: "beta"
policy:
  lock_file: true
  tripwire: false
"#,
        path_a.display(),
        path_b.display()
    );
    let config: ForjarConfig = serde_yaml_ng::from_str(&yaml).unwrap();
    let dir = tempfile::tempdir().unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: Some("file-a"),
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let results = apply(&cfg).unwrap();
    // Only file-a should be applied
    assert_eq!(results[0].resources_converged, 1);

    // Verify file-a exists but file-b doesn't
    assert!(path_a.exists(), "file-a should be created");
    assert!(
        !path_b.exists(),
        "file-b should not be created when filtered to file-a"
    );
}

#[test]
fn test_fj132_tag_filter_applies_only_tagged() {
    let output_dir = tempfile::tempdir().unwrap();
    let path_tagged = output_dir.path().join("tagged.txt");
    let path_untagged = output_dir.path().join("untagged.txt");
    let yaml = format!(
        r#"
version: "1.0"
name: tag-test
machines: {{}}
resources:
  tagged-file:
    type: file
    machine: localhost
    path: "{}"
    content: "tagged"
    tags: [web]
  untagged-file:
    type: file
    machine: localhost
    path: "{}"
    content: "untagged"
policy:
  lock_file: true
  tripwire: false
"#,
        path_tagged.display(),
        path_untagged.display()
    );
    let config: ForjarConfig = serde_yaml_ng::from_str(&yaml).unwrap();
    let dir = tempfile::tempdir().unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: Some("web"),
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let results = apply(&cfg).unwrap();
    assert_eq!(results[0].resources_converged, 1);

    assert!(path_tagged.exists(), "tagged file should be created");
    assert!(
        !path_untagged.exists(),
        "untagged file should not be created when filtered by tag"
    );
}

#[test]
fn test_fj132_apply_with_dependencies_order() {
    // Verify that dependency order is respected in actual apply
    let output_dir = tempfile::tempdir().unwrap();
    let path_first = output_dir.path().join("first.txt");
    let path_second = output_dir.path().join("second.txt");
    let path_third = output_dir.path().join("third.txt");
    let yaml = format!(
        r#"
version: "1.0"
name: dep-order
machines: {{}}
resources:
  first:
    type: file
    machine: localhost
    path: "{}"
    content: "first"
  second:
    type: file
    machine: localhost
    path: "{}"
    content: "second"
    depends_on: [first]
  third:
    type: file
    machine: localhost
    path: "{}"
    content: "third"
    depends_on: [second]
policy:
  lock_file: true
  tripwire: false
"#,
        path_first.display(),
        path_second.display(),
        path_third.display()
    );
    let config: ForjarConfig = serde_yaml_ng::from_str(&yaml).unwrap();
    let dir = tempfile::tempdir().unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let results = apply(&cfg).unwrap();
    assert_eq!(results[0].resources_converged, 3);

    // All three files should exist
    assert_eq!(
        std::fs::read_to_string(&path_first).unwrap().trim(),
        "first"
    );
    assert_eq!(
        std::fs::read_to_string(&path_second).unwrap().trim(),
        "second"
    );
    assert_eq!(
        std::fs::read_to_string(&path_third).unwrap().trim(),
        "third"
    );
}

#[test]
fn test_fj132_global_lock_written_after_apply() {
    let config = local_config();
    let dir = tempfile::tempdir().unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    apply(&cfg).unwrap();

    // Per-machine lock should exist after apply
    let machine_lock = state::load_lock(dir.path(), "local").unwrap();
    assert!(machine_lock.is_some(), "per-machine lock should exist");
    let ml = machine_lock.unwrap();
    assert!(ml.resources.contains_key("test-file"));
    assert_eq!(ml.resources["test-file"].status, ResourceStatus::Converged);

    let _ = std::fs::remove_file("/tmp/forjar-test-executor.txt");
}

#[test]
fn test_fj132_dry_run_creates_no_files() {
    let output_dir = tempfile::tempdir().unwrap();
    let path = output_dir.path().join("dry-run-no-exist.txt");
    let yaml = format!(
        r#"
version: "1.0"
name: dry-run-test
machines: {{}}
resources:
  test-file:
    type: file
    machine: localhost
    path: "{}"
    content: "should not be created"
"#,
        path.display()
    );
    let config: ForjarConfig = serde_yaml_ng::from_str(&yaml).unwrap();
    let dir = tempfile::tempdir().unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: true,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let results = apply(&cfg).unwrap();
    assert_eq!(results[0].machine, "dry-run");

    assert!(!path.exists(), "dry-run should not create files");
}

#[test]
fn test_gh97_plan_apply_equivalence() {
    // plan-apply-equivalence-v1 contract: the action set `forjar plan`
    // predicts equals the action set `forjar apply` executes for the same
    // config + state.
    let output_dir = tempfile::tempdir().unwrap();
    let file_path = output_dir.path().join("equiv.txt");
    let config = drift_config(file_path.to_str().unwrap());
    let dir = tempfile::tempdir().unwrap();

    let order = resolver::build_execution_order(&config).unwrap();

    // Fresh state: plan predicts exactly one create
    let plan1 = planner::plan(&config, &order, &HashMap::new(), None);
    assert_eq!(plan1.to_create, 1);
    assert_eq!(plan1.unchanged, 0);

    let cfg = ApplyConfig {
        config: &config,
        state_dir: dir.path(),
        force: false,
        dry_run: false,
        machine_filter: None,
        resource_filter: None,
        tag_filter: None,
        group_filter: None,
        timeout_secs: None,
        force_unlock: false,
        progress: false,
        retry: 0,
        parallel: None,
        resource_timeout: None,
        rollback_on_failure: false,
        max_parallel: None,
        trace: false,
        run_id: None,
        refresh: false,
        force_tag: None,
    };
    let r1 = apply(&cfg).unwrap();

    // Executor performed exactly what the plan predicted
    assert_eq!(r1[0].resources_converged, plan1.to_create + plan1.to_update);
    assert_eq!(r1[0].resources_unchanged, plan1.unchanged);
    assert_eq!(r1[0].resources_failed, 0);

    // Converged state: plan over the saved locks predicts zero work
    let lock = state::load_lock(dir.path(), "local").unwrap().unwrap();
    let mut locks = HashMap::new();
    locks.insert("local".to_string(), lock);
    let plan2 = planner::plan(&config, &order, &locks, None);
    assert_eq!(plan2.to_create + plan2.to_update + plan2.to_destroy, 0);
    assert_eq!(plan2.unchanged, 1);

    // Second apply executes exactly the predicted (empty) action set
    let r2 = apply(&cfg).unwrap();
    assert_eq!(r2[0].resources_converged, plan2.to_create + plan2.to_update);
    assert_eq!(r2[0].resources_unchanged, plan2.unchanged);
    assert_eq!(r2[0].resources_failed, 0);
}