wcl 0.6.1-alpha

WCL (Wil's Configuration Language) — a typed, block-structured configuration language
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
use assert_cmd::Command;
use predicates::prelude::*;
use std::io::Write;
use tempfile::NamedTempFile;
use tempfile::TempDir;

// ── Helper: write a named temp file containing given content ─────────────────

fn wcl_file(content: &str) -> NamedTempFile {
    let mut f = NamedTempFile::new().expect("tempfile");
    f.write_all(content.as_bytes()).expect("write");
    f
}

// ── wcl --help ───────────────────────────────────────────────────────────────

#[test]
fn help_exits_successfully() {
    Command::cargo_bin("wcl")
        .unwrap()
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("wcl"));
}

// ── wcl validate --help ───────────────────────────────────────────────────────

#[test]
fn validate_help_exits_successfully() {
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("validate").or(predicate::str::contains("Validate")));
}

// ── wcl validate <valid file> → success ──────────────────────────────────────

#[test]
fn validate_valid_file_succeeds() {
    let f = wcl_file("config {\n    port = 8080\n}\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", f.path().to_str().unwrap()])
        .assert()
        .success();
}

#[test]
fn validate_valid_attribute_file_succeeds() {
    let f = wcl_file("name = \"hello\"\nversion = 42\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", f.path().to_str().unwrap()])
        .assert()
        .success();
}

#[test]
fn validate_valid_file_prints_is_valid() {
    let f = wcl_file("x = 1\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", f.path().to_str().unwrap()])
        .assert()
        .success()
        .stdout(predicate::str::contains("is valid"));
}

// ── wcl validate <invalid file> → error exit code ────────────────────────────

#[test]
fn validate_invalid_file_fails() {
    // Syntax error: unclosed block
    let f = wcl_file("config {\n    port = \n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", f.path().to_str().unwrap()])
        .assert()
        .failure();
}

#[test]
fn validate_nonexistent_file_fails() {
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", "/nonexistent/path/file.wcl"])
        .assert()
        .failure();
}

// ── wcl validate --strict ─────────────────────────────────────────────────────

#[test]
fn validate_strict_flag_accepted() {
    let f = wcl_file("x = 1\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["validate", "--strict", f.path().to_str().unwrap()])
        .assert()
        .success();
}

// ── wcl convert --to json → JSON output ──────────────────────────────────────

#[test]
fn convert_to_json_simple_attribute() {
    let f = wcl_file("port = 8080\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", "--to", "json", f.path().to_str().unwrap()])
        .assert()
        .success()
        .stdout(predicate::str::contains("port").and(predicate::str::contains("8080")));
}

#[test]
fn convert_to_json_produces_valid_json() {
    let f = wcl_file("name = \"test\"\ncount = 3\n");
    let output = Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", "--to", "json", f.path().to_str().unwrap()])
        .output()
        .expect("run wcl");

    assert!(output.status.success(), "expected success exit");

    let stdout = String::from_utf8_lossy(&output.stdout);
    // The output should be valid JSON — parse it to verify
    let parsed: serde_json::Value =
        serde_json::from_str(stdout.trim()).expect("output should be valid JSON");
    assert!(parsed.is_object());
}

#[test]
fn convert_to_json_block_produces_object_fields() {
    let f = wcl_file("service {\n    port = 9000\n}\n");
    let output = Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", "--to", "json", f.path().to_str().unwrap()])
        .output()
        .expect("run wcl");

    assert!(output.status.success(), "expected success exit");
    let stdout = String::from_utf8_lossy(&output.stdout);
    // Output must be parseable JSON
    serde_json::from_str::<serde_json::Value>(stdout.trim()).expect("output should be valid JSON");
}

#[test]
fn convert_unsupported_format_fails() {
    let f = wcl_file("x = 1\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", "--to", "xml", f.path().to_str().unwrap()])
        .assert()
        .failure();
}

#[test]
fn convert_no_flags_fails() {
    let f = wcl_file("x = 1\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", f.path().to_str().unwrap()])
        .assert()
        .failure();
}

// ── wcl query → output ───────────────────────────────────────────────────────

#[test]
fn query_returns_results_for_valid_query() {
    let f = wcl_file("service { port = 8080 }\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["query", f.path().to_str().unwrap(), "service"])
        .assert()
        .success();
}

#[test]
fn query_subcommand_is_recognized_by_cli() {
    // Even though the query fails at runtime, the CLI must not print
    // "unknown subcommand" — the clap parser should accept "query".
    let f = wcl_file("x = 1\n");
    let output = Command::cargo_bin("wcl")
        .unwrap()
        .args(["query", f.path().to_str().unwrap(), "x"])
        .output()
        .expect("run wcl");

    let stderr = String::from_utf8_lossy(&output.stderr);
    // Must not be a clap "unrecognised subcommand" error
    assert!(
        !stderr.contains("unrecognized subcommand"),
        "CLI should recognise 'query' as a valid subcommand"
    );
}

// ── wcl validate --schema ────────────────────────────────────────────────────

#[test]
fn validate_with_external_schema_valid_config() {
    let schema = wcl_file(
        r#"
schema "server" {
    port: i64
    host: string
}
"#,
    );
    let config = wcl_file(
        r#"
server {
    port = 8080
    host = "localhost"
}
"#,
    );
    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "validate",
            "--schema",
            schema.path().to_str().unwrap(),
            config.path().to_str().unwrap(),
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("is valid"));
}

