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
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
#![cfg(test)]
#![allow(warnings)]
#![allow(clippy::assertions_on_constants)]
#![allow(clippy::unreadable_literal)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::unwrap_used, clippy::panic)]
//! Additional parser tests to improve coverage

use anyhow::Result;
use ruchy::{ExprKind, Parser};

#[test]
fn test_parse_actor_system() -> Result<()> {
    let input = r"
        actor Counter {
            state {
                count: i32
            }
            receive {
                Increment => self.count + 1,
                Get => self.count
            }
        }
    ";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Actor {
            name,
            state,
            handlers,
        } => {
            assert_eq!(name, "Counter");
            assert_eq!(state.len(), 1);
            assert_eq!(handlers.len(), 2);
        }
        _ => panic!("Expected actor, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_dataframe_operations() -> Result<()> {
    let input = "df.filter(col(\"age\") > 18).groupby(\"city\").mean()";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    // Should parse as method call chain
    assert!(matches!(ast.kind, ExprKind::MethodCall { .. }));

    Ok(())
}

#[test]
fn test_parse_impl_block() -> Result<()> {
    let input = r"
        impl Point {
            fun distance(&self, other: Point) -> f64 {
                ((self.x - other.x).pow(2) + (self.y - other.y).pow(2)).sqrt()
            }
        }
    ";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Impl { methods, .. } => {
            // Check methods
            assert_eq!(methods.len(), 1);
        }
        _ => panic!("Expected impl block, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_trait_definition() -> Result<()> {
    let input = r"
        trait Display {
            fun fmt(&self) -> String
        }
    ";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Trait { name, methods, .. } => {
            assert_eq!(name, "Display");
            assert_eq!(methods.len(), 1);
        }
        _ => panic!("Expected trait, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_generic_function() -> Result<()> {
    let input = "fun identity<T>(x: T) -> T { x }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Function {
            name, type_params, ..
        } => {
            assert_eq!(name, "identity");
            assert_eq!(type_params.len(), 1);
            assert_eq!(type_params[0], "T");
        }
        _ => panic!("Expected function, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_generic_struct() -> Result<()> {
    let input = "struct Box<T> { value: T }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Struct {
            name,
            type_params,
            fields,
            ..
        } => {
            assert_eq!(name, "Box");
            assert_eq!(type_params.len(), 1);
            assert_eq!(type_params[0], "T");
            assert_eq!(fields.len(), 1);
        }
        _ => panic!("Expected struct, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_list_comprehension() -> Result<()> {
    let input = "[x * 2 for x in range(10) if x % 2 == 0]";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::ListComprehension {
            element: _,
            variable: _,
            iterable: _,
            condition,
        } => {
            // Check condition exists
            assert!(condition.is_some());
        }
        _ => panic!("Expected list comprehension, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_try_operator() -> Result<()> {
    let input = "file.read()?";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    // Try expressions were removed in RUCHY-0834
    // This should now parse as a method call with ? operator
    assert!(matches!(ast.kind, ExprKind::MethodCall { .. }));

    Ok(())
}

#[test]
fn test_parse_pipeline_operator() -> Result<()> {
    let input = "data >> filter(x > 5) >> map(x * 2)";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    assert!(matches!(ast.kind, ExprKind::Pipeline { .. }));

    Ok(())
}

#[test]
fn test_parse_string_interpolation() -> Result<()> {
    let input = r#""Hello, {name}! You are {age} years old.""#;

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::StringInterpolation { parts } => {
            assert!(parts.len() > 1);
        }
        _ => panic!("Expected string interpolation, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_for_loop() -> Result<()> {
    let input = "for x in [1, 2, 3] { print(x) }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::For { var, .. } => {
            assert_eq!(var, "x");
        }
        _ => panic!("Expected for loop, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_while_loop() -> Result<()> {
    let input = "while x < 10 { x = x + 1 }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    assert!(matches!(ast.kind, ExprKind::While { .. }));

    Ok(())
}

#[test]
fn test_parse_match_expression() -> Result<()> {
    let input = r#"
        match value {
            0 => "zero",
            1 => "one",
            _ => "many"
        }
    "#;

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Match { arms, .. } => {
            assert_eq!(arms.len(), 3);
        }
        _ => panic!("Expected match expression, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_struct_literal() -> Result<()> {
    let input = "Point { x: 10, y: 20 }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::StructLiteral { name, fields } => {
            assert_eq!(name, "Point");
            assert_eq!(fields.len(), 2);
        }
        _ => panic!("Expected struct literal, got {:?}", ast.kind),
    }

    Ok(())
}

// Index operation not yet implemented in AST

#[test]
fn test_parse_attribute() -> Result<()> {
    let input = "#[test]\nfun test_foo() { assert(true) }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Function { .. } => {
            assert_eq!(ast.attributes.len(), 1);
            assert_eq!(ast.attributes[0].name, "test");
        }
        _ => panic!("Expected function with attribute, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_async_function() -> Result<()> {
    let input = "async fun fetch(url: String) -> String { http.get(url).await }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Function { name, is_async, .. } => {
            assert_eq!(name, "fetch");
            assert!(*is_async);
        }
        _ => panic!("Expected async function, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_await_expression() -> Result<()> {
    let input = "fetch(url).await";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    assert!(matches!(ast.kind, ExprKind::Await { .. }));

    Ok(())
}

#[test]
fn test_parse_import_statement() -> Result<()> {
    let input = "import std.collections.HashMap";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Import { module, items } => {
            assert_eq!(module, "std.collections");
            assert!(items.as_ref().map_or(false, |v| !v.is_empty()));
        }
        _ => panic!("Expected import, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_col_function() -> Result<()> {
    let input = "col(\"name\")";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Call { func, args } => {
            if let ExprKind::Identifier(name) = &func.kind {
                assert_eq!(name, "col");
                assert_eq!(args.len(), 1);
            } else {
                panic!("Expected col function call");
            }
        }
        _ => panic!("Expected function call, got {:?}", ast.kind),
    }

    Ok(())
}

#[test]
fn test_parse_send_operation() -> Result<()> {
    let input = "actor ! Message";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    assert!(matches!(ast.kind, ExprKind::Send { .. }));

    Ok(())
}

#[test]
fn test_parse_ask_operation() -> Result<()> {
    let input = "actor ? Request";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    assert!(matches!(ast.kind, ExprKind::Ask { .. }));

    Ok(())
}

// Bitwise operations test - simplified without BinaryOp enum
#[test]
fn test_parse_bitwise_operations() -> Result<()> {
    let cases = vec!["a & b", "a | b", "a ^ b", "a << 2", "a >> 2"];

    for input in cases {
        let mut parser = Parser::new(input);
        let ast = parser.parse()?;

        // Just verify it parses as a binary operation
        assert!(
            matches!(ast.kind, ExprKind::Binary { .. }),
            "Failed for input: {input}"
        );
    }

    Ok(())
}

#[test]
fn test_parse_power_operator() -> Result<()> {
    let input = "2 ** 8";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    // Just verify it parses as a binary operation
    assert!(matches!(ast.kind, ExprKind::Binary { .. }));

    Ok(())
}

#[test]
fn test_parse_multiple_type_parameters() -> Result<()> {
    let input = "fun map<T, U>(list: List<T>, f: T -> U) -> List<U> { }";

    let mut parser = Parser::new(input);
    let ast = parser.parse()?;

    match &ast.kind {
        ExprKind::Function { type_params, .. } => {
            assert_eq!(type_params.len(), 2);
            assert_eq!(type_params[0], "T");
            assert_eq!(type_params[1], "U");
        }
        _ => panic!("Expected generic function, got {:?}", ast.kind),
    }

    Ok(())
}