forjar 1.4.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
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
//! FJ-216: Parallel resource execution tests, FJ-224: Trigger tests.

use super::*;

// ================================================================
// FJ-216: parallel resource execution tests
// ================================================================

#[test]
fn test_fj216_compute_resource_waves_no_deps() {
    let yaml = r#"
version: "1.0"
name: test
machines:
  m1:
    hostname: m1
    addr: 1.2.3.4
resources:
  a:
    type: file
    machine: m1
    path: /a
  b:
    type: file
    machine: m1
    path: /b
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    let waves = compute_resource_waves(&config, &["a", "b"]);
    assert_eq!(waves.len(), 1);
    assert_eq!(waves[0].len(), 2);
}

#[test]
fn test_fj216_compute_resource_waves_with_deps() {
    let yaml = r#"
version: "1.0"
name: test
machines:
  m1:
    hostname: m1
    addr: 1.2.3.4
resources:
  base:
    type: file
    machine: m1
    path: /base
  app:
    type: file
    machine: m1
    path: /app
    depends_on: [base]
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    let waves = compute_resource_waves(&config, &["base", "app"]);
    assert_eq!(waves.len(), 2);
    assert_eq!(waves[0], vec!["base"]);
    assert_eq!(waves[1], vec!["app"]);
}

#[test]
fn test_fj216_compute_resource_waves_subset() {
    let yaml = r#"
version: "1.0"
name: test
machines:
  m1:
    hostname: m1
    addr: 1.2.3.4
resources:
  a:
    type: file
    machine: m1
    path: /a
  b:
    type: file
    machine: m1
    path: /b
    depends_on: [a]
  c:
    type: file
    machine: m1
    path: /c
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    // Only compute waves for b and c (b depends on a which is outside subset)
    let waves = compute_resource_waves(&config, &["b", "c"]);
    // Both should be in wave 0 since a is not in subset
    assert_eq!(waves.len(), 1);
    assert_eq!(waves[0].len(), 2);
}

#[test]
fn test_fj216_parallel_resources_policy_default_false() {
    let policy = Policy::default();
    assert!(!policy.parallel_resources);
}

#[test]
fn test_fj216_parallel_resources_policy_yaml() {
    let yaml = r#"
version: "1.0"
name: test
machines:
  m1:
    hostname: m1
    addr: 1.2.3.4
resources: {}
policy:
  parallel_resources: true
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    assert!(config.policy.parallel_resources);
}

