aprender-test-cli 0.36.0

CLI for Probar: Rust-native testing framework for WASM games
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
//! Smoke tests for probador CLI
//!
//! These tests verify basic CLI functionality works correctly.
//! Critical for a crate that replaces Playwright in Rust.

#![allow(deprecated)] // Allow deprecated Command::cargo_bin until assert_cmd is updated
#![allow(clippy::expect_used, clippy::unwrap_used)]

use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::TempDir;

/// Get a command for the probador binary
fn probador() -> Command {
    Command::cargo_bin("probador").expect("probador binary should exist")
}

// ============================================================================
// Basic CLI Tests
// ============================================================================

#[test]
fn test_version_flag() {
    probador()
        .arg("--version")
        .assert()
        .success()
        .stdout(predicate::str::contains("1.0.0"));
}

#[test]
fn test_help_flag() {
    probador()
        .arg("--help")
        .assert()
        .success()
        .stdout(predicate::str::contains("WASM"))
        .stdout(predicate::str::contains("test"))
        .stdout(predicate::str::contains("playbook"));
}

#[test]
fn test_no_args_shows_help() {
    // Running with no args should show help or error gracefully
    probador().assert().failure(); // Requires a subcommand
}

// ============================================================================
// Subcommand Help Tests
// ============================================================================

