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
//! Tests: Apply command.
#![allow(unused_imports)]
use super::apply::*;
use super::commands::*;
use super::dispatch::*;
use super::helpers::*;
use super::helpers_state::*;
use super::helpers_time::*;
use crate::core::types::ProvenanceEvent;
use crate::core::{codegen, executor, migrate, parser, planner, resolver, secrets, state, types};
use crate::transport;
use crate::tripwire::{anomaly, drift, eventlog, tracer};
use std::collections::HashMap;
use std::path::{Path, PathBuf};
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_fj017_apply_with_results_summary() {
// Tests the full apply path with real local execution, covering the
// results iteration and summary output lines
let dir = tempfile::tempdir().unwrap();
let config = dir.path().join("forjar.yaml");
let state = dir.path().join("state");
std::fs::create_dir_all(&state).unwrap();
let target = dir.path().join("apply-summary.txt");
std::fs::write(
&config,
format!(
r#"
version: "1.0"
name: test
machines:
local:
hostname: localhost
addr: 127.0.0.1
resources:
summary-file:
type: file
machine: local
path: {}
content: "summary test"
"#,
target.display()
),
)
.unwrap();
cmd_apply(
&config,
&state,
None,
None,
None,
None, // no group filter
false,
false,
false,
&[],
false,
None, // no timeout
false,
false,
None, // no env_file
None, // no workspace
false, // no report
false, // no force_unlock
None, // no output mode
false, // no progress
false, // no timing
0, // no retry
true, // yes (skip prompt)
false,
None,
false,
None,
None,
None, // subset
false, // confirm_destructive
None, // exclude
false, // sequential
None, // telemetry_endpoint
false, // refresh
None, // force_tag
)
.unwrap();
assert!(target.exists());
// Second apply — should be unchanged (NoOp)
cmd_apply(
&config,
&state,
None,
None,
None,
None, // no group filter
false,
false,
false,
&[],
false,
None, // no timeout
false,
false,
None, // no env_file
None, // no workspace
false, // no report
false, // no force_unlock
None, // no output mode
false, // no progress
false, // no timing
0, // no retry
true, // yes (skip prompt)
false,
None,
false,
None,
None,
None, // subset
false, // confirm_destructive
None, // exclude
false, // sequential
None, // telemetry_endpoint
false, // refresh
None, // force_tag
)
.unwrap();
}
#[test]
fn test_fj017_apply_with_param_override() {
let dir = tempfile::tempdir().unwrap();
let state = dir.path().join("state");
let config = dir.path().join("forjar.yaml");
std::fs::write(
&config,
r#"
version: "1.0"
name: param-test
params:
env: dev
machines:
local:
hostname: local
addr: 127.0.0.1
resources:
conf:
type: file
machine: local
path: /tmp/forjar-param-test.txt
content: "env={{params.env}}"
"#,
)
.unwrap();
// Apply with param override in dry-run
cmd_apply(
&config,
&state,
None,
None,
None,
None, // no group filter
false,
true, // dry-run
false,
&["env=prod".to_string()],
false,
None,
false,
false,
None, // no env_file
None, // no workspace
false, // no report
false, // no force_unlock
None, // no output mode
false, // no progress
false, // no timing
0, // no retry
true, // yes (skip prompt)
false,
None,
false,
None,
None,
None, // subset
false, // confirm_destructive
None, // exclude
false, // sequential
None, // telemetry_endpoint
false, // refresh
None, // force_tag
)
.unwrap();
}
#[test]
fn test_fj205_apply_json_dry_run() {
let dir = tempfile::tempdir().unwrap();
let config = dir.path().join("forjar.yaml");
let state = dir.path().join("state");
std::fs::create_dir_all(&state).unwrap();
std::fs::write(
&config,
r#"
version: "1.0"
name: test
machines:
local:
hostname: localhost
addr: 127.0.0.1
resources:
f:
type: file
machine: local
path: /tmp/forjar-fj205-test.txt
content: "x"
"#,
)
.unwrap();
// Dry-run with json=true should succeed (dry run exits before JSON output)
let result = cmd_apply(
&config,
&state,
None,
None,
None,
None, // no group filter
false,
true,
false,
&[],
false,
None, // no timeout
true,
false,
None, // no env_file
None, // no workspace
false, // no report
false, // no force_unlock
None, // no output mode
false, // no progress
false, // no timing
0, // no retry
true, // yes (skip prompt)
false,
None,
false,
None,
None,
None, // subset
false, // confirm_destructive
None, // exclude
false, // sequential
None, // telemetry_endpoint
false, // refresh
None, // force_tag
);
assert!(result.is_ok());
}
#[test]
fn test_fj205_apply_result_serialize() {
// Verify ApplyResult serializes correctly (duration as f64 seconds)
use crate::core::types::ApplyResult;
let result = ApplyResult {
machine: "web".to_string(),
resources_converged: 3,
resources_unchanged: 1,
resources_failed: 0,
total_duration: std::time::Duration::from_millis(1500),
resource_reports: Vec::new(),
};
let json = serde_json::to_string(&result).unwrap();
assert!(json.contains("\"machine\":\"web\""));
assert!(json.contains("\"resources_converged\":3"));
assert!(json.contains("\"total_duration\":1.5"));
}
}