ruchy 4.2.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
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
//! Issue #101: ruchy doc command implementation tests
//!
//! Tests the `ruchy doc` command for documentation generation.
//!
//! Reference: <https://github.com/paiml/ruchy/issues/101>
//! EXTREME TDD: These tests demonstrate the expected behavior (RED phase)

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

/// Helper: Create ruchy command
fn ruchy_cmd() -> Command {
    assert_cmd::cargo::cargo_bin_cmd!("ruchy")
}

/// Helper: Create temp file with content
fn create_temp_file(dir: &TempDir, name: &str, content: &str) -> std::path::PathBuf {
    let path = dir.path().join(name);
    fs::write(&path, content).expect("Failed to write temp file");
    path
}

// ============================================================================
// BASIC FUNCTIONALITY TESTS
// ============================================================================

#[test]
fn test_issue_101_doc_simple_function() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "simple.ruchy",
        r"
/// Adds two numbers together
fun add(x, y) {
    x + y
}
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success()
        .stdout(predicate::str::contains("Generated documentation"));

    // Output directory should exist
    assert!(
        output_dir.exists(),
        "Documentation directory should be created"
    );
}

#[test]
fn test_issue_101_doc_with_doc_comments() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "documented.ruchy",
        r"
/// Calculates the square of a number
///
/// # Arguments
/// * `n` - The number to square
///
/// # Returns
/// The square of the input number
fun square(n) {
    n * n
}
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    assert!(output_dir.exists());
}

#[test]
fn test_issue_101_doc_multiple_functions() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "multi.ruchy",
        r"
/// Add two numbers
fun add(x, y) { x + y }

/// Subtract two numbers
fun sub(x, y) { x - y }

/// Multiply two numbers
fun mul(x, y) { x * y }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    assert!(output_dir.exists());
}

// ============================================================================
// OUTPUT FORMAT TESTS
// ============================================================================

#[test]
fn test_issue_101_doc_markdown_format() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "test.ruchy",
        r"
/// Test function
fun test() { 42 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("markdown")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    // Check for markdown file
    let md_file = output_dir.join("test.md");
    assert!(
        md_file.exists() || output_dir.join("index.md").exists(),
        "Markdown documentation should be created"
    );
}

#[test]
fn test_issue_101_doc_html_format() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "test.ruchy",
        r"
/// Test function
fun test() { 42 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("html")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    // Check for HTML file
    let html_file = output_dir.join("test.html");
    assert!(
        html_file.exists() || output_dir.join("index.html").exists(),
        "HTML documentation should be created"
    );
}

#[test]
fn test_issue_101_doc_json_format() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "test.ruchy",
        r"
/// Test function
fun test() { 42 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("json")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    // Check for JSON file
    let json_file = output_dir.join("test.json");
    assert!(
        json_file.exists() || output_dir.join("docs.json").exists(),
        "JSON documentation should be created"
    );
}

// ============================================================================
// CONTENT VALIDATION TESTS
// ============================================================================

#[test]
fn test_issue_101_doc_markdown_content() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "content.ruchy",
        r#"
/// Greets a person by name
fun greet(name) {
    println("Hello, " + name)
}
"#,
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("markdown")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    // Read generated markdown and verify content
    let md_files: Vec<_> = fs::read_dir(&output_dir)
        .unwrap()
        .filter_map(std::result::Result::ok)
        .filter(|e| e.path().extension().and_then(|s| s.to_str()) == Some("md"))
        .collect();

    assert!(
        !md_files.is_empty(),
        "Should generate at least one .md file"
    );

    let content = fs::read_to_string(md_files[0].path()).unwrap();
    assert!(
        content.contains("greet") || content.contains("Greets"),
        "Documentation should contain function name or description"
    );
}

#[test]
fn test_issue_101_doc_json_structure() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "json_test.ruchy",
        r"
/// Test function
fun test() { 42 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("json")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    // Find and parse JSON file
    let json_files: Vec<_> = fs::read_dir(&output_dir)
        .unwrap()
        .filter_map(std::result::Result::ok)
        .filter(|e| e.path().extension().and_then(|s| s.to_str()) == Some("json"))
        .collect();

    assert!(
        !json_files.is_empty(),
        "Should generate at least one .json file"
    );

    let content = fs::read_to_string(json_files[0].path()).unwrap();
    assert!(
        content.contains('{') && content.contains('}'),
        "JSON should be valid structure"
    );
}

// ============================================================================
// OPTION TESTS
// ============================================================================

#[test]
fn test_issue_101_doc_private_flag() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "private.ruchy",
        r"
/// Public function
fun public_fn() { 1 }

// Private function (no doc comment)
fun private_fn() { 2 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--private")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success();

    assert!(output_dir.exists());
}

#[test]
fn test_issue_101_doc_verbose_mode() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(
        &temp,
        "verbose.ruchy",
        r"
/// Test
fun test() { 42 }
",
    );
    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--verbose")
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .success()
        .stdout(predicate::str::contains("Parsing").or(predicate::str::contains("Generating")));
}

// ============================================================================
// ERROR HANDLING TESTS
// ============================================================================

#[test]
fn test_issue_101_doc_missing_file() {
    ruchy_cmd()
        .arg("doc")
        .arg("nonexistent_xyz_12345.ruchy")
        .assert()
        .failure()
        .stderr(
            predicate::str::contains("not found")
                .or(predicate::str::contains("No such file"))
                .or(predicate::str::contains("does not exist")),
        );
}

#[test]
fn test_issue_101_doc_invalid_format() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(&temp, "test.ruchy", "fun test() { 42 }");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--format")
        .arg("invalid_format_xyz")
        .assert()
        .failure()
        .stderr(predicate::str::contains("format").or(predicate::str::contains("invalid")));
}

#[test]
fn test_issue_101_doc_syntax_error() {
    let temp = TempDir::new().unwrap();
    let file = create_temp_file(&temp, "bad.ruchy", "fun bad( { }"); // Invalid syntax

    let output_dir = temp.path().join("docs");

    ruchy_cmd()
        .arg("doc")
        .arg(&file)
        .arg("--output")
        .arg(&output_dir)
        .assert()
        .failure()
        .stderr(predicate::str::contains("error").or(predicate::str::contains("parse")));
}