#[test]
fn test_fj224_trigger_forces_reapply() {
    // First apply: both config and app converge
    let dir = tempfile::tempdir().unwrap();
    let state_dir = dir.path().join("state");
    std::fs::create_dir_all(&state_dir).unwrap();

    let yaml = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  config:
    type: file
    machine: local
    path: /tmp/fj224-config.txt
    content: "v1"
  app:
    type: file
    machine: local
    path: /tmp/fj224-app.txt
    content: "app-content"
    depends_on: [config]
    triggers: [config]
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    let cfg1 = ApplyConfig {
        config: &config,
        state_dir: &state_dir,
        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(&cfg1).unwrap();
    assert_eq!(r1[0].resources_converged, 2);

    // Second apply, same config: both should be NoOp (unchanged)
    let r2 = apply(&cfg1).unwrap();
    assert_eq!(r2[0].resources_converged, 0, "no changes = no converge");
    assert_eq!(r2[0].resources_unchanged, 2);

    // Third apply: change config content → config converges → app should be triggered
    let yaml3 = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  config:
    type: file
    machine: local
    path: /tmp/fj224-config.txt
    content: "v2"
  app:
    type: file
    machine: local
    path: /tmp/fj224-app.txt
    content: "app-content"
    depends_on: [config]
    triggers: [config]
"#;
    let config3: ForjarConfig = serde_yaml_ng::from_str(yaml3).unwrap();
    let cfg3 = ApplyConfig {
        config: &config3,
        state_dir: &state_dir,
        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 r3 = apply(&cfg3).unwrap();
    // config changed → converges. app unchanged but triggers: [config] → also converges
    assert_eq!(
        r3[0].resources_converged, 2,
        "config changed + app triggered"
    );
}

#[test]
fn test_fj224_trigger_no_fire_when_dep_unchanged() {
    let dir = tempfile::tempdir().unwrap();
    let state_dir = dir.path().join("state");
    std::fs::create_dir_all(&state_dir).unwrap();

    let yaml = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  config:
    type: file
    machine: local
    path: /tmp/fj224b-config.txt
    content: "stable"
  app:
    type: file
    machine: local
    path: /tmp/fj224b-app.txt
    content: "app"
    depends_on: [config]
    triggers: [config]
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: &state_dir,
        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, 2);

    // Second apply: nothing changed, trigger should NOT fire
    let r2 = apply(&cfg).unwrap();
    assert_eq!(r2[0].resources_converged, 0);
    assert_eq!(r2[0].resources_unchanged, 2);
}

#[test]
fn test_fj224_trigger_multiple_sources() {
    let dir = tempfile::tempdir().unwrap();
    let state_dir = dir.path().join("state");
    std::fs::create_dir_all(&state_dir).unwrap();

    let yaml1 = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  db-config:
    type: file
    machine: local
    path: /tmp/fj224c-db.txt
    content: "db-v1"
  app-config:
    type: file
    machine: local
    path: /tmp/fj224c-app.txt
    content: "app-v1"
  service:
    type: file
    machine: local
    path: /tmp/fj224c-svc.txt
    content: "svc"
    depends_on: [db-config, app-config]
    triggers: [db-config, app-config]
"#;
    let config1: ForjarConfig = serde_yaml_ng::from_str(yaml1).unwrap();
    let cfg1 = ApplyConfig {
        config: &config1,
        state_dir: &state_dir,
        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(&cfg1).unwrap();
    assert_eq!(r1[0].resources_converged, 3);

    // Change only db-config → service should be triggered
    let yaml2 = yaml1.replace("db-v1", "db-v2");
    let config2: ForjarConfig = serde_yaml_ng::from_str(&yaml2).unwrap();
    let cfg2 = ApplyConfig {
        config: &config2,
        state_dir: &state_dir,
        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 r2 = apply(&cfg2).unwrap();
    // db-config changed (converged), app-config unchanged, service triggered
    assert_eq!(
        r2[0].resources_converged, 2,
        "db-config + service triggered"
    );
}

#[test]
fn test_fj224_trigger_without_depends_on() {
    // Triggers can work independently of depends_on
    let dir = tempfile::tempdir().unwrap();
    let state_dir = dir.path().join("state");
    std::fs::create_dir_all(&state_dir).unwrap();

    let yaml = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  config:
    type: file
    machine: local
    path: /tmp/fj224d-config.txt
    content: "v1"
  app:
    type: file
    machine: local
    path: /tmp/fj224d-app.txt
    content: "app"
    triggers: [config]
"#;
    let config: ForjarConfig = serde_yaml_ng::from_str(yaml).unwrap();
    let cfg = ApplyConfig {
        config: &config,
        state_dir: &state_dir,
        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, 2);

    // Note: Without depends_on, execution order is alphabetical.
    // "app" sorts before "config", so trigger won't fire because
    // config hasn't converged yet when app is processed.
    // This is correct behavior — triggers require proper ordering
    // (either via depends_on or natural sort order).

    // With depends_on, changing config triggers app
    let yaml2 = r#"
version: "1.0"
name: test
machines:
  local:
    hostname: localhost
    addr: 127.0.0.1
resources:
  config:
    type: file
    machine: local
    path: /tmp/fj224d-config.txt
    content: "v2"
  app:
    type: file
    machine: local
    path: /tmp/fj224d-app.txt
    content: "app"
    depends_on: [config]
    triggers: [config]
"#;
    let config2: ForjarConfig = serde_yaml_ng::from_str(yaml2).unwrap();
    let cfg2 = ApplyConfig {
        config: &config2,
        state_dir: &state_dir,
        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 r2 = apply(&cfg2).unwrap();
    assert_eq!(
        r2[0].resources_converged, 2,
        "config changed + app triggered"
    );
}