#[test]
fn test_test_subcommand_help() {
    probador()
        .args(["test", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Run tests"));
}

#[test]
fn test_playbook_subcommand_help() {
    probador()
        .args(["playbook", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("playbook"))
        .stdout(predicate::str::contains("validate"));
}

#[test]
fn test_coverage_subcommand_help() {
    probador()
        .args(["coverage", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("coverage"));
}

#[test]
fn test_record_subcommand_help() {
    probador()
        .args(["record", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("record"));
}

#[test]
fn test_report_subcommand_help() {
    probador()
        .args(["report", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("report"));
}

#[test]
fn test_serve_subcommand_help() {
    probador()
        .args(["serve", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("serve"));
}

#[test]
fn test_watch_subcommand_help() {
    probador()
        .args(["watch", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("watch"));
}

#[test]
fn test_init_subcommand_help() {
    probador()
        .args(["init", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("init"));
}

#[test]
fn test_config_subcommand_help() {
    probador()
        .args(["config", "--help"])
        .assert()
        .success()
        .stdout(predicate::str::contains("config"));
}

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

#[test]
fn test_playbook_validate_valid_yaml() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("test.yaml");

    let yaml = r#"
version: "1.0"
name: "Smoke Test"
machine:
  id: "smoke_test"
  initial: "start"
  states:
    start:
      id: "start"
    end:
      id: "end"
      final_state: true
  transitions:
    - id: "go"
      from: "start"
      to: "end"
      event: "proceed"
"#;

    fs::write(&playbook_path, yaml).expect("write playbook");

    probador()
        .args(["playbook", playbook_path.to_str().unwrap(), "--validate"])
        .assert()
        .success()
        .stdout(predicate::str::contains("smoke_test"));
}

#[test]
fn test_playbook_validate_invalid_yaml() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("invalid.yaml");

    fs::write(&playbook_path, "not: valid: yaml: content").expect("write");

    probador()
        .args(["playbook", playbook_path.to_str().unwrap(), "--validate"])
        .assert()
        .failure();
}

#[test]
fn test_playbook_validate_missing_file() {
    probador()
        .args(["playbook", "/nonexistent/path.yaml", "--validate"])
        .assert()
        .failure();
}

#[test]
fn test_playbook_export_svg() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("test.yaml");
    let output_path = temp.path().join("output.svg");

    let yaml = r#"
version: "1.0"
name: "SVG Export Test"
machine:
  id: "svg_test"
  initial: "a"
  states:
    a:
      id: "a"
    b:
      id: "b"
      final_state: true
  transitions:
    - id: "t1"
      from: "a"
      to: "b"
      event: "go"
"#;

    fs::write(&playbook_path, yaml).expect("write playbook");

    probador()
        .args([
            "playbook",
            playbook_path.to_str().unwrap(),
            "--export",
            "svg",
            "--export-output",
            output_path.to_str().unwrap(),
        ])
        .assert()
        .success();

    assert!(output_path.exists(), "SVG file should be created");
    let content = fs::read_to_string(&output_path).expect("read svg");
    assert!(content.contains("<svg"), "Should contain SVG markup");
}

#[test]
fn test_playbook_export_dot() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("test.yaml");
    let output_path = temp.path().join("output.dot");

    let yaml = r#"
version: "1.0"
name: "DOT Export Test"
machine:
  id: "dot_test"
  initial: "start"
  states:
    start:
      id: "start"
    end:
      id: "end"
      final_state: true
  transitions:
    - id: "t1"
      from: "start"
      to: "end"
      event: "finish"
"#;

    fs::write(&playbook_path, yaml).expect("write playbook");

    probador()
        .args([
            "playbook",
            playbook_path.to_str().unwrap(),
            "--export",
            "dot",
            "--export-output",
            output_path.to_str().unwrap(),
        ])
        .assert()
        .success();

    assert!(output_path.exists(), "DOT file should be created");
    let content = fs::read_to_string(&output_path).expect("read dot");
    assert!(content.contains("digraph"), "Should contain DOT syntax");
}

#[test]
fn test_playbook_text_output() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("test.yaml");

    let yaml = r#"
version: "1.0"
name: "Text Output Test"
machine:
  id: "text_test"
  initial: "s1"
  states:
    s1:
      id: "s1"
    s2:
      id: "s2"
      final_state: true
  transitions:
    - id: "t1"
      from: "s1"
      to: "s2"
      event: "next"
"#;

    fs::write(&playbook_path, yaml).expect("write playbook");

    probador()
        .args(["playbook", playbook_path.to_str().unwrap(), "--validate"])
        .assert()
        .success()
        .stdout(predicate::str::contains("text_test"))
        .stdout(predicate::str::contains("Valid: yes"));
}

// ============================================================================
// Mutation Testing Smoke Test
// ============================================================================

#[test]
fn test_playbook_mutate() {
    let temp = TempDir::new().expect("create temp dir");
    let playbook_path = temp.path().join("test.yaml");

    let yaml = r#"
version: "1.0"
name: "Mutation Test"
machine:
  id: "mutation_test"
  initial: "idle"
  states:
    idle:
      id: "idle"
    active:
      id: "active"
    done:
      id: "done"
      final_state: true
  transitions:
    - id: "start"
      from: "idle"
      to: "active"
      event: "begin"
    - id: "finish"
      from: "active"
      to: "done"
      event: "complete"
"#;

    fs::write(&playbook_path, yaml).expect("write playbook");

    probador()
        .args(["playbook", playbook_path.to_str().unwrap(), "--mutate"])
        .assert()
        .success()
        .stdout(predicate::str::contains("mutant"));
}

// ============================================================================
// Init Command Smoke Test
// ============================================================================

#[test]
fn test_init_runs_successfully() {
    let temp = TempDir::new().expect("create temp dir");

    // Init command should run without error
    probador()
        .current_dir(temp.path())
        .args(["init"])
        .assert()
        .success();
}

// ============================================================================
// Config Command Smoke Test
// ============================================================================

#[test]
fn test_config_runs_successfully() {
    // Config command should run without error
    probador().args(["config"]).assert().success();
}

// ============================================================================
// Verbosity Flags
// ============================================================================

#[test]
fn test_verbose_flag() {
    probador().args(["-v", "--help"]).assert().success();
}

#[test]
fn test_quiet_flag() {
    probador().args(["-q", "--help"]).assert().success();
}

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

#[test]
fn test_invalid_subcommand() {
    probador()
        .arg("notacommand")
        .assert()
        .failure()
        .stderr(predicate::str::contains("error"));
}

#[test]
fn test_invalid_flag() {
    probador().arg("--notaflag").assert().failure();
}