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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
#[test]
fn test_heredoc_execution() {
    let source = r#"
fn main() {
    print_multiline();
}

fn print_multiline() {}
"#;

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

    // Write to temp file and verify it's valid shell
    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    // Should execute (even if function does nothing)
    assert!(
        output.status.success() || output.status.code() == Some(127),
        "Script should execute. Exit code: {:?}, stderr: {}",
        output.status.code(),
        String::from_utf8_lossy(&output.stderr)
    );
}

// ============================================================================
// PARAM-SPEC-003: Process ID $$ Purification
// ============================================================================

/// PARAM-SPEC-003: RED Phase
/// Test that $$ usage is documented for removal
#[test]
fn test_process_id_purification_baseline() {
    let source = r#"
fn main() {
    use_fixed_id();
}

fn use_fixed_id() {}
"#;

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

    assert!(
        result.is_ok(),
        "Should transpile fixed ID function: {:?}",
        result.err()
    );

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

    // Verify function is called (not $$)
    assert!(
        shell.contains("use_fixed_id"),
        "Should use fixed identifier, not $$"
    );

    // Should NOT contain $$ in main function (trap cleanup usage is OK)
    let main_section = shell.split("main() {").nth(1).unwrap_or("");
    let main_body = main_section.split("}").next().unwrap_or("");
    assert!(
        !main_body.contains("$$"),
        "Main function should NOT contain $$ (trap cleanup is OK, but user code shouldn't use $$)"
    );
}

/// PARAM-SPEC-003: RED Phase - ADVANCED
/// Test that std::process::id() is NOT supported
#[test]
#[ignore] // Requires std::process::id() detection and rejection
fn test_process_id_rejection() {
    let source = r#"
fn main() {
    let pid = std::process::id();
    println!("PID: {}", pid);
}
"#;

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

    // Should fail validation - non-deterministic
    assert!(
        result.is_err(),
        "std::process::id() should be rejected as non-deterministic"
    );
}

/// PARAM-SPEC-003: RED Phase - EXECUTION
/// Test fixed ID execution
#[test]
fn test_process_id_execution() {
    let source = r#"
fn main() {
    use_session_id("test-session");
}

fn use_session_id(id: &str) {}
"#;

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

    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    assert!(
        output.status.success() || output.status.code() == Some(127),
        "Script should execute with fixed ID"
    );
}

// ============================================================================
// PARAM-SPEC-004: Background PID $! Purification
// ============================================================================

/// PARAM-SPEC-004: RED Phase
/// Test that background jobs are NOT generated
#[test]
fn test_background_pid_purification_baseline() {
    let source = r#"
fn main() {
    run_sync();
}

fn run_sync() {}
"#;

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

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

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

    // Verify function is called synchronously
    assert!(
        shell.contains("run_sync"),
        "Should call function synchronously"
    );

    // Should NOT contain background operators
    assert!(
        !shell.contains(" &") && !shell.contains("$!"),
        "Should NOT contain background job operators (non-deterministic)"
    );
}

/// PARAM-SPEC-004: RED Phase - ADVANCED
/// Test that async/await is NOT supported
#[test]
#[ignore] // Requires async detection and rejection
fn test_background_async_rejection() {
    let source = r#"
async fn background_task() {
    // Some work
}

fn main() {
    background_task();
}
"#;

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

    // Should fail validation - async is non-deterministic
    assert!(
        result.is_err(),
        "async functions should be rejected as non-deterministic"
    );
}

/// PARAM-SPEC-004: RED Phase - EXECUTION
/// Test synchronous execution
#[test]
fn test_background_sync_execution() {
    let source = r#"
fn main() {
    task1();
    task2();
}

fn task1() {}
fn task2() {}
"#;

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

    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    assert!(
        output.status.success() || output.status.code() == Some(127),
        "Script should execute synchronously"
    );
}

// ============================================================================
// BASH-VAR-002: RANDOM Purification
// ============================================================================

/// BASH-VAR-002: RED Phase
/// Test that RANDOM is NOT generated
#[test]
fn test_random_purification_baseline() {
    let source = r#"
fn main() {
    use_seed(42);
}

fn use_seed(seed: i32) {}
"#;

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

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

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

    // Verify function is called with deterministic seed
    assert!(
        shell.contains("use_seed") && shell.contains("42"),
        "Should use deterministic seed"
    );

    // Should NOT contain $RANDOM
    assert!(
        !shell.contains("$RANDOM") && !shell.contains("RANDOM"),
        "Should NOT contain $RANDOM (non-deterministic)"
    );
}

