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
#![allow(clippy::unwrap_used)]
#![allow(clippy::expect_used)]
#![allow(non_snake_case)]
//! GH-148: Transpiler stdlib integration tests
//!
//! Tests for glob, mkdir, mv, chmod, starts_with, ends_with,
//! and capture-with-pipes. Extracted from transpile_quality_tests.rs
//! for file-size discipline.

// ============================================================================
// GH-148: glob() stdlib — file iteration in for loops
// ============================================================================

#[test]
fn test_GH148_glob_for_loop_produces_unquoted_pattern() {
    let rust_code = r#"
        fn main() {
            for f in glob("*.txt") {
                println!("{}", f);
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    // Glob pattern must appear UNQUOTED so shell expansion works
    assert!(
        result.contains("*.txt"),
        "Output should contain the glob pattern *.txt: {}",
        result
    );
    // Must NOT be quoted — '*.txt' or "*.txt" would prevent shell expansion
    assert!(
        !result.contains("'*.txt'"),
        "Glob pattern must not be single-quoted: {}",
        result
    );
    // Should be in a for-in loop
    assert!(
        result.contains("for"),
        "Output should contain a for loop: {}",
        result
    );
    assert!(
        result.contains("do"),
        "Output should contain 'do' keyword: {}",
        result
    );
    assert!(
        result.contains("done"),
        "Output should contain 'done' keyword: {}",
        result
    );
}

#[test]
fn test_GH148_glob_path_with_directory() {
    let rust_code = r#"
        fn main() {
            for config in glob("/etc/*.conf") {
                println!("{}", config);
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("/etc/*.conf"),
        "Output should contain the path glob /etc/*.conf: {}",
        result
    );
}

#[test]
fn test_GH148_glob_recursive_pattern() {
    let rust_code = r#"
        fn main() {
            for f in glob("src/**/*.rs") {
                println!("{}", f);
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("src/**/*.rs"),
        "Output should contain recursive glob src/**/*.rs: {}",
        result
    );
}

#[test]
fn test_GH148_glob_deterministic() {
    let rust_code = r#"
        fn main() {
            for f in glob("*.yaml") {
                println!("{}", f);
            }
        }
    "#;

    let result1 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    let result2 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    assert_eq!(
        result1, result2,
        "glob() transpilation must be deterministic"
    );
}

// ============================================================================
// GH-148: mkdir/mv/chmod stdlib — directory and file management
// ============================================================================

#[test]
fn test_GH148_mkdir_produces_mkdir_p() {
    let rust_code = r#"
        fn main() {
            mkdir("/tmp/mydir");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("mkdir"),
        "Output should contain mkdir command: {}",
        result
    );
    assert!(
        result.contains("-p"),
        "mkdir must include -p flag for idempotency: {}",
        result
    );
    assert!(
        result.contains("/tmp/mydir"),
        "Output should contain the directory path: {}",
        result
    );
}

#[test]
fn test_GH148_mv_produces_mv_command() {
    let rust_code = r#"
        fn main() {
            mv("/tmp/old.txt", "/tmp/new.txt");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("mv"),
        "Output should contain mv command: {}",
        result
    );
    assert!(
        result.contains("/tmp/old.txt"),
        "Output should contain source path: {}",
        result
    );
    assert!(
        result.contains("/tmp/new.txt"),
        "Output should contain destination path: {}",
        result
    );
}

#[test]
fn test_GH148_chmod_produces_chmod_command() {
    let rust_code = r#"
        fn main() {
            chmod("755", "/tmp/script.sh");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("chmod"),
        "Output should contain chmod command: {}",
        result
    );
    assert!(
        result.contains("755"),
        "Output should contain the permission mode: {}",
        result
    );
    assert!(
        result.contains("/tmp/script.sh"),
        "Output should contain the file path: {}",
        result
    );
}

#[test]
fn test_GH148_fs_ops_deterministic() {
    let rust_code = r#"
        fn main() {
            mkdir("/opt/app");
            mv("/tmp/a", "/tmp/b");
            chmod("644", "/tmp/b");
        }
    "#;

    let result1 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    let result2 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    assert_eq!(
        result1, result2,
        "fs operations transpilation must be deterministic"
    );
}

// ============================================================================
// GH-148: string_starts_with/string_ends_with stdlib
// ============================================================================

#[test]
fn test_GH148_starts_with_emits_runtime_function() {
    let rust_code = r#"
        fn main() {
            let name = "hello.txt";
            if string_starts_with(name, "hello") {
                println!("yes");
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("rash_string_starts_with"),
        "Output should contain rash_string_starts_with function: {}",
        result
    );
    assert!(
        result.contains("case \"$haystack\" in"),
        "Runtime function should use POSIX case pattern matching: {}",
        result
    );
    assert!(
        result.contains("\"$prefix\"*)"),
        "starts_with should match prefix pattern: {}",
        result
    );
}

#[test]
fn test_GH148_ends_with_emits_runtime_function() {
    let rust_code = r#"
        fn main() {
            let name = "hello.txt";
            if string_ends_with(name, ".txt") {
                println!("yes");
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("rash_string_ends_with"),
        "Output should contain rash_string_ends_with function: {}",
        result
    );
    assert!(
        result.contains("*\"$suffix\")"),
        "ends_with should match suffix pattern: {}",
        result
    );
}

#[test]
fn test_GH148_starts_ends_with_selective_emission() {
    // Only starts_with used — ends_with should NOT be emitted
    let rust_code = r#"
        fn main() {
            let x = "test";
            if string_starts_with(x, "te") {
                println!("yes");
            }
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("rash_string_starts_with"),
        "starts_with should be emitted: {}",
        result
    );
    assert!(
        !result.contains("rash_string_ends_with"),
        "ends_with should NOT be emitted when not used: {}",
        result
    );
}

#[test]
fn test_GH148_starts_ends_with_deterministic() {
    let rust_code = r#"
        fn main() {
            let s = "foo.bar";
            if string_starts_with(s, "foo") {
                println!("prefix match");
            }
            if string_ends_with(s, ".bar") {
                println!("suffix match");
            }
        }
    "#;

    let r1 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    let r2 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    assert_eq!(
        r1, r2,
        "starts_with/ends_with transpilation must be deterministic"
    );
}

// ============================================================================
// GH-148 / F-STDLIB-016..018: capture() with pipe operators
// ============================================================================

/// F-STDLIB-016: capture() with pipe preserves pipeline via sh -c
#[test]
fn test_GH148_capture_pipe_uses_sh_c() {
    let rust_code = r#"
        fn main() {
            let count = capture("ls /tmp | wc -l");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    // Pipe must be preserved — wrapped in sh -c
    assert!(
        result.contains("sh"),
        "Pipe command should be wrapped with sh: {}",
        result
    );
    assert!(
        result.contains("ls /tmp | wc -l"),
        "Pipe command string must be preserved intact: {}",
        result
    );
}

/// F-STDLIB-017: capture() without pipes uses direct $(cmd)
#[test]
fn test_GH148_capture_simple_no_sh_c() {
    let rust_code = r#"
        fn main() {
            let user = capture("whoami");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("$(whoami)"),
        "Simple capture should produce direct $(whoami): {}",
        result
    );
    // Should NOT use sh -c for simple commands
    assert!(
        !result.contains("sh -c") && !result.contains("sh '-c'"),
        "Simple capture should not wrap in sh -c: {}",
        result
    );
}

/// F-STDLIB-018: capture() with && operator uses sh -c
#[test]
fn test_GH148_capture_and_operator_uses_sh_c() {
    let rust_code = r#"
        fn main() {
            let result = capture("test -d /tmp && echo yes");
        }
    "#;

    let result = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();

    assert!(
        result.contains("sh"),
        "&&-command should be wrapped with sh: {}",
        result
    );
    assert!(
        result.contains("test -d /tmp && echo yes"),
        "&& operator must be preserved intact: {}",
        result
    );
}

/// Falsify: capture with pipe must actually execute correctly
#[test]
fn test_GH148_capture_pipe_deterministic() {
    let rust_code = r#"
        fn main() {
            let count = capture("ls /tmp | wc -l");
            let user = capture("whoami");
            println!("{} {}", count, user);
        }
    "#;

    let r1 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    let r2 = bashrs::transpile(rust_code, &bashrs::Config::default()).unwrap();
    assert_eq!(r1, r2, "capture with pipes must be deterministic");
}