tmpltool 1.5.0

A fast and simple command-line template rendering tool using MiniJinja templates with environment variables
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
use std::fs;
use std::io::Write;
use tempfile::{NamedTempFile, TempDir};
use tmpltool::cli::ValidateFormat;
use tmpltool::render_template;

// ============================================================================
// render_template() Tests - Core Functionality
// ============================================================================

#[test]
fn test_render_template_from_file_to_stdout() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "Hello World").unwrap();
    let path = temp_file.path().to_str().unwrap();

    // This will output to stdout, we just verify it doesn't error
    let result = render_template(Some(path), None, false, None);
    assert!(result.is_ok());
}

#[test]
fn test_render_template_from_file_to_file() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(&input_path, "Test output").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    assert!(output_path.exists());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "Test output");
}

#[test]
fn test_render_template_with_env_var() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(
        &input_path,
        "{{ get_env(name=\"TEST_RENDERER_VAR\", default=\"default\") }}",
    )
    .unwrap();

    unsafe {
        std::env::set_var("TEST_RENDERER_VAR", "test_value");
    }

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "test_value");

    unsafe {
        std::env::remove_var("TEST_RENDERER_VAR");
    }
}

#[test]
fn test_render_template_with_trust_mode() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");
    let data_file = temp_dir.path().join("data.txt");

    fs::write(&data_file, "trusted data").unwrap();

    // Use relative path with parent directory traversal (requires trust mode)
    fs::write(&input_path, "{{ read_file(path=\"../data.txt\") }}").unwrap();

    // Create a subdirectory and move the template there
    let subdir = temp_dir.path().join("subdir");
    fs::create_dir(&subdir).unwrap();
    let nested_input = subdir.join("input.tmpltool");
    fs::write(&nested_input, "{{ read_file(path=\"../data.txt\") }}").unwrap();

    // Should work with trust mode (accessing parent directory)
    let result = render_template(
        Some(nested_input.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        true, // trust mode enabled
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "trusted data");
}

// ============================================================================
// Error Handling Tests
// ============================================================================

#[test]
fn test_render_template_missing_file() {
    let result = render_template(Some("/nonexistent/file.tmpltool"), None, false, None);
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Failed to read template file"));
}

#[test]
fn test_render_template_invalid_template_syntax() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "{{{{ unclosed_variable").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, None);
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Failed to parse template"));
}

#[test]
fn test_render_template_undefined_variable() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "{{{{ undefined_var }}}}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, None);
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Failed to render template"));
}

#[test]
fn test_render_template_invalid_output_path() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "Hello").unwrap();
    let path = temp_file.path().to_str().unwrap();

    // Try to write to a directory that doesn't exist
    let result = render_template(Some(path), Some("/nonexistent/dir/output.txt"), false, None);
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Failed to write output file"));
}

#[test]
#[cfg(unix)]
fn test_render_template_security_absolute_path() {
    // This test only works on Unix where absolute paths start with /
    // On Windows, the security check for absolute paths works differently
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");

    // Try to read with Unix absolute path without trust mode
    fs::write(&input_path, "{{ read_file(path=\"/etc/passwd\") }}").unwrap();

    let result = render_template(Some(input_path.to_str().unwrap()), None, false, None);

    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Security") || err.to_string().contains("absolute"));
}

#[test]
fn test_render_template_security_parent_directory() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");

    // Try to read with parent directory traversal
    fs::write(&input_path, "{{ read_file(path=\"../secret.txt\") }}").unwrap();

    let result = render_template(Some(input_path.to_str().unwrap()), None, false, None);

    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("Security") || err.to_string().contains("parent"));
}

// ============================================================================
// Validation Tests
// ============================================================================

#[test]
fn test_render_template_validate_json_success() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.json");

    fs::write(&input_path, r#"{"valid": "json", "number": 42}"#).unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        Some(ValidateFormat::Json),
    );

    assert!(result.is_ok());
}

#[test]
fn test_render_template_validate_json_failure() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "{{invalid json}}").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, Some(ValidateFormat::Json));

    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("JSON") || err.to_string().contains("validation"));
}

#[test]
fn test_render_template_validate_yaml_success() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.yaml");

    fs::write(&input_path, "server:\n  host: localhost\n  port: 8080").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        Some(ValidateFormat::Yaml),
    );

    assert!(result.is_ok());
}

#[test]
fn test_render_template_validate_yaml_failure() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "  invalid:\nyaml: - badly formatted").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, Some(ValidateFormat::Yaml));

    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("YAML") || err.to_string().contains("validation"));
}

#[test]
fn test_render_template_validate_toml_success() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.toml");

    fs::write(&input_path, "[server]\nhost = \"localhost\"\nport = 8080").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        Some(ValidateFormat::Toml),
    );

    assert!(result.is_ok());
}

#[test]
fn test_render_template_validate_toml_failure() {
    let mut temp_file = NamedTempFile::new().unwrap();
    writeln!(temp_file, "invalid = toml = syntax").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, Some(ValidateFormat::Toml));

    assert!(result.is_err());
    let err = result.unwrap_err();
    assert!(err.to_string().contains("TOML") || err.to_string().contains("validation"));
}

// ============================================================================
// Complex Scenario Tests
// ============================================================================

#[test]
fn test_render_template_with_includes() {
    let temp_dir = TempDir::new().unwrap();
    let main_path = temp_dir.path().join("main.tmpltool");
    let partial_path = temp_dir.path().join("partial.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(&partial_path, "included content").unwrap();
    fs::write(&main_path, "Start {% include \"partial.tmpltool\" %} End").unwrap();

    let result = render_template(
        Some(main_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "Start included content End");
}

#[test]
fn test_render_template_with_filters() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(&input_path, "{{ \"hello world\" | upper }}").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "HELLO WORLD");
}

#[test]
fn test_render_template_with_conditionals() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(
        &input_path,
        "{% if get_env(name=\"ENABLE_FEATURE\", default=\"false\") == \"true\" %}enabled{% else %}disabled{% endif %}",
    )
    .unwrap();

    unsafe {
        std::env::set_var("ENABLE_FEATURE", "true");
    }

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "enabled");

    unsafe {
        std::env::remove_var("ENABLE_FEATURE");
    }
}

#[test]
fn test_render_template_with_loops() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(&input_path, "{% for i in [1, 2, 3] %}{{ i }}{% endfor %}").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "123");
}

#[test]
fn test_render_template_empty_file() {
    let mut temp_file = NamedTempFile::new().unwrap();
    // Write empty content
    write!(temp_file, "").unwrap();
    let path = temp_file.path().to_str().unwrap();

    let result = render_template(Some(path), None, false, None);
    // Empty templates are valid
    assert!(result.is_ok());
}

#[test]
fn test_render_template_large_template() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    // Create a large template with lots of repetition
    let large_content = "{% for i in range(1000) %}Line {{ i }}\n{% endfor %}";
    fs::write(&input_path, large_content).unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert!(content.contains("Line 0"));
    assert!(content.contains("Line 999"));
}

#[test]
fn test_render_template_unicode_content() {
    let temp_dir = TempDir::new().unwrap();
    let input_path = temp_dir.path().join("input.tmpltool");
    let output_path = temp_dir.path().join("output.txt");

    fs::write(&input_path, "Hello 世界 🚀 café").unwrap();

    let result = render_template(
        Some(input_path.to_str().unwrap()),
        Some(output_path.to_str().unwrap()),
        false,
        None,
    );

    assert!(result.is_ok());
    let content = fs::read_to_string(&output_path).unwrap();
    assert_eq!(content, "Hello 世界 🚀 café");
}