/// BASH-VAR-002: RED Phase - ADVANCED
/// Test that rand crate usage is NOT supported
#[test]
#[ignore] // Requires rand crate detection and rejection
fn test_random_crate_rejection() {
    let source = r#"
fn main() {
    let num = rand::random::<u32>();
    println!("{}", num);
}
"#;

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

    // Should fail validation - random is non-deterministic
    assert!(
        result.is_err(),
        "rand crate usage should be rejected as non-deterministic"
    );
}

/// BASH-VAR-002: RED Phase - EXECUTION
/// Test deterministic value execution
#[test]
fn test_random_deterministic_execution() {
    let source = r#"
fn main() {
    use_value(12345);
}

fn use_value(val: i32) {}
"#;

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

    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    assert!(
        output.status.success() || output.status.code() == Some(127),
        "Script should execute with deterministic value"
    );
}

/// Session 6: Combined execution test
#[test]
fn test_session6_commands_execution() {
    let source = r#"
fn main() {
    print_heredoc();
    use_fixed_id();
    run_sync();
    use_seed(42);
}

fn print_heredoc() {}
fn use_fixed_id() {}
fn run_sync() {}
fn use_seed(seed: i32) {}
"#;

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

    eprintln!("Generated combined shell script:\n{}", shell);

    // Verify all functions are called
    assert!(shell.contains("print_heredoc"), "Should call print_heredoc");
    assert!(shell.contains("use_fixed_id"), "Should call use_fixed_id");
    assert!(shell.contains("run_sync"), "Should call run_sync");
    assert!(shell.contains("use_seed"), "Should call use_seed");

    // Verify NO non-deterministic constructs in main function (trap cleanup is OK)
    let main_section = shell.split("main() {").nth(1).unwrap_or("");
    let main_body = main_section.split("}").next().unwrap_or("");
    assert!(!main_body.contains("$$"), "Main should NOT contain $$");
    assert!(!main_body.contains("$!"), "Main should NOT contain $!");
    assert!(
        !main_body.contains("$RANDOM"),
        "Main should NOT contain $RANDOM"
    );
    assert!(
        !main_body.contains(" &"),
        "Main should NOT contain background &"
    );

    // Write and execute
    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    // Execution test may fail (functions undefined), but script should be valid
    eprintln!("Exit code: {:?}", output.status.code());
    eprintln!("Stderr: {}", String::from_utf8_lossy(&output.stderr));
}

// ============================================================================
// Session 7: Exit Status and Additional Purifications
// Validation of GNU Bash Manual constructs - RED Phase Tests
// ============================================================================

/// PARAM-SPEC-002: RED Phase
/// Test exit status $? baseline
#[test]
fn test_exit_status_baseline() {
    let source = r#"
fn main() {
    get_status();
}

fn get_status() -> i32 { 0 }
"#;

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

    assert!(
        result.is_ok(),
        "Should transpile exit status function: {:?}",
        result.err()
    );

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

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

/// PARAM-SPEC-002: RED Phase - ADVANCED
/// Test command exit status capture with $?
#[test]
#[ignore] // Requires $? capture pattern recognition
fn test_exit_status_capture() {
    let source = r#"
fn main() {
    run_command();
    let status = last_exit_code();
    check_status(status);
}

fn run_command() {}
fn last_exit_code() -> i32 { 0 }
fn check_status(code: i32) {}
"#;

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

    // Should capture $? after command
    assert!(shell.contains("$?"), "Should use $? to capture exit status");
}

/// PARAM-SPEC-002: RED Phase - EXECUTION
/// Test exit status execution
#[test]
fn test_exit_status_param_execution() {
    let source = r#"
fn main() {
    check_result(0);
}

fn check_result(code: i32) {}
"#;

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

    let mut file = NamedTempFile::new().expect("Failed to create temp file");
    file.write_all(shell.as_bytes())
        .expect("Failed to write shell script");

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

    assert!(
        output.status.success() || output.status.code() == Some(127),
        "Script should execute"
    );
}