bashrs 6.66.0

Rust-to-Shell transpiler for deterministic bootstrap scripts
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
#[test]
#[ignore] // Requires std::env::remove_var recognition
fn test_unset_command_std_env() {
    let source = r#"
fn main() {
    std::env::remove_var("VAR");
}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    // Should generate unset command
    assert!(
        shell.contains("unset VAR"),
        "Should convert std::env::remove_var to unset VAR"
    );
}

/// BUILTIN-009, 010, 020: Execution test
/// Test that basic commands execute successfully
#[test]
fn test_builtin_commands_execution() {
    let source = r#"
fn main() {
    set_var("TEST", "value");
    get_var("TEST");
}

fn set_var(name: &str, value: &str) {}
fn get_var(name: &str) {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_builtins.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

/// BUILTIN-016: RED Phase
/// Test test/[ command baseline
#[test]
fn test_test_command_baseline() {
    let source = r#"
fn main() {
    test_file_exists("/tmp/test.txt");
}

fn test_file_exists(path: &str) -> bool { true }
"#;

    let config = Config::default();
    let result = transpile(source, &config);

    assert!(
        result.is_ok(),
        "Should transpile test command: {:?}",
        result.err()
    );

    let shell = result.unwrap();
    eprintln!("Generated shell for test command:\n{}", shell);

    // Verify function is called
    assert!(
        shell.contains("test_file_exists"),
        "Should transpile test_file_exists function"
    );
}

/// BUILTIN-016: RED Phase - ADVANCED
/// Test std::path::Path::exists() conversion to [ -f ]
#[test]
#[ignore] // Requires std::path::Path recognition
fn test_test_command_std_path() {
    let source = r#"
fn main() {
    if std::path::Path::new("/tmp/test.txt").exists() {
        echo("exists");
    }
}

fn echo(msg: &str) {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    // Should generate test command
    assert!(
        shell.contains("[ -f") || shell.contains("[ -e") || shell.contains("test -f"),
        "Should convert Path::exists to [ -f ] or test -f"
    );
}

/// BUILTIN-016: Baseline - Execution
#[test]
fn test_test_command_execution() {
    let source = r#"
fn main() {
    check_file("/etc/hosts");
}

fn check_file(path: &str) {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_test.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

/// BASH-BUILTIN-005: RED Phase
/// Test printf preservation (should pass through)
#[test]
fn test_printf_preservation_baseline() {
    let source = r#"
fn main() {
    printf_formatted("%s %d\n", "Number:", 42);
}

fn printf_formatted(fmt: &str, args: &str, num: i32) {}
"#;

    let config = Config::default();
    let result = transpile(source, &config);

    assert!(
        result.is_ok(),
        "Should transpile printf call: {:?}",
        result.err()
    );

    let shell = result.unwrap();
    eprintln!("Generated shell for printf:\n{}", shell);

    // Verify function is called (printf is preferred, so should work)
    assert!(
        shell.contains("printf_formatted"),
        "Should transpile printf_formatted function"
    );
}

/// BASH-BUILTIN-005: RED Phase - ADVANCED
/// Test that println! converts to printf (not echo)
#[test]
#[ignore] // Requires println! → printf conversion
fn test_printf_from_println() {
    let source = r#"
fn main() {
    println!("Hello World");
    println!("Value: {}", 42);
}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    // Should use printf, not echo
    assert!(
        shell.contains("printf") && !shell.contains("echo"),
        "Should convert println! to printf, not echo"
    );
}

/// BASH-BUILTIN-005: Baseline - Execution
#[test]
fn test_printf_execution() {
    let source = r#"
fn main() {
    print_message("Test");
}

fn print_message(msg: &str) {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_printf.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

/// VAR-001: RED Phase
/// Test HOME variable baseline
#[test]
fn test_home_variable_baseline() {
    let source = r#"
fn main() {
    use_home();
}

fn use_home() {}
"#;

    let config = Config::default();
    let result = transpile(source, &config);

    assert!(
        result.is_ok(),
        "Should transpile HOME access: {:?}",
        result.err()
    );

    let shell = result.unwrap();
    eprintln!("Generated shell for HOME variable:\n{}", shell);

    // Verify function is called
    assert!(
        shell.contains("use_home"),
        "Should transpile use_home function"
    );
}

/// VAR-001: RED Phase - ADVANCED
/// Test std::env::var("HOME") conversion to $HOME
#[test]
#[ignore] // Requires env::var("HOME") recognition
fn test_home_variable_std_env() {
    let source = r#"
fn main() {
    let home = std::env::var("HOME").unwrap();
    echo(&home);
}

fn echo(msg: &str) {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    // Should use $HOME variable
    assert!(
        shell.contains("$HOME") || shell.contains("\"${HOME}\""),
        "Should convert std::env::var(\"HOME\") to $HOME"
    );
}

/// VAR-001: Baseline - Execution
#[test]
fn test_home_variable_execution() {
    let source = r#"
fn main() {
    use_home_dir();
}

fn use_home_dir() {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_home.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

/// VAR-002: RED Phase
/// Test PATH variable baseline
#[test]
fn test_path_variable_baseline() {
    let source = r#"
fn main() {
    use_path();
}

fn use_path() {}
"#;

    let config = Config::default();
    let result = transpile(source, &config);

    assert!(
        result.is_ok(),
        "Should transpile PATH access: {:?}",
        result.err()
    );

    let shell = result.unwrap();
    eprintln!("Generated shell for PATH variable:\n{}", shell);

    // Verify function is called
    assert!(
        shell.contains("use_path"),
        "Should transpile use_path function"
    );
}

/// VAR-002: RED Phase - ADVANCED
/// Test std::env::var("PATH") conversion to $PATH
#[test]
#[ignore] // Requires env::var("PATH") recognition
fn test_path_variable_std_env() {
    let source = r#"
fn main() {
    let path = std::env::var("PATH").unwrap();
    let new_path = format!("/usr/local/bin:{}", path);
    std::env::set_var("PATH", &new_path);
}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    // Should use $PATH variable
    assert!(
        shell.contains("$PATH") || shell.contains("\"${PATH}\""),
        "Should convert std::env::var(\"PATH\") to $PATH"
    );

    // Should export the modified PATH
    assert!(shell.contains("export PATH"), "Should export modified PATH");
}

/// VAR-002: Baseline - Execution
#[test]
fn test_path_variable_execution() {
    let source = r#"
fn main() {
    use_path();
}

fn use_path() {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_path.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

/// Combined execution test for all 4 new validations
#[test]
fn test_session4_commands_execution() {
    let source = r#"
fn main() {
    check_exists("/tmp");
    print_output("test");
    use_home();
    use_path();
}

fn check_exists(path: &str) {}
fn print_output(msg: &str) {}
fn use_home() {}
fn use_path() {}
"#;

    let config = Config::default();
    let shell = transpile(source, &config).unwrap();

    let temp_dir = TempDir::new().unwrap();
    let script_path = temp_dir.path().join("test_session4.sh");

    fs::write(&script_path, &shell).unwrap();

    let output = Command::new("sh")
        .arg(&script_path)
        .output()
        .expect("Failed to execute shell script");

    assert!(
        output.status.success(),
        "Script should execute successfully"
    );
}

include!("integration_tests_main_part5.rs");