windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
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
#![cfg(any(
    not(any(
        feature = "parser_tests",
        feature = "analyzer_tests",
        feature = "codegen_tests",
        feature = "interpreter_tests",
        feature = "conformance_tests",
        feature = "integration_tests",
    )),
    feature = "analyzer_tests",
))]

//! String Handling Tests
//!
//! Tests for automatic string type conversions including:
//! - Mutable string variables get .to_string()
//! - String literals in function args
//! - Match arm type consistency
//! - String concatenation in returns

#[path = "common/test_utils.rs"]
mod test_utils;

/// Helper to compile and verify generated Rust code
// ============================================================================
// Test: Mutable String Variables
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_mutable_string_empty_init() {
    let code = r#"
pub fn build_html() -> string {
    let mut html = ""
    html = html + "<div>"
    html = html + "</div>"
    html
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // Mutable string should be initialized as String
    assert!(
        generated.contains(r#""".to_string()"#) || generated.contains("String::new()"),
        "Mutable string should be String. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_mutable_string_with_initial_value() {
    let code = r#"
pub fn greet(name: string) -> string {
    let mut greeting = "Hello, "
    greeting = greeting + name
    greeting = greeting + "!"
    greeting
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""Hello, ".to_string()"#)
            || generated.contains(r#"string::from("Hello, ")"#)
            || generated.contains(r#"String::from("Hello, ")"#),
        "Mutable string should be String. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_immutable_string_no_to_string() {
    let code = r#"
pub fn get_message() -> &'static string {
    let msg = "Hello"
    msg
}
"#;

    // This tests that immutable strings don't unnecessarily get .to_string()
    let (success, _generated, _err) = test_utils::compile_via_cli(code);
    // Note: This may or may not compile depending on return type handling
    // The important thing is that we test the behavior
    let _ = success;
}

// ============================================================================
// Test: String Literals in Function Arguments
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_string_literal_to_stored_param() {
    // When parameter is stored (not just returned), it should be owned
    let code = r#"
pub struct Container {
    value: string,
}

impl Container {
    pub fn new(data: string) -> Container {
        Container { value: data }
    }
}

pub fn create() -> Container {
    Container::new("hello")
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // String literal passed to struct-literal-stored &str param — direct at call site.
    assert!(
        generated.contains("Container::new(\"hello\")"),
        "String literal should pass as &str at call site. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_string_literal_to_method_contains() {
    let code = r#"
pub fn has_word(text: string) -> bool {
    text.contains("word")
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // contains() takes &str, should NOT have .to_string()
    assert!(
        !generated.contains(r#""word".to_string()"#),
        "contains() should not convert literal. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: Match Arm Type Consistency
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_match_arms_all_literals() {
    let code = r#"
pub fn status_message(code: i32) -> string {
    match code {
        0 => "OK",
        1 => "Warning",
        2 => "Error",
        _ => "Unknown",
    }
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    let ok_converted = generated.contains(r#""OK".to_string()"#)
        || generated.contains(r#"string::from("OK")"#)
        || generated.contains(r#"String::from("OK")"#);
    let warning_converted = generated.contains(r#""Warning".to_string()"#)
        || generated.contains(r#"string::from("Warning")"#)
        || generated.contains(r#"String::from("Warning")"#);

    assert!(
        ok_converted && warning_converted,
        "Match arms should all be String. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_match_arms_mixed_types() {
    let code = r#"
pub fn format_value(opt: Option<string>) -> string {
    match opt {
        Some(s) => s,
        None => "default",
    }
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""default".to_string()"#)
            || generated.contains(r#"string::from("default")"#)
            || generated.contains(r#"String::from("default")"#),
        "None arm should be converted to String. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: Return Statement String Handling
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_return_string_literal() {
    let code = r#"
pub fn get_name() -> string {
    return "Alice"
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""Alice".to_string()"#)
            || generated.contains(r#"string::from("Alice")"#)
            || generated.contains(r#"String::from("Alice")"#),
        "Return literal should be String. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_implicit_return_string_literal() {
    let code = r#"
pub fn get_version() -> string {
    "1.0.0"
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""1.0.0".to_string()"#)
            || generated.contains(r#"string::from("1.0.0")"#)
            || generated.contains(r#"String::from("1.0.0")"#),
        "Implicit return should be String. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: String Method Chains
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_replace_method() {
    let code = r#"
pub fn escape_html(text: string) -> string {
    text.replace("&", "&amp;").replace("<", "&lt;").replace(">", "&gt;")
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // replace() takes &str, should NOT have .to_string() on arguments
    assert!(
        !generated.contains(r#""&".to_string()"#),
        "replace() pattern should not be converted. Generated:\n{}",
        generated
    );
    assert!(
        !generated.contains(r#""&amp;".to_string()"#),
        "replace() replacement should not be converted. Generated:\n{}",
        generated
    );
}

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_split_method() {
    let code = r#"
pub fn get_parts(text: string) -> Vec<string> {
    let mut parts = Vec::new()
    for part in text.split(",") {
        parts.push(part.to_string())
    }
    parts
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // split() takes &str
    assert!(
        !generated.contains(r#"",".to_string()"#),
        "split() delimiter should not be converted. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: Struct Field Initialization
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_struct_string_fields() {
    let code = r#"
pub struct Person {
    name: string,
    city: string,
}

pub fn create_person() -> Person {
    Person {
        name: "John",
        city: "New York",
    }
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    // String fields should have .to_string()
    assert!(
        generated.contains(r#""John".to_string()"#) || generated.contains("String::from"),
        "Struct string fields should be String. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: Vec<String> Operations
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_vec_push_string_literal() {
    let code = r#"
pub fn get_colors() -> Vec<string> {
    let mut colors = Vec::new()
    colors.push("red")
    colors.push("green")
    colors.push("blue")
    colors
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""red".to_string()"#)
            || generated.contains(r#"string::from("red")"#)
            || generated.contains(r#"String::from("red")"#),
        "Vec::push should convert literal. Generated:\n{}",
        generated
    );
}

// ============================================================================
// Test: If/Else String Returns
// ============================================================================

#[test]
#[cfg_attr(tarpaulin, ignore)]
fn test_if_else_string_returns() {
    let code = r#"
pub fn classify(n: i32) -> string {
    if n > 0 {
        "positive"
    } else if n < 0 {
        "negative"
    } else {
        "zero"
    }
}
"#;

    let (generated, success) = test_utils::compile_single_check(code);
    let err = if !success { &generated } else { "" };
    assert!(success, "Compilation failed: {}", err);

    assert!(
        generated.contains(r#""positive".to_string()"#)
            || generated.contains(r#"string::from("positive")"#)
            || generated.contains(r#"String::from("positive")"#),
        "If branch should be String. Generated:\n{}",
        generated
    );
    assert!(
        generated.contains(r#""zero".to_string()"#)
            || generated.contains(r#"string::from("zero")"#)
            || generated.contains(r#"String::from("zero")"#),
        "Else branch should be String. Generated:\n{}",
        generated
    );
}