ghostscope 0.1.1

Command-line entrypoint that drives GhostScope compiler, loader, and UI end-to-end.
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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
//! Complex types script execution test
//! - Uses a long-running test program with complex DWARF types
//! - Validates struct/array/member/bitfield/union/enum formatting and array index

mod common;

use common::{init, OptimizationLevel, FIXTURES};
use std::process::Stdio;
use std::time::Duration;
use tokio::process::Command;

async fn run_ghostscope_with_script_for_pid(
    script_content: &str,
    timeout_secs: u64,
    pid: u32,
) -> anyhow::Result<(i32, String, String)> {
    common::runner::GhostscopeRunner::new()
        .with_script(script_content)
        .with_pid(pid)
        .timeout_secs(timeout_secs)
        .enable_sysmon_shared_lib(false)
        .run()
        .await
}

async fn run_ghostscope_with_script_for_pid_perf(
    script_content: &str,
    timeout_secs: u64,
    pid: u32,
) -> anyhow::Result<(i32, String, String)> {
    common::runner::GhostscopeRunner::new()
        .with_script(script_content)
        .with_pid(pid)
        .timeout_secs(timeout_secs)
        .force_perf_event_array(true)
        .enable_sysmon_shared_lib(false)
        .run()
        .await
}

#[tokio::test]
async fn test_memcmp_int_array_decay_to_pointer() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Use DWARF int arr[8] directly as a pointer via decay semantics
    let script = r#"
