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

    /// Test: REPL-007-MUTATION-002 - Greater than or equal (>=) operator
    ///
    /// This test catches mutants:
    /// - Line 228: replace + with - or * in `pos + 2` (value parsing)
    /// - Line 282: delete match arm ">=" (operator missing)
    ///
    /// RED phase: Write comprehensive test for >= operator
    #[test]
    fn test_REPL_007_MUTATION_002_greater_than_or_equal() {
        let mut vars = HashMap::new();

        // Test case 1: >= with value GREATER than threshold (should break)
        vars.insert("count".to_string(), "10".to_string());
        let bp_gt = Breakpoint::with_condition(5, "$count >= 5".to_string());
        assert!(
            bp_gt.should_break(&vars),
            "Should break when count (10) >= 5 (greater than threshold)"
        );

        // Test case 2: >= with value EQUAL to threshold (should break)
        vars.insert("count".to_string(), "5".to_string());
        let bp_eq = Breakpoint::with_condition(5, "$count >= 5".to_string());
        assert!(
            bp_eq.should_break(&vars),
            "Should break when count (5) >= 5 (equal to threshold)"
        );

        // Test case 3: >= with value LESS than threshold (should NOT break)
        vars.insert("count".to_string(), "3".to_string());
        let bp_lt = Breakpoint::with_condition(5, "$count >= 5".to_string());
        assert!(
            !bp_lt.should_break(&vars),
            "Should NOT break when count (3) >= 5 (less than threshold)"
        );

        // Test case 4: >= with multi-digit value (tests parsing of value_part)
        vars.insert("count".to_string(), "100".to_string());
        let bp_large = Breakpoint::with_condition(5, "$count >= 99".to_string());
        assert!(
            bp_large.should_break(&vars),
            "Should break when count (100) >= 99 (multi-digit value parsing)"
        );

        // Test case 5: >= boundary case (exactly at boundary)
        vars.insert("count".to_string(), "0".to_string());
        let bp_zero = Breakpoint::with_condition(5, "$count >= 0".to_string());
        assert!(
            bp_zero.should_break(&vars),
            "Should break when count (0) >= 0 (zero boundary)"
        );
    }

    /// Test: REPL-007-MUTATION-003 - Less than or equal (<=) operator
    ///
    /// This test catches mutants:
    /// - Line 232: replace + with - or * in `pos + 2` (value parsing)
    /// - Line 291: delete match arm "<=" (operator missing)
    ///
    /// RED phase: Write comprehensive test for <= operator
    #[test]
    fn test_REPL_007_MUTATION_003_less_than_or_equal() {
        let mut vars = HashMap::new();

        // Test case 1: <= with value LESS than threshold (should break)
        vars.insert("count".to_string(), "3".to_string());
        let bp_lt = Breakpoint::with_condition(5, "$count <= 5".to_string());
        assert!(
            bp_lt.should_break(&vars),
            "Should break when count (3) <= 5 (less than threshold)"
        );

        // Test case 2: <= with value EQUAL to threshold (should break)
        vars.insert("count".to_string(), "5".to_string());
        let bp_eq = Breakpoint::with_condition(5, "$count <= 5".to_string());
        assert!(
            bp_eq.should_break(&vars),
            "Should break when count (5) <= 5 (equal to threshold)"
        );

        // Test case 3: <= with value GREATER than threshold (should NOT break)
        vars.insert("count".to_string(), "10".to_string());
        let bp_gt = Breakpoint::with_condition(5, "$count <= 5".to_string());
        assert!(
            !bp_gt.should_break(&vars),
            "Should NOT break when count (10) <= 5 (greater than threshold)"
        );

        // Test case 4: <= with multi-digit value (tests parsing of value_part)
        vars.insert("count".to_string(), "50".to_string());
        let bp_large = Breakpoint::with_condition(5, "$count <= 99".to_string());
        assert!(
            bp_large.should_break(&vars),
            "Should break when count (50) <= 99 (multi-digit value parsing)"
        );

        // Test case 5: <= boundary case (exactly at boundary)
        vars.insert("count".to_string(), "0".to_string());
        let bp_zero = Breakpoint::with_condition(5, "$count <= 0".to_string());
        assert!(
            bp_zero.should_break(&vars),
            "Should break when count (0) <= 0 (zero boundary)"
        );

        // Test case 6: <= with negative comparison (edge case)
        vars.insert("count".to_string(), "-5".to_string());
        let bp_neg = Breakpoint::with_condition(5, "$count <= 0".to_string());
        assert!(
            bp_neg.should_break(&vars),
            "Should break when count (-5) <= 0 (negative value)"
        );
    }

    /// Test: REPL-007-MUTATION-004 - Less than (<) operator boundary conditions
    ///
    /// This test catches the mutant at line 277: replace `<` with `<=`
    ///
    /// RED phase: Write comprehensive boundary test for < operator
    #[test]
    fn test_REPL_007_MUTATION_004_less_than_boundary() {
        let mut vars = HashMap::new();

        // Test case 1: < with value LESS than threshold (should break)
        vars.insert("count".to_string(), "3".to_string());
        let bp_lt = Breakpoint::with_condition(5, "$count < 5".to_string());
        assert!(
            bp_lt.should_break(&vars),
            "Should break when count (3) < 5 (less than threshold)"
        );

        // Test case 2: < with value EQUAL to threshold (should NOT break)
        // This is the KEY boundary test that catches the mutant `<` → `<=`
        vars.insert("count".to_string(), "5".to_string());
        let bp_eq = Breakpoint::with_condition(5, "$count < 5".to_string());
        assert!(
            !bp_eq.should_break(&vars),
            "Should NOT break when count (5) < 5 (EQUAL to threshold) - catches `<` → `<=` mutant"
        );

        // Test case 3: < with value GREATER than threshold (should NOT break)
        vars.insert("count".to_string(), "10".to_string());
        let bp_gt = Breakpoint::with_condition(5, "$count < 5".to_string());
        assert!(
            !bp_gt.should_break(&vars),
            "Should NOT break when count (10) < 5 (greater than threshold)"
        );

        // Test case 4: < with multi-digit values (tests value parsing)
        vars.insert("count".to_string(), "50".to_string());
        let bp_large = Breakpoint::with_condition(5, "$count < 99".to_string());
        assert!(
            bp_large.should_break(&vars),
            "Should break when count (50) < 99 (multi-digit value parsing)"
        );

        // Test case 5: < boundary at zero
        vars.insert("count".to_string(), "0".to_string());
        let bp_zero = Breakpoint::with_condition(5, "$count < 0".to_string());
        assert!(
            !bp_zero.should_break(&vars),
            "Should NOT break when count (0) < 0 (zero boundary - equal case)"
        );
    }

    /// Test: REPL-007-002-002 - Conditional breakpoint evaluates to false
    #[test]
    fn test_REPL_007_002_conditional_false() {
        let mut vars = HashMap::new();
        vars.insert("count".to_string(), "5".to_string());

        // Create conditional breakpoint: break if $count > 10
        let bp = Breakpoint::with_condition(5, "$count > 10".to_string());

        assert!(
            !bp.should_break(&vars),
            "Should not break when count (5) <= 10"
        );
    }

    /// Test: REPL-007-002-003 - Conditional breakpoint with invalid syntax
    #[test]
    fn test_REPL_007_002_conditional_invalid() {
        let vars = HashMap::new();

        // Invalid condition (missing variable)
        let bp1 = Breakpoint::with_condition(5, "$missing > 10".to_string());
        assert!(
            !bp1.should_break(&vars),
            "Should not break with missing variable"
        );

        // Invalid condition (bad syntax)
        let bp2 = Breakpoint::with_condition(5, "invalid syntax".to_string());
        assert!(
            !bp2.should_break(&vars),
            "Should not break with invalid syntax"
        );
    }

    /// Test: REPL-007-002-004 - String equality condition
    #[test]
    fn test_REPL_007_002_string_equality() {
        let mut vars = HashMap::new();
        vars.insert("status".to_string(), "running".to_string());

        // Test == operator
        let bp_eq = Breakpoint::with_condition(5, "$status == running".to_string());
        assert!(
            bp_eq.should_break(&vars),
            "Should break when status == running"
        );

        // Test != operator
        let bp_ne = Breakpoint::with_condition(5, "$status != stopped".to_string());
        assert!(
            bp_ne.should_break(&vars),
            "Should break when status != stopped"
        );

        // Test != operator (false case)
        let bp_ne_false = Breakpoint::with_condition(5, "$status != running".to_string());
        assert!(
            !bp_ne_false.should_break(&vars),
            "Should not break when status == running (but checking !=)"
        );
    }

    /// Test: REPL-007-002-005 - Less than comparison
    #[test]
    fn test_REPL_007_002_less_than() {
        let mut vars = HashMap::new();
        vars.insert("count".to_string(), "5".to_string());

        // Test < operator (true)
        let bp_lt = Breakpoint::with_condition(5, "$count < 10".to_string());
        assert!(
            bp_lt.should_break(&vars),
            "Should break when count (5) < 10"
        );

        // Test < operator (false)
        let bp_lt_false = Breakpoint::with_condition(5, "$count < 3".to_string());
        assert!(
            !bp_lt_false.should_break(&vars),
            "Should not break when count (5) >= 3"
        );
    }

    /// Test: REPL-007-002-006 - Disabled conditional breakpoint
    #[test]
    fn test_REPL_007_002_disabled_conditional() {
        let mut vars = HashMap::new();
        vars.insert("count".to_string(), "15".to_string());

        // Create and disable conditional breakpoint
        let mut bp = Breakpoint::with_condition(5, "$count > 10".to_string());
        bp.disable();

        assert!(
            !bp.should_break(&vars),
            "Disabled breakpoint should not trigger even if condition is true"
        );
    }

    // ===== HIT-COUNT BREAKPOINTS (REPL-007-003) =====

    /// Test: REPL-007-003-001 - Hit-count breakpoint triggers after threshold
    #[test]
    fn test_REPL_007_003_hit_count_trigger() {
        let vars = HashMap::new();
        let mut bp = Breakpoint::with_hit_count(5, 3); // Break after 3 hits

        // First two hits should not trigger
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break on hit 1"
        );
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break on hit 2"
        );

        // Third hit should trigger
        assert!(bp.should_break_with_hit(&vars), "Should break on hit 3");

        // Subsequent hits should also trigger
        assert!(bp.should_break_with_hit(&vars), "Should break on hit 4");
    }

    /// Test: REPL-007-003-002 - Hit-count breakpoint does not trigger before threshold
    #[test]
    fn test_REPL_007_003_hit_count_not_reached() {
        let vars = HashMap::new();
        let mut bp = Breakpoint::with_hit_count(5, 5); // Break after 5 hits

        // First 4 hits should not trigger
        for i in 1..=4 {
            assert!(
                !bp.should_break_with_hit(&vars),
                "Should not break on hit {}",
                i
            );
        }

        // Fifth hit should trigger
        assert!(bp.should_break_with_hit(&vars), "Should break on hit 5");
    }

    /// Test: REPL-007-003-003 - Hit-count resets correctly
    #[test]
    fn test_REPL_007_003_hit_count_reset() {
        let vars = HashMap::new();
        let mut bp = Breakpoint::with_hit_count(5, 2); // Break after 2 hits

        // Hit twice
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break on hit 1"
        );
        assert!(bp.should_break_with_hit(&vars), "Should break on hit 2");

        // Reset hit count
        bp.reset_hit_count();

        // Should not trigger on first hit after reset
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break after reset"
        );
        assert!(
            bp.should_break_with_hit(&vars),
            "Should break on hit 2 after reset"
        );
    }

    /// Test: REPL-007-003-004 - Hit-count with condition (both must be true)
    #[test]
    fn test_REPL_007_003_hit_count_with_condition() {
        let mut vars = HashMap::new();
        vars.insert("count".to_string(), "15".to_string());

        let mut bp = Breakpoint::with_hit_count_and_condition(5, 2, "$count > 10".to_string());

        // First hit: condition true, but hit count not reached
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break: condition true but hit count = 1"
        );

        // Second hit: condition true and hit count reached
        assert!(
            bp.should_break_with_hit(&vars),
            "Should break: condition true and hit count = 2"
        );
    }

    /// Test: REPL-007-003-005 - Get current hit count
    #[test]
    fn test_REPL_007_003_get_hit_count() {
        let vars = HashMap::new();
        let mut bp = Breakpoint::with_hit_count(5, 3);

        assert_eq!(bp.get_hit_count(), 0, "Initial hit count should be 0");

        bp.should_break_with_hit(&vars);
        assert_eq!(
            bp.get_hit_count(),
            1,
            "Hit count should be 1 after first hit"
        );

        bp.should_break_with_hit(&vars);
        assert_eq!(
            bp.get_hit_count(),
            2,
            "Hit count should be 2 after second hit"
        );

        bp.should_break_with_hit(&vars);
        assert_eq!(
            bp.get_hit_count(),
            3,
            "Hit count should be 3 after third hit"
        );
    }

    /// Test: REPL-007-003-006 - Disabled hit-count breakpoint never triggers
    #[test]
    fn test_REPL_007_003_disabled_hit_count() {
        let vars = HashMap::new();
        let mut bp = Breakpoint::with_hit_count(5, 2);
        bp.disable();

        // Even after reaching threshold, disabled breakpoint should not trigger
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break when disabled"
        );
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break when disabled"
        );
        assert!(
            !bp.should_break_with_hit(&vars),
            "Should not break when disabled"
        );


}