#[test]
fn validate_with_external_schema_missing_required_field() {
    let schema = wcl_file(
        r#"
schema "server" {
    port: i64
    host: string
}
"#,
    );
    let config = wcl_file(
        r#"
server {
    port = 8080
}
"#,
    );
    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "validate",
            "--schema",
            schema.path().to_str().unwrap(),
            config.path().to_str().unwrap(),
        ])
        .assert()
        .failure()
        .stderr(predicate::str::contains("error"));
}

#[test]
fn validate_with_external_schema_type_mismatch() {
    let schema = wcl_file(
        r#"
schema "server" {
    port: i64
    host: string
}
"#,
    );
    let config = wcl_file(
        r#"
server {
    port = "not_a_number"
    host = "localhost"
}
"#,
    );
    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "validate",
            "--schema",
            schema.path().to_str().unwrap(),
            config.path().to_str().unwrap(),
        ])
        .assert()
        .failure()
        .stderr(predicate::str::contains("error"));
}

// ── Additional subcommand help checks ────────────────────────────────────────

#[test]
fn convert_help_exits_successfully() {
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["convert", "--help"])
        .assert()
        .success();
}

#[test]
fn query_help_exits_successfully() {
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["query", "--help"])
        .assert()
        .success();
}

#[test]
fn fmt_help_exits_successfully() {
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["fmt", "--help"])
        .assert()
        .success();
}

// ── wcl inspect --scopes ─────────────────────────────────────────────────────

#[test]
fn inspect_scopes_produces_scope_tree() {
    let f = wcl_file("config {\n    port = 8080\n}\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["inspect", "--scopes", f.path().to_str().unwrap()])
        .assert()
        .success()
        .stdout(predicate::str::contains("Scope Tree"));
}

#[test]
fn inspect_scopes_shows_scope_entries() {
    let f = wcl_file("let x = 42\nconfig {\n    port = x\n}\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["inspect", "--scopes", f.path().to_str().unwrap()])
        .assert()
        .success()
        .stdout(predicate::str::contains("Scope Tree").and(predicate::str::contains("Scope(")));
}

// ── wcl inspect --deps ───────────────────────────────────────────────────────

#[test]
fn inspect_deps_produces_dependency_graph() {
    let f = wcl_file("let x = 1\nlet y = x + 1\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args(["inspect", "--deps", f.path().to_str().unwrap()])
        .assert()
        .success()
        .stdout(predicate::str::contains("Dependency Graph"));
}

// ── wcl query --recursive ────────────────────────────────────────────────────

#[test]
fn query_recursive_finds_files_in_directory() {
    let dir = TempDir::new().expect("tempdir");

    // Write two .wcl files into the directory
    let file1 = dir.path().join("a.wcl");
    std::fs::write(&file1, "service {\n    port = 8080\n}\n").expect("write a.wcl");

    let file2 = dir.path().join("b.wcl");
    std::fs::write(&file2, "service {\n    port = 9090\n}\n").expect("write b.wcl");

    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "query",
            "--recursive",
            dir.path().to_str().unwrap(),
            "service",
        ])
        .assert()
        .success();
}

#[test]
fn query_recursive_aggregates_results() {
    let dir = TempDir::new().expect("tempdir");

    std::fs::write(dir.path().join("a.wcl"), "service {\n    port = 8080\n}\n")
        .expect("write a.wcl");
    std::fs::write(dir.path().join("b.wcl"), "service {\n    port = 9090\n}\n")
        .expect("write b.wcl");

    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "query",
            "--recursive",
            "--count",
            dir.path().to_str().unwrap(),
            "service",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("2"));
}

#[test]
fn query_recursive_walks_subdirectories() {
    let dir = TempDir::new().expect("tempdir");
    let sub = dir.path().join("subdir");
    std::fs::create_dir(&sub).expect("mkdir subdir");

    std::fs::write(dir.path().join("a.wcl"), "service {\n    port = 1000\n}\n")
        .expect("write a.wcl");
    std::fs::write(sub.join("b.wcl"), "service {\n    port = 2000\n}\n").expect("write b.wcl");

    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "query",
            "--recursive",
            "--count",
            dir.path().to_str().unwrap(),
            "service",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("2"));
}

#[test]
fn query_recursive_on_single_file_works() {
    let f = wcl_file("service {\n    port = 8080\n}\n");
    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "query",
            "--recursive",
            f.path().to_str().unwrap(),
            "service",
        ])
        .assert()
        .success();
}

#[test]
fn query_recursive_empty_directory_fails() {
    let dir = TempDir::new().expect("tempdir");
    Command::cargo_bin("wcl")
        .unwrap()
        .args([
            "query",
            "--recursive",
            dir.path().to_str().unwrap(),
            "service",
        ])
        .assert()
        .failure()
        .stderr(predicate::str::contains("no .wcl files"));
}