incode 0.30.26038

InCode - MCP server for LLDB debugging automation
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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
// InCode Breakpoint Management Tools Test Suite
// 
// GRANULAR FEATURES TESTED:
// - F0014: set_breakpoint - Set breakpoint by address, function name, or file:line
// - F0015: set_watchpoint - Set memory watchpoint (read/write/access)
// - F0016: list_breakpoints - List all active breakpoints with details
// - F0017: delete_breakpoint - Remove specific breakpoint by ID
// - F0018: enable_breakpoint - Enable disabled breakpoint
// - F0019: disable_breakpoint - Disable breakpoint without removing
// - F0020: set_conditional_breakpoint - Set breakpoint with condition expression
// - F0021: breakpoint_commands - Set commands to execute when breakpoint hits
//
// Tests breakpoint management with real LLDB integration using test_debuggee binary

use std::time::Duration;
use std::thread;

// Import test setup utilities
mod test_setup;
use test_setup::{TestSession, TestMode, TestUtils};

use incode::lldb_manager::LldbManager;
use incode::error::{IncodeError, IncodeResult};

#[tokio::test]
async fn test_f0014_set_breakpoint_by_function() {
    // F0014: set_breakpoint - Test setting breakpoint by function name
    println!("Testing F0014: set_breakpoint by function name");
    
    let mut session = match TestSession::new(TestMode::StepDebug) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0014: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(pid) => {
            println!("✅ F0014: Test session started with PID {}", pid);
            
            // Test setting breakpoint by function name
            let result = session.lldb_manager().set_breakpoint("main");
            
            match result {
                Ok(bp_id) => {
                    println!("✅ F0014: set_breakpoint succeeded, breakpoint ID: {}", bp_id);
                    assert!(bp_id > 0, "Breakpoint ID should be positive");
                }
                Err(e) => {
                    println!("⚠️ F0014: set_breakpoint failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0014: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0014_set_breakpoint_multiple_functions() {
    // F0014: set_breakpoint - Test setting breakpoints on multiple functions
    println!("Testing F0014: set_breakpoint on multiple functions");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0014: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            let functions = ["main", "showcase_variables", "test_function_with_params"];
            let mut breakpoint_ids = Vec::new();
            
            for function in &functions {
                match session.lldb_manager().set_breakpoint(function) {
                    Ok(bp_id) => {
                        println!("✅ F0014: Breakpoint set on {}, ID: {}", function, bp_id);
                        breakpoint_ids.push(bp_id);
                    }
                    Err(e) => {
                        println!("⚠️ F0014: Failed to set breakpoint on {}: {}", function, e);
                    }
                }
            }
            
            assert!(!breakpoint_ids.is_empty(), "At least one breakpoint should be set");
            println!("✅ F0014: Successfully set {} breakpoints", breakpoint_ids.len());
        }
        Err(e) => {
            println!("⚠️ F0014: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0014_set_breakpoint_invalid_function() {
    // F0014: set_breakpoint - Test error handling for invalid function name
    println!("Testing F0014: set_breakpoint with invalid function");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0014: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            let result = session.lldb_manager().set_breakpoint("nonexistent_function_12345");
            
            match result {
                Err(e) => {
                    println!("✅ F0014: Correctly handled invalid function: {}", e);
                }
                Ok(bp_id) => {
                    println!("⚠️ F0014: set_breakpoint unexpectedly succeeded with ID {}", bp_id);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0014: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0015_set_watchpoint() {
    // F0015: set_watchpoint - Test setting memory watchpoint
    println!("Testing F0015: set_watchpoint");
    
    let mut session = match TestSession::new(TestMode::Memory) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0015: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(pid) => {
            println!("✅ F0015: Test session started with PID {}", pid);
            
            // Set breakpoint to get to a predictable state
            let _ = session.lldb_manager().set_breakpoint("create_global_patterns");
            let _ = session.lldb_manager().continue_execution();
            
            // Test setting watchpoint on global variable
            let result = session.lldb_manager().set_watchpoint(0x1000, 4, false, true); // address, size, read, write
            
            match result {
                Ok(wp_id) => {
                    println!("✅ F0015: set_watchpoint succeeded, watchpoint ID: {}", wp_id);
                    assert!(wp_id > 0, "Watchpoint ID should be positive");
                }
                Err(e) => {
                    println!("⚠️ F0015: set_watchpoint failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0015: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0016_list_breakpoints() {
    // F0016: list_breakpoints - Test listing all active breakpoints
    println!("Testing F0016: list_breakpoints");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0016: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Set some breakpoints first
            let _ = session.lldb_manager().set_breakpoint("main");
            let _ = session.lldb_manager().set_breakpoint("showcase_variables");
            
            // Test listing breakpoints
            let result = session.lldb_manager().list_breakpoints();
            
            match result {
                Ok(breakpoints) => {
                    println!("✅ F0016: list_breakpoints succeeded, found {} breakpoints", breakpoints.len());
                    
                    for (i, bp) in breakpoints.iter().enumerate() {
                        println!("  Breakpoint {}: ID={}, Location={}, Enabled={}, Hit Count={}", 
                                i + 1, bp.id, bp.location, bp.enabled, bp.hit_count);
                    }
                    
                    assert!(breakpoints.len() >= 2, "Should have at least 2 breakpoints");
                }
                Err(e) => {
                    println!("⚠️ F0016: list_breakpoints failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0016: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0016_list_breakpoints_empty() {
    // F0016: list_breakpoints - Test listing when no breakpoints exist
    println!("Testing F0016: list_breakpoints with no breakpoints");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0016: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Test listing breakpoints without setting any
            let result = session.lldb_manager().list_breakpoints();
            
            match result {
                Ok(breakpoints) => {
                    println!("✅ F0016: list_breakpoints succeeded, found {} breakpoints", breakpoints.len());
                    // Empty list is acceptable
                }
                Err(e) => {
                    println!("⚠️ F0016: list_breakpoints failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0016: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0017_delete_breakpoint() {
    // F0017: delete_breakpoint - Test deleting specific breakpoint
    println!("Testing F0017: delete_breakpoint");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0017: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Set a breakpoint first
            let bp_id = match session.lldb_manager().set_breakpoint("main") {
                Ok(id) => {
                    println!("✅ F0017: Created test breakpoint with ID {}", id);
                    id
                }
                Err(e) => {
                    println!("⚠️ F0017: Could not create test breakpoint: {}", e);
                    return;
                }
            };
            
            // Test deleting the breakpoint
            let result = session.lldb_manager().delete_breakpoint(bp_id);
            
            match result {
                Ok(_) => {
                    println!("✅ F0017: delete_breakpoint succeeded for ID {}", bp_id);
                }
                Err(e) => {
                    println!("⚠️ F0017: delete_breakpoint failed: {}", e);
                }
            }
            
            // Verify breakpoint was deleted by listing
            match session.lldb_manager().list_breakpoints() {
                Ok(breakpoints) => {
                    let found = breakpoints.iter().any(|bp| bp.id == bp_id);
                    if !found {
                        println!("✅ F0017: Breakpoint {} successfully deleted", bp_id);
                    } else {
                        println!("⚠️ F0017: Breakpoint {} still exists after deletion", bp_id);
                    }
                }
                Err(_) => {
                    println!("⚠️ F0017: Could not verify breakpoint deletion");
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0017: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0017_delete_invalid_breakpoint() {
    // F0017: delete_breakpoint - Test error handling for invalid breakpoint ID
    println!("Testing F0017: delete_breakpoint with invalid ID");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0017: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Test deleting non-existent breakpoint
            let result = session.lldb_manager().delete_breakpoint(99999);
            
            match result {
                Err(e) => {
                    println!("✅ F0017: Correctly handled invalid breakpoint ID: {}", e);
                }
                Ok(_) => {
                    println!("⚠️ F0017: delete_breakpoint unexpectedly succeeded for invalid ID");
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0017: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0018_enable_breakpoint() {
    // F0018: enable_breakpoint - Test enabling disabled breakpoint
    println!("Testing F0018: enable_breakpoint");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0018: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Set and then disable a breakpoint
            let bp_id = match session.lldb_manager().set_breakpoint("main") {
                Ok(id) => id,
                Err(e) => {
                    println!("⚠️ F0018: Could not create test breakpoint: {}", e);
                    return;
                }
            };
            
            // Disable it first
            let _ = session.lldb_manager().disable_breakpoint(bp_id);
            
            // Test enabling the breakpoint
            let result = session.lldb_manager().enable_breakpoint(bp_id);
            
            match result {
                Ok(_) => {
                    println!("✅ F0018: enable_breakpoint succeeded for ID {}", bp_id);
                }
                Err(e) => {
                    println!("⚠️ F0018: enable_breakpoint failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0018: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0019_disable_breakpoint() {
    // F0019: disable_breakpoint - Test disabling breakpoint without removing
    println!("Testing F0019: disable_breakpoint");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0019: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Set a breakpoint first
            let bp_id = match session.lldb_manager().set_breakpoint("main") {
                Ok(id) => id,
                Err(e) => {
                    println!("⚠️ F0019: Could not create test breakpoint: {}", e);
                    return;
                }
            };
            
            // Test disabling the breakpoint
            let result = session.lldb_manager().disable_breakpoint(bp_id);
            
            match result {
                Ok(_) => {
                    println!("✅ F0019: disable_breakpoint succeeded for ID {}", bp_id);
                }
                Err(e) => {
                    println!("⚠️ F0019: disable_breakpoint failed: {}", e);
                }
            }
            
            // Verify breakpoint still exists but is disabled
            match session.lldb_manager().list_breakpoints() {
                Ok(breakpoints) => {
                    if let Some(bp) = breakpoints.iter().find(|bp| bp.id == bp_id) {
                        if !bp.enabled {
                            println!("✅ F0019: Breakpoint {} successfully disabled", bp_id);
                        } else {
                            println!("⚠️ F0019: Breakpoint {} still enabled after disable", bp_id);
                        }
                    } else {
                        println!("⚠️ F0019: Breakpoint {} not found after disable", bp_id);
                    }
                }
                Err(_) => {
                    println!("⚠️ F0019: Could not verify breakpoint status");
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0019: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0020_set_conditional_breakpoint() {
    // F0020: set_conditional_breakpoint - Test setting breakpoint with condition
    println!("Testing F0020: set_conditional_breakpoint");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0020: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Test setting conditional breakpoint
            let result = session.lldb_manager().set_conditional_breakpoint(
                "main", 
                "argc > 1"
            );
            
            match result {
                Ok(bp_id) => {
                    println!("✅ F0020: set_conditional_breakpoint succeeded, ID: {}", bp_id);
                    assert!(bp_id > 0, "Breakpoint ID should be positive");
                }
                Err(e) => {
                    println!("⚠️ F0020: set_conditional_breakpoint failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0020: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_f0021_breakpoint_commands() {
    // F0021: breakpoint_commands - Test setting commands for breakpoint
    println!("Testing F0021: breakpoint_commands");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ F0021: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            // Set a breakpoint first
            let bp_id = match session.lldb_manager().set_breakpoint("main") {
                Ok(id) => id,
                Err(e) => {
                    println!("⚠️ F0021: Could not create test breakpoint: {}", e);
                    return;
                }
            };
            
            // Test setting breakpoint commands
            let commands = vec!["print argc".to_string(), "bt".to_string()];
            let result = session.lldb_manager().set_breakpoint_commands(bp_id, &commands);
            
            match result {
                Ok(_) => {
                    println!("✅ F0021: breakpoint_commands succeeded for ID {}", bp_id);
                }
                Err(e) => {
                    println!("⚠️ F0021: breakpoint_commands failed: {}", e);
                }
            }
        }
        Err(e) => {
            println!("⚠️ F0021: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}

#[tokio::test]
async fn test_breakpoint_management_workflow() {
    // Integration test: Complete breakpoint management workflow
    println!("Testing breakpoint management workflow integration");
    
    let mut session = match TestSession::new(TestMode::Normal) {
        Ok(s) => s,
        Err(e) => {
            println!("⚠️ Workflow: Could not create test session: {}", e);
            return;
        }
    };
    
    match session.start() {
        Ok(_pid) => {
            println!("✅ Workflow: Test session started");
            
            // Step 1: Set multiple breakpoints
            let bp_ids = TestUtils::get_test_breakpoint_locations()
                .into_iter()
                .filter_map(|func| {
                    match session.lldb_manager().set_breakpoint(func) {
                        Ok(id) => {
                            println!("✅ Workflow: Set breakpoint on {}, ID: {}", func, id);
                            Some(id)
                        }
                        Err(_) => None,
                    }
                })
                .collect::<Vec<_>>();
            
            assert!(!bp_ids.is_empty(), "Should set at least one breakpoint");
            
            // Step 2: List all breakpoints
            match session.lldb_manager().list_breakpoints() {
                Ok(breakpoints) => {
                    println!("✅ Workflow: Listed {} breakpoints", breakpoints.len());
                    assert!(breakpoints.len() >= bp_ids.len());
                }
                Err(e) => println!("⚠️ Workflow: Failed to list breakpoints: {}", e),
            }
            
            // Step 3: Disable some breakpoints
            for (i, &bp_id) in bp_ids.iter().take(2).enumerate() {
                match session.lldb_manager().disable_breakpoint(bp_id) {
                    Ok(_) => println!("✅ Workflow: Disabled breakpoint {} (ID: {})", i + 1, bp_id),
                    Err(e) => println!("⚠️ Workflow: Failed to disable breakpoint {}: {}", bp_id, e),
                }
            }
            
            // Step 4: Re-enable breakpoints
            for (i, &bp_id) in bp_ids.iter().take(2).enumerate() {
                match session.lldb_manager().enable_breakpoint(bp_id) {
                    Ok(_) => println!("✅ Workflow: Re-enabled breakpoint {} (ID: {})", i + 1, bp_id),
                    Err(e) => println!("⚠️ Workflow: Failed to enable breakpoint {}: {}", bp_id, e),
                }
            }
            
            // Step 5: Delete some breakpoints
            for &bp_id in bp_ids.iter().skip(2) {
                match session.lldb_manager().delete_breakpoint(bp_id) {
                    Ok(_) => println!("✅ Workflow: Deleted breakpoint ID: {}", bp_id),
                    Err(e) => println!("⚠️ Workflow: Failed to delete breakpoint {}: {}", bp_id, e),
                }
            }
            
            // Step 6: Final verification
            match session.lldb_manager().list_breakpoints() {
                Ok(final_breakpoints) => {
                    println!("✅ Workflow: Final breakpoint count: {}", final_breakpoints.len());
                }
                Err(e) => println!("⚠️ Workflow: Final list failed: {}", e),
            }
            
            println!("✅ Workflow: Complete breakpoint management workflow tested");
        }
        Err(e) => {
            println!("⚠️ Workflow: Could not start debugging session: {}", e);
        }
    }
    
    let _ = session.cleanup();
}