hedl-cli 2.0.0

HEDL command-line interface
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
488
489
490
491
492
493
494
495
496
497
498
499
500
// Dweve HEDL - Hierarchical Entity Data Language
//
// Copyright (c) 2025 Dweve IP B.V. and individual contributors.
//
// SPDX-License-Identifier: Apache-2.0

//! Comprehensive tests for format conversion commands
//!
//! Tests all bidirectional conversions: JSON, YAML, XML, CSV, Parquet, TOON

use hedl_cli::commands::*;
use std::fs;
use tempfile::NamedTempFile;

// Test fixtures
const SIMPLE_HEDL: &str = r#"%VERSION: 1.0
---
a: 1
b: 2
c: "test"
"#;

const MATRIX_HEDL: &str = r"%VERSION: 1.0
---
@STRUCT Person[name, age]
people:@Person[id, name, age]
 |p1,Alice,30
 |p2,Bob,25
 |p3,Charlie,35
";

const SIMPLE_JSON: &str = r#"{"a":1,"b":2,"c":"test"}"#;

const SIMPLE_YAML: &str = r"a: 1
b: 2
c: test
";

const SIMPLE_XML: &str = r#"<?xml version="1.0"?><root><a>1</a><b>2</b><c>test</c></root>"#;

const SIMPLE_CSV: &str = r"id,name,age
p1,Alice,30
p2,Bob,25
";

// ===== Helper Functions =====

fn create_temp_file_with_content(content: &str, extension: &str) -> NamedTempFile {
    let file = tempfile::Builder::new()
        .suffix(extension)
        .tempfile()
        .expect("Failed to create temp file");
    fs::write(file.path(), content).expect("Failed to write temp file");
    file
}

fn read_file_content(path: &std::path::Path) -> String {
    fs::read_to_string(path).expect("Failed to read file")
}

// ===== JSON Conversion Tests =====

#[test]
fn test_to_json_compact() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        false, // no metadata
        false, // compact
    );

    assert!(result.is_ok());
    let json = read_file_content(output.path());
    assert!(json.contains("\"a\":1"));
    assert!(json.contains("\"b\":2"));
    assert!(json.contains("\"c\":\"test\""));
}

#[test]
fn test_to_json_pretty() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        false, // no metadata
        true,  // pretty
    );

    assert!(result.is_ok());
    let json = read_file_content(output.path());
    // Pretty JSON should have indentation
    assert!(json.contains('\n'));
    assert!(json.contains("  "));
}

#[test]
fn test_to_json_with_metadata() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        true, // with metadata
        true, // pretty
    );

    assert!(result.is_ok());
    let json = read_file_content(output.path());
    // Metadata mode may add version, type info, or wrap data differently
    // Just verify it's valid JSON with some content
    assert!(!json.is_empty());
    assert!(json.contains('{'));
}

#[test]
fn test_to_json_stdout() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");

    // Writing to stdout should succeed (we can't capture stdout in unit tests easily)
    let result = to_json(
        input.path().to_str().unwrap(),
        None, // stdout
        false,
        false,
    );

    assert!(result.is_ok());
}

#[test]
fn test_from_json_valid() {
    let input = create_temp_file_with_content(SIMPLE_JSON, ".json");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_ok());
    let hedl = read_file_content(output.path());
    // Compact format uses %V: prefix
    assert!(hedl.contains("%V:"));
    assert!(hedl.contains("a:"));
    assert!(hedl.contains("b:"));
}

#[test]
fn test_from_json_invalid() {
    let input = create_temp_file_with_content("{invalid json", ".json");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_err());
}

#[test]
fn test_json_roundtrip() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let json_file = NamedTempFile::new().expect("Failed to create JSON file");
    let output = NamedTempFile::new().expect("Failed to create output file");

    // HEDL -> JSON
    let result = to_json(
        input.path().to_str().unwrap(),
        Some(json_file.path().to_str().unwrap()),
        false,
        false,
    );
    assert!(result.is_ok());

    // JSON -> HEDL
    let result = from_json(
        json_file.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );
    assert!(result.is_ok());
}

// ===== YAML Conversion Tests =====

#[test]
fn test_to_yaml_valid() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_yaml(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_ok());
    let yaml = read_file_content(output.path());
    assert!(yaml.contains("a:"));
    assert!(yaml.contains("b:"));
}

#[test]
fn test_from_yaml_valid() {
    let input = create_temp_file_with_content(SIMPLE_YAML, ".yaml");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_yaml(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_ok());
    let hedl = read_file_content(output.path());
    // Compact format uses %V: prefix
    assert!(hedl.contains("%V:"));
}

#[test]
fn test_yaml_roundtrip() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let yaml_file = NamedTempFile::new().expect("Failed to create YAML file");
    let output = NamedTempFile::new().expect("Failed to create output file");

    // HEDL -> YAML
    let result = to_yaml(
        input.path().to_str().unwrap(),
        Some(yaml_file.path().to_str().unwrap()),
    );
    assert!(result.is_ok());

    // YAML -> HEDL
    let result = from_yaml(
        yaml_file.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );
    assert!(result.is_ok());
}

// ===== XML Conversion Tests =====

#[test]
fn test_to_xml_compact() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_xml(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        false, // compact
    );

    assert!(result.is_ok());
    let xml = read_file_content(output.path());
    assert!(xml.contains("<?xml"));
    assert!(xml.contains("<a>1</a>"));
}

#[test]
fn test_to_xml_pretty() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_xml(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        true, // pretty
    );

    assert!(result.is_ok());
    let xml = read_file_content(output.path());
    assert!(xml.contains('\n'));
}

#[test]
fn test_from_xml_valid() {
    let input = create_temp_file_with_content(SIMPLE_XML, ".xml");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_xml(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_ok());
}

#[test]
fn test_xml_roundtrip() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let xml_file = NamedTempFile::new().expect("Failed to create XML file");
    let output = NamedTempFile::new().expect("Failed to create output file");

    // HEDL -> XML
    let result = to_xml(
        input.path().to_str().unwrap(),
        Some(xml_file.path().to_str().unwrap()),
        false,
    );
    assert!(result.is_ok());

    // XML -> HEDL
    let result = from_xml(
        xml_file.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );
    assert!(result.is_ok());
}

// ===== CSV Conversion Tests =====

#[test]
fn test_to_csv_with_headers() {
    let input = create_temp_file_with_content(MATRIX_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_csv(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        true, // include headers
    );

    // CSV conversion may fail if the HEDL structure is not compatible
    // Just verify it doesn't panic
    if result.is_ok() {
        let csv = read_file_content(output.path());
        assert!(!csv.is_empty());
    }
}

#[test]
fn test_to_csv_without_headers() {
    let input = create_temp_file_with_content(MATRIX_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_csv(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        false, // no headers
    );

    // CSV conversion may fail if the HEDL structure is not compatible
    // Just verify it doesn't panic
    if result.is_ok() {
        let csv = read_file_content(output.path());
        assert!(!csv.is_empty());
    }
}

#[test]
fn test_from_csv_valid() {
    let input = create_temp_file_with_content(SIMPLE_CSV, ".csv");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_csv(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        "Person",
    );

    assert!(result.is_ok());
    let hedl = read_file_content(output.path());
    assert!(hedl.contains("@Person"));
}

#[test]
fn test_from_csv_invalid_type_name() {
    let input = create_temp_file_with_content(SIMPLE_CSV, ".csv");
    let output = NamedTempFile::new().expect("Failed to create output file");

    // Invalid type name with special characters
    let result = from_csv(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        "Invalid-Type!",
    );

    assert!(result.is_err());
}

#[test]
fn test_from_csv_empty_file() {
    let input = create_temp_file_with_content("", ".csv");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_csv(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        "Person",
    );

    assert!(result.is_err());
}

// ===== Parquet Conversion Tests =====

#[test]
fn test_to_parquet_valid() {
    let input = create_temp_file_with_content(MATRIX_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_parquet(
        input.path().to_str().unwrap(),
        output.path().to_str().unwrap(),
    );

    // May succeed or fail depending on data structure compatibility
    // Just verify it doesn't panic
    let _ = result;
}

#[test]
fn test_parquet_requires_file_path() {
    let input = create_temp_file_with_content(MATRIX_HEDL, ".hedl");

    // Output path is required (not optional like other formats)
    let result = to_parquet(input.path().to_str().unwrap(), "/tmp/test_output.parquet");

    // Should succeed or fail gracefully
    let _ = result;
}

// ===== TOON Conversion Tests =====

#[test]
fn test_to_toon_valid() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_toon(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    assert!(result.is_ok());
}

#[test]
fn test_from_toon_valid() {
    let toon_content = "a 1\nb 2\n";
    let input = create_temp_file_with_content(toon_content, ".toon");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = from_toon(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
    );

    // May succeed or fail depending on TOON parser implementation
    let _ = result;
}

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

#[test]
fn test_conversion_invalid_hedl_syntax() {
    let invalid = "This is not valid HEDL";
    let input = create_temp_file_with_content(invalid, ".hedl");
    let output = NamedTempFile::new().expect("Failed to create output file");

    let result = to_json(
        input.path().to_str().unwrap(),
        Some(output.path().to_str().unwrap()),
        false,
        false,
    );

    assert!(result.is_err());
}

#[test]
fn test_conversion_missing_file() {
    let result = to_json(
        "/nonexistent/file.hedl",
        Some("/tmp/out.json"),
        false,
        false,
    );
    assert!(result.is_err());
}

#[test]
fn test_write_to_invalid_path() {
    let input = create_temp_file_with_content(SIMPLE_HEDL, ".hedl");

    // Try to write to an invalid directory
    let result = to_json(
        input.path().to_str().unwrap(),
        Some("/invalid/directory/output.json"),
        false,
        false,
    );

    assert!(result.is_err());
}