trace update_complex {
    if memcmp(c.arr, c.arr, 16) { print "ARR_EQ"; }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 2, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    assert!(
        stdout.contains("ARR_EQ"),
        "Expected ARR_EQ. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_entry_prints() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Script based on t.gs semantics, but inlined (no file read)
    let script = r#"
trace complex_types_program.c:7 {
    print &*&*c;        // pointer address of c (struct Complex*)
    print c.friend_ref; // pointer value or NULL
    print c.name;       // char[16] -> string
    print *c.friend_ref; // dereferenced struct (or null-deref error)
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully (stderr={stderr}, stdout={stdout})"
    );

    // Validate pointer prints include type suffix and hex
    let has_any_ptr = stdout.contains("0x") && stdout.contains("(Complex*)");
    assert!(
        has_any_ptr,
        "Expected pointer print with type suffix. STDOUT: {stdout}"
    );

    // Validate c.name renders as a quoted string
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(has_name, "Expected c.name string. STDOUT: {stdout}");

    // Validate deref prints either a pretty struct or a null-deref error
    let has_deref_struct = stdout.contains("*c.friend_ref")
        && (stdout.contains("Complex {") || stdout.contains("<error: null pointer dereference>"));
    assert!(
        has_deref_struct,
        "Expected deref output (struct or null-deref). STDOUT: {stdout}"
    );

    let _ = prog.kill().await.is_ok();
    Ok(())
}

#[tokio::test]
async fn test_memcmp_struct_name_equal_and_diff() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Compare embedded char[16] field name: &c.name[0] vs itself / offset 1
    let script = r#"
trace update_complex {
    if memcmp(&c.name[0], &c.name[0], 5) { print "CNAME_EQ"; }
    if !memcmp(&c.name[0], &c.name[1], 5) { print "CNAME_NE"; }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    assert!(
        stdout.contains("CNAME_EQ"),
        "Expected CNAME_EQ. STDOUT: {stdout}"
    );
    assert!(
        stdout.contains("CNAME_NE"),
        "Expected CNAME_NE. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_memcmp_dynamic_and_zero_negative_on_name() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    let script = r#"
trace update_complex {
    // len=0 -> true
    if memcmp(&c.name[0], &c.name[1], 0) { print "Z0"; }
    // dynamic len from script var
    let n = 8;
    if memcmp(&c.name[0], &c.name[0], n) { print "DYN_OK"; }
    // negative clamps to 0 -> true
    let k = -3;
    if memcmp(&c.name[0], &c.name[1], k) { print "NEG_OK"; }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    assert!(stdout.contains("Z0"), "Expected Z0. STDOUT: {stdout}");
    assert!(
        stdout.contains("DYN_OK"),
        "Expected DYN_OK. STDOUT: {stdout}"
    );
    assert!(
        stdout.contains("NEG_OK"),
        "Expected NEG_OK. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_string_comparison_struct_char_array() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Compare embedded char[16] field c.name against script literals
    // update_complex(&a, i) and update_complex(&b, i) are both called each second
    let script = r#"
trace update_complex {
    if (c.name == "Alice") { print "CNAME_A"; }
    if (c.name == "Bob") { print "CNAME_B"; }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    // We expect to see at least one of the names captured within the window
    let saw_a = stdout.contains("CNAME_A");
    let saw_b = stdout.contains("CNAME_B");
    assert!(
        saw_a || saw_b,
        "Expected to see at least Alice or Bob. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_local_array_constant_index_format() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Format-print with local array constant indices
    let script = r#"
trace complex_types_program.c:25 {
    print "ARR:{}|BRR:{}", a.arr[1], b.arr[0];
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re_arr = Regex::new(r"ARR:(-?\d+)").unwrap();
    let re_brr = Regex::new(r"BRR:(-?\d+)").unwrap();
    let has_arr = stdout.lines().any(|l| re_arr.is_match(l));
    let has_brr = stdout.lines().any(|l| re_brr.is_match(l));
    assert!(
        has_arr,
        "Expected formatted ARR value from a.arr[1]. STDOUT: {stdout}"
    );
    assert!(
        has_brr,
        "Expected formatted BRR value from b.arr[0]. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_local_chain_tail_array_index_format() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Member chain + constant index: b.friend_ref.arr[1] (friend_ref -> &a) and a.arr[2]
    // Attach at main where a/b are locals
    let script = r#"
trace complex_types_program.c:25 {
    print "CF:{}|AF:{}", b.friend_ref.arr[1], a.arr[2];
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re_cf = Regex::new(r"CF:(-?\d+)").unwrap();
    let re_af = Regex::new(r"AF:(-?\d+)").unwrap();
    let has_cf = stdout.lines().any(|l| re_cf.is_match(l));
    let has_af = stdout.lines().any(|l| re_af.is_match(l));
    assert!(
        has_cf,
        "Expected CF value from b.friend_ref.arr[1]. STDOUT: {stdout}"
    );
    assert!(has_af, "Expected AF value from a.arr[2]. STDOUT: {stdout}");

    Ok(())
}

#[tokio::test]
async fn test_local_array_constant_index_access() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Local array constant index on a struct local (a.arr[1]) and another (b.arr[0])
    let script = r#"
trace complex_types_program.c:25 {
    print "AR:{}", a.arr[1];
    print "BR:{}", b.arr[0];
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re_ar = Regex::new(r"AR:(-?\d+)").unwrap();
    let re_br = Regex::new(r"BR:(-?\d+)").unwrap();
    let has_ar = stdout.lines().any(|l| re_ar.is_match(l));
    let has_br = stdout.lines().any(|l| re_br.is_match(l));
    assert!(
        has_ar,
        "Expected at least one numeric a.arr[1] sample. STDOUT: {stdout}"
    );
    assert!(
        has_br,
        "Expected at least one numeric b.arr[0] sample. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_cross_type_comparisons_local() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Cross-type comparisons (string equality is covered by dedicated tests)
    // - a.age > 26 (DWARF int vs script int)
    // - a.status == 0 (DWARF enum-as-int vs script int)
    // - a.friend_ref == 0 (DWARF pointer vs script int)
    // - let t = 100; a.age < t (DWARF int vs script variable)
    let script = r#"
trace complex_types_program.c:25 {
    let t = 100;
    print "GT:{} EQ:{} PZ:{} LT:{}",
        a.age > 26,
        a.status == 0,
        a.friend_ref == 0,
        a.age < t;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re =
        Regex::new(r"GT:(true|false) EQ:(true|false) PZ:(true|false) LT:(true|false)").unwrap();
    let mut saw_line = false;
    let mut saw_pz_true = false;
    for line in stdout.lines() {
        if let Some(c) = re.captures(line) {
            saw_line = true;
            if &c[3] == "true" {
                saw_pz_true = true; // friend_ref == 0
            }
        }
    }
    assert!(
        saw_line,
        "Expected at least one comparison line. STDOUT: {stdout}"
    );
    assert!(
        saw_pz_true,
        "Expected PZ:1 for pointer==0. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_special_vars_pid_tid_timestamp_complex() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    let script = format!(
        "trace complex_types_program.c:25 {{\n    print \"PID={} TID={} TS={}\", $pid, $tid, $timestamp;\n    if $pid == {} {{ print \"PID_OK\"; }}\n}}\n",
        "{}", "{}", "{}", pid
    );

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(&script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");
    assert!(
        stdout.contains("PID_OK"),
        "Expected PID_OK. STDOUT: {stdout}"
    );
    assert!(
        stdout.contains("PID=") || stdout.contains("PID:"),
        "Expected PID field in output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_if_else_if_and_bare_expr_local() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Verify: print expr; and if / else if with expression conditions
    let script = r#"
trace complex_types_program.c:25 {
    // bare expression print should render name = value
    print a.status == 0;
    if a.status == 0 {
        print "wtf";
    } else if a.status == 1 {
        print a.age == 0;
    }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    // Expect at least one bare expr line for (a.status==0) = true/false
    let has_status_line = stdout
        .lines()
        .any(|l| l.contains("(a.status==0) = true") || l.contains("(a.status==0) = false"));
    assert!(
        has_status_line,
        "Expected bare expression output for a.status==0. STDOUT: {stdout}"
    );

    // Expect either the then branch literal or the else-if branch expr at least once across samples
    let has_then = stdout.lines().any(|l| l.contains("wtf"));
    let has_elseif_expr = stdout
        .lines()
        .any(|l| l.contains("(a.age==0) = true") || l.contains("(a.age==0) = false"));
    assert!(
        has_then || has_elseif_expr,
        "Expected either then-branch 'wtf' or else-if expr output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_if_else_if_logical_ops_local() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    let script = r#"
trace complex_types_program.c:25 {
    // Truthiness check for script ints
    let x = 2; let y = 1; let z = 0;
    print "AND:{} OR:{}", x && y, x || z;
    // DWARF-backed locals with logical ops
    if a.age > 26 && a.status == 0 { print "AND"; }
    else if a.age < 100 || a.friend_ref == 0 { print "OR"; }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re = Regex::new(r"AND:(true|false) OR:(true|false)").unwrap();
    let mut saw_fmt = false;
    for line in stdout.lines() {
        if re.is_match(line) {
            saw_fmt = true;
            break;
        }
    }
    assert!(saw_fmt, "Expected logical fmt line. STDOUT: {stdout}");

    Ok(())
}

#[tokio::test]
async fn test_or_short_circuit_avoids_null_deref() -> anyhow::Result<()> {
    init();

    // Start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // The RHS would deref c.friend_ref, which is NULL for 'a' iterations.
    // Since LHS is true, RHS must not be evaluated and no null-deref error should appear.
    let script = r#"
trace update_complex {
    print (1 || *c.friend_ref);
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    assert!(
        stdout.contains("true"),
        "Expected true result. STDOUT: {stdout}"
    );
    assert!(
        !stdout.contains("<error: null pointer dereference>"),
        "Short-circuit should avoid null-deref RHS. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_and_short_circuit_avoids_null_deref() -> anyhow::Result<()> {
    init();

    // Start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // LHS is false, RHS would deref c.friend_ref which can be NULL. Short-circuit must avoid RHS.
    let script = r#"
trace update_complex {
    print (0 && *c.friend_ref);
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    assert!(
        stdout.contains("false"),
        "Expected false result. STDOUT: {stdout}"
    );
    assert!(
        !stdout.contains("<error: null pointer dereference>"),
        "Short-circuit should avoid null-deref RHS. STDOUT: {stdout}"
    );
    Ok(())
}

#[tokio::test]
async fn test_address_of_and_comparisons_local() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Exercise address-of as top-level print (pointer formatting) and as rvalue in comparisons
    let script = r#"
trace complex_types_program.c:25 {
    // top-level &expr should print as pointer with hex and type suffix
    print &a;
    // address-of in expression should print name=value
    print (&a != 0);
    if &a != 0 {
        print "ADDR";
    }
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 4, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    // Top-level &a should produce a hex pointer
    let has_hex_ptr = stdout.contains("0x");
    assert!(has_hex_ptr, "Expected hex pointer for &a. STDOUT: {stdout}");

    // (&a != 0) should produce bare expr with name and boolean value
    let has_expr_bool = stdout
        .lines()
        .any(|l| l.contains("(&a!=0) = true") || l.contains("(&a!=0) = false"));
    assert!(
        has_expr_bool,
        "Expected bare expr output for (&a!=0). STDOUT: {stdout}"
    );

    // Then-branch literal
    let has_then = stdout.lines().any(|l| l.contains("ADDR"));
    assert!(has_then, "Expected then-branch ADDR line. STDOUT: {stdout}");

    Ok(())
}

#[tokio::test]
async fn test_string_equality_local() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    let script = r#"
trace complex_types_program.c:25 {
    print "SE:{}", a.name == "Alice";
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");
    // Expect SE:true at least once near main where a.name=="Alice"
    assert!(stdout.contains("SE:true") || stdout.contains("SE:false"));
    Ok(())
}

#[tokio::test]
async fn test_entry_pointer_values() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Focus on pointer prints at entry
    let script = r#"
trace complex_types_program.c:7 {
    print &*&*c;
    print c.friend_ref;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully (stderr={stderr}, stdout={stdout})"
    );

    // Expect at least one pointer value with type suffix
    assert!(
        stdout.contains("0x") && stdout.contains("(Complex*)"),
        "Expected pointer formatting with type suffix. STDOUT: {stdout}"
    );

    let _ = prog.kill().await.is_ok();
    Ok(())
}

#[tokio::test]
async fn test_entry_name_string_and_deref_struct_fields() -> anyhow::Result<()> {
    init();

    // Start program
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Focused script to capture name and deref content
    let script = r#"
trace complex_types_program.c:7 {
    print c.name;
    print *c.friend_ref;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;

    let _ = prog.kill().await.is_ok();

    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    // Check c.name renders correctly
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(has_name, "Expected c.name string. STDOUT: {stdout}");

    // Look for at least one deref with full struct fields
    let mut found_struct = false;
    for line in stdout.lines() {
        if line.contains("*c.friend_ref = Complex {") {
            // Validate presence of key fields
            let has_status = line.contains("status:") && line.contains("Status::");
            let has_data = line.contains("data: union Data {");
            let has_arr = line.contains("arr: [");
            let has_active = line.contains("active:");
            let has_flags = line.contains("flags:");
            if has_status && has_data && has_arr && has_active && has_flags {
                found_struct = true;
                break;
            }
        }
    }
    assert!(
        found_struct,
        "Expected at least one full struct deref with fields. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_entry_friend_ref_null_and_non_null_cases() -> anyhow::Result<()> {
    init();

    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Print both pointer value and deref to observe null/non-null
    let script = r#"
trace complex_types_program.c:7 {
    print c.friend_ref;
    print *c.friend_ref;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();

    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    // We expect across events to see either NULL or non-NULL friend_ref at least once,
    // and when non-NULL, deref should produce a struct.
    let saw_null_ptr = stdout.contains("c.friend_ref = NULL (struct Complex*)");
    let saw_non_null_ptr = stdout.contains("c.friend_ref = 0x");
    let saw_struct_deref = stdout.contains("*c.friend_ref = Complex {");
    let saw_null_deref_err = stdout.contains("*c.friend_ref = <error: null pointer dereference>");

    assert!(
        saw_null_ptr || saw_non_null_ptr,
        "Expected at least one friend_ref pointer print. STDOUT: {stdout}"
    );
    assert!(
        saw_struct_deref || saw_null_deref_err,
        "Expected deref to produce either struct or null-deref error. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_trace_by_address_nopie_complex_types() -> anyhow::Result<()> {
    // End-to-end on Non-PIE binary: resolve DWARF PC for a known source line and attach by 0xADDR
    init();

    // 1) Build and start Non-PIE binary (ET_EXEC)
    let binary_path = FIXTURES.get_test_binary_complex_nopie()?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // 2) Resolve a module-relative address (DWARF PC) for a stable line in update_complex
    //    Choose 'c->age += 1;' which is consistently present near the top of the function.
    let analyzer = ghostscope_dwarf::DwarfAnalyzer::from_exec_path(&binary_path)
        .await
        .map_err(|e| anyhow::anyhow!("Failed to load DWARF for Non-PIE test binary: {}", e))?;
    let addrs = analyzer.lookup_addresses_by_source_line("complex_types_program.c", 8);
    anyhow::ensure!(
        !addrs.is_empty(),
        "No DWARF addresses found for complex_types_program.c:8"
    );
    let pc = addrs[0].address;

    // 3) Build a script that attaches by address and prints a marker
    let script = format!("trace 0x{pc:x} {{\n    print \"NP_ADDR_OK\";\n}}\n");

    // 4) Run ghostscope in PID mode (-p). Default module resolves to the main executable.
    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(&script, 2, pid).await?;
    let _ = prog.kill().await.is_ok();

    // 5) Validate: we should see the marker at least once
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");
    assert!(
        stdout.lines().any(|l| l.contains("NP_ADDR_OK")),
        "Expected NP_ADDR_OK in output. STDOUT: {stdout}"
    );

    Ok(())
}
#[tokio::test]
async fn test_complex_types_formatting() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    // Give it time to start
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Use source-line attach where 'a' (struct Complex) is in scope
    // Avoid pointer deref on parameter 'c' (not supported yet)
    let script_content = r#"
trace complex_types_program.c:25 {
    print a; // struct
    print a.name; // char[N] as string
    print "User: {} Age: {} {}", a.name, a.age, a.status;
}
"#;

    let (exit_code, stdout, stderr) =
        run_ghostscope_with_script_for_pid(script_content, 3, pid).await?;

    // Cleanup program
    let _ = prog.kill().await.is_ok();

    // Basic assertions (no fallback, attach failure is failure)
    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );

    // Check struct formatted line is present
    let has_struct =
        stdout.contains("Complex {") && stdout.contains("name:") && stdout.contains("age:");
    assert!(
        has_struct,
        "Expected struct output with fields. STDOUT: {stdout}"
    );

    // Ensure c.name renders as a quoted string (Alice/Bob)
    let has_name_str = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name_str,
        "Expected name string output. STDOUT: {stdout}"
    );

    // Optional: struct print contains 'arr:' field (do not require arr index due to grammar limits)
    let has_arr_field = stdout.contains("arr:");
    assert!(
        has_arr_field,
        "Expected struct output contains arr field. STDOUT: {stdout}"
    );

    // Ensure formatted print line exists
    let has_formatted = stdout.contains("User:") && stdout.contains("Age:");
    assert!(
        has_formatted,
        "Expected formatted print output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_pointer_auto_deref_member_access() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    // Give it time to start
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Function attach where 'c' (struct Complex*) is in scope
    // Auto-deref expected: c.name, c.age resolve via implicit pointer dereference
    let script = r#"
trace update_complex {
    print c.name;
    print "U:{} A:{}", c.name, c.age;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;

    // Cleanup program
    let _ = prog.kill().await.is_ok();

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );

    // Expect at least one line referencing the name string from pointer-deref path
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name,
        "Expected dereferenced name (\"Alice\" or \"Bob\"). STDOUT: {stdout}"
    );

    // Ensure formatted print line exists with both fields
    let has_formatted = stdout.contains("U:") && stdout.contains("A:");
    assert!(
        has_formatted,
        "Expected formatted pointer-deref output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_pointer_auto_deref_source_line_entry() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    // Give it time to start
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Source-line attach to the function declaration line (expected to be before/at prologue)
    // Validate auto-deref for register-resident pointer parameter 'c'
    let script = r#"
trace complex_types_program.c:6 {
    print c.name;
    print "U:{} A:{}", c.name, c.age;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;

    // Cleanup program
    let _ = prog.kill().await.is_ok();

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );

    // Name should be readable via auto-deref
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name,
        "Expected dereferenced name at entry (\"Alice\" or \"Bob\"). STDOUT: {stdout}"
    );

    // Ensure formatted print line exists
    let has_formatted = stdout.contains("U:") && stdout.contains("A:");
    assert!(
        has_formatted,
        "Expected formatted pointer-deref output at entry. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_complex_types_formatting_nopie() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Non-PIE)
    let binary_path = FIXTURES.get_test_binary_complex_nopie()?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Use source-line attach where 'a' is in scope
    let script_content = r#"
trace complex_types_program.c:25 {
    print a; // struct
    print a.name;
    print "User: {} Age: {} {}", a.name, a.age, a.status;
}
"#;

    let (exit_code, stdout, stderr) =
        run_ghostscope_with_script_for_pid(script_content, 3, pid).await?;
    let _ = prog.kill().await.is_ok();

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );
    let has_struct =
        stdout.contains("Complex {") && stdout.contains("name:") && stdout.contains("age:");
    assert!(
        has_struct,
        "Expected struct output with fields. STDOUT: {stdout}"
    );
    let has_name_str = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name_str,
        "Expected name string output. STDOUT: {stdout}"
    );
    let has_arr_field = stdout.contains("arr:");
    assert!(
        has_arr_field,
        "Expected struct output contains arr field. STDOUT: {stdout}"
    );
    let has_formatted = stdout.contains("User:") && stdout.contains("Age:");
    assert!(
        has_formatted,
        "Expected formatted print output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_pointer_auto_deref_member_access_nopie() -> anyhow::Result<()> {
    init();
    let binary_path = FIXTURES.get_test_binary_complex_nopie()?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    let script = r#"
trace update_complex {
    print c.name;
    print "U:{} A:{}", c.name, c.age;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name,
        "Expected dereferenced name (\"Alice\" or \"Bob\"). STDOUT: {stdout}"
    );
    let has_formatted = stdout.contains("U:") && stdout.contains("A:");
    assert!(
        has_formatted,
        "Expected formatted pointer-deref output. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_bitfields_correctness() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    // Give it time to start
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Use source-line attach where 'a' and 'i' are in scope
    let script_fn = r#"
trace complex_types_program.c:25 {
    print "I={}", i;
    print a.active;
    print a.flags;
}
"#;

    let (exit_code, stdout, stderr) = run_ghostscope_with_script_for_pid(script_fn, 3, pid).await?;

    // Cleanup program
    let _ = prog.kill().await.is_ok();

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );

    // Parse values from output
    // Expect lines like:
    //   : I=1234
    //   : c.active = 0/1 (or a.active = ... depending on var name)
    //   : c.flags = 0..7
    use regex::Regex;
    let re_i = Regex::new(r"I=([0-9]+)").unwrap();
    let re_active = Regex::new(r"(?i)(?:\b|\.)active\s*=\s*([0-9]+)").unwrap();
    let re_flags = Regex::new(r"(?i)(?:\b|\.)flags\s*=\s*([0-9]+)").unwrap();

    let mut found_i: Option<u64> = None;
    let mut found_active: Option<u64> = None;
    let mut found_flags: Option<u64> = None;

    for line in stdout.lines() {
        if found_i.is_none() {
            if let Some(caps) = re_i.captures(line) {
                if let Ok(val) = caps[1].parse::<u64>() {
                    found_i = Some(val);
                }
            }
        }
        if found_active.is_none() {
            if let Some(caps) = re_active.captures(line) {
                if let Ok(val) = caps[1].parse::<u64>() {
                    found_active = Some(val);
                }
            }
        }
        if found_flags.is_none() {
            if let Some(caps) = re_flags.captures(line) {
                if let Ok(val) = caps[1].parse::<u64>() {
                    found_flags = Some(val);
                }
            }
        }
        if found_i.is_some() && found_active.is_some() && found_flags.is_some() {
            break;
        }
    }

    let i_val = found_i.ok_or_else(|| anyhow::anyhow!("Missing I=... line. STDOUT: {stdout}"))?;
    let active_val =
        found_active.ok_or_else(|| anyhow::anyhow!("Missing active line. STDOUT: {stdout}"))?;
    let flags_val =
        found_flags.ok_or_else(|| anyhow::anyhow!("Missing flags line. STDOUT: {stdout}"))?;

    assert!(
        active_val <= 1,
        "active should be 0 or 1, got {active_val}. STDOUT: {stdout}"
    );
    assert!(
        flags_val <= 7,
        "flags should be 0..7, got {flags_val}. STDOUT: {stdout}"
    );
    assert_eq!(
        active_val,
        i_val & 1,
        "active must equal i&1 (i={i_val}, active={active_val})"
    );
    assert_eq!(
        flags_val,
        i_val & 7,
        "flags must equal i&7 (i={i_val}, flags={flags_val})"
    );

    Ok(())
}

// ============================================================================
// PerfEventArray Tests (--force-perf-event-array)
// These tests verify the same functionality but with PerfEventArray backend
// ============================================================================

#[tokio::test]
async fn test_entry_prints_perf() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Script based on t.gs semantics, but inlined (no file read)
    let script = r#"
trace complex_types_program.c:7 {
    print &*&*c;        // pointer address of c (struct Complex*)
    print c.friend_ref; // pointer value or NULL
    print c.name;       // char[16] -> string
    print *c.friend_ref; // dereferenced struct (or null-deref error)
}
"#;

    let (exit_code, stdout, stderr) =
        run_ghostscope_with_script_for_pid_perf(script, 3, pid).await?;

    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully (stderr={stderr}, stdout={stdout})"
    );

    // Validate pointer prints include type suffix and hex
    let has_any_ptr = stdout.contains("0x") && stdout.contains("(Complex*)");
    assert!(
        has_any_ptr,
        "Expected pointer print with type suffix. STDOUT: {stdout}"
    );

    // Validate c.name renders as a quoted string
    let has_name = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(has_name, "Expected c.name string. STDOUT: {stdout}");

    // Validate deref prints either a pretty struct or a null-deref error
    let has_deref_struct = stdout.contains("*c.friend_ref")
        && (stdout.contains("Complex {") || stdout.contains("<error: null pointer dereference>"));
    assert!(
        has_deref_struct,
        "Expected deref output (struct or null-deref). STDOUT: {stdout}"
    );

    let _ = prog.kill().await.is_ok();
    Ok(())
}

#[tokio::test]
async fn test_local_array_constant_index_format_perf() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Format-print with local array constant indices
    let script = r#"
trace complex_types_program.c:25 {
    print "ARR:{}|BRR:{}", a.arr[1], b.arr[0];
}
"#;

    let (exit_code, stdout, stderr) =
        run_ghostscope_with_script_for_pid_perf(script, 3, pid).await?;
    let _ = prog.kill().await.is_ok();
    assert_eq!(exit_code, 0, "stderr={stderr} stdout={stdout}");

    use regex::Regex;
    let re_arr = Regex::new(r"ARR:(-?\d+)").unwrap();
    let re_brr = Regex::new(r"BRR:(-?\d+)").unwrap();
    let has_arr = stdout.lines().any(|l| re_arr.is_match(l));
    let has_brr = stdout.lines().any(|l| re_brr.is_match(l));
    assert!(
        has_arr,
        "Expected formatted ARR value from a.arr[1]. STDOUT: {stdout}"
    );
    assert!(
        has_brr,
        "Expected formatted BRR value from b.arr[0]. STDOUT: {stdout}"
    );

    Ok(())
}

#[tokio::test]
async fn test_complex_types_formatting_perf() -> anyhow::Result<()> {
    init();

    // Build and start complex_types_program (Debug)
    let binary_path =
        FIXTURES.get_test_binary_with_opt("complex_types_program", OptimizationLevel::Debug)?;
    let mut prog = Command::new(&binary_path)
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .spawn()?;
    let pid = prog
        .id()
        .ok_or_else(|| anyhow::anyhow!("Failed to get PID"))?;
    // Give it time to start
    tokio::time::sleep(Duration::from_millis(500)).await;

    // Use source-line attach where 'a' (struct Complex) is in scope
    // Avoid pointer deref on parameter 'c' (not supported yet)
    let script_content = r#"
trace complex_types_program.c:25 {
    print a; // struct
    print a.name; // char[N] as string
    print "User: {} Age: {} {}", a.name, a.age, a.status;
}
"#;

    let (exit_code, stdout, stderr) =
        run_ghostscope_with_script_for_pid_perf(script_content, 3, pid).await?;

    // Cleanup program
    let _ = prog.kill().await.is_ok();

    // Basic assertions (no fallback, attach failure is failure)
    assert_eq!(
        exit_code, 0,
        "ghostscope should run successfully. stderr={stderr} stdout={stdout}"
    );

    // Check struct formatted line is present
    let has_struct =
        stdout.contains("Complex {") && stdout.contains("name:") && stdout.contains("age:");
    assert!(
        has_struct,
        "Expected struct output with fields. STDOUT: {stdout}"
    );

    // Ensure c.name renders as a quoted string (Alice/Bob)
    let has_name_str = stdout.contains("\"Alice\"") || stdout.contains("\"Bob\"");
    assert!(
        has_name_str,
        "Expected name string output. STDOUT: {stdout}"
    );

    // Optional: struct print contains 'arr:' field (do not require arr index due to grammar limits)
    let has_arr_field = stdout.contains("arr:");
    assert!(
        has_arr_field,
        "Expected struct output contains arr field. STDOUT: {stdout}"
    );

    // Ensure formatted print line exists
    let has_formatted = stdout.contains("User:") && stdout.contains("Age:");
    assert!(
        has_formatted,
        "Expected formatted print output. STDOUT: {stdout}"
    );

    Ok(())
}