depyler 4.1.1

A Python-to-Rust transpiler focusing on energy-efficient, safe code generation with progressive verification
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
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
//! DEPYLER-99MODE: Lint command for Depyler Python compliance (Path A)
//!
//! This module implements `depyler lint --strict` which validates Python code
//! against the "Depyler Python" subset specification.
//!
//! ## Path A Specification
//!
//! Depyler Python enforces the following constraints:
//! - Type annotations REQUIRED on all functions
//! - `eval`, `exec` PROHIBITED (computationally irreducible)
//! - `getattr`, `setattr` PROHIBITED (dynamic dispatch)
//! - Metaclasses PROHIBITED (runtime type manipulation)
//! - Multiple inheritance PROHIBITED (no Rust equivalent)
//! - Monkey patching PROHIBITED (violates static analysis)

use anyhow::Result;
use colored::Colorize;
use depyler_core::DepylerPipeline;
use serde::{Deserialize, Serialize};
use std::fs;
use std::path::{Path, PathBuf};

/// Lint violation severity
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub enum Severity {
    /// Error - code will not compile
    Error,
    /// Warning - code may have issues
    Warning,
}

/// A single lint violation
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Violation {
    /// Line number (1-indexed)
    pub line: usize,
    /// Column number (1-indexed)
    pub column: usize,
    /// Error code (e.g., "DP001")
    pub code: String,
    /// Human-readable message
    pub message: String,
    /// Severity level
    pub severity: Severity,
    /// The source line causing the issue
    pub source_line: Option<String>,
}

/// Lint report for a single file
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FileReport {
    /// Path to the file
    pub path: PathBuf,
    /// List of violations found
    pub violations: Vec<Violation>,
    /// Whether the file is compliant
    pub compliant: bool,
}

/// Corpus-level lint report
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CorpusReport {
    /// Total files analyzed
    pub total_files: usize,
    /// Files that are compliant
    pub compliant_files: usize,
    /// Compliance percentage
    pub compliance_rate: f64,
    /// Per-file reports
    pub files: Vec<FileReport>,
    /// Violation counts by code
    pub violation_counts: std::collections::HashMap<String, usize>,
}

/// Depyler Python violation codes
pub mod codes {
    /// Missing return type annotation
    pub const DP001: &str = "DP001";
    /// Missing parameter type annotation
    pub const DP002: &str = "DP002";
    /// Prohibited: eval() call
    pub const DP003: &str = "DP003";
    /// Prohibited: exec() call
    pub const DP004: &str = "DP004";
    /// Prohibited: getattr() call
    pub const DP005: &str = "DP005";
    /// Prohibited: setattr() call
    pub const DP006: &str = "DP006";
    /// Prohibited: metaclass usage
    pub const DP007: &str = "DP007";
    /// Prohibited: multiple inheritance
    pub const DP008: &str = "DP008";
    /// Prohibited: __getattr__ definition
    pub const DP009: &str = "DP009";
    /// Prohibited: __setattr__ definition
    pub const DP010: &str = "DP010";
    /// Warning: untyped **kwargs
    pub const DP011: &str = "DP011";
    /// Warning: untyped *args
    pub const DP012: &str = "DP012";
    /// Prohibited: globals() call
    pub const DP013: &str = "DP013";
    /// Prohibited: locals() call
    pub const DP014: &str = "DP014";
    /// Warning: dynamic import
    pub const DP015: &str = "DP015";
}

/// Lint a single Python file for Depyler Python compliance
pub fn lint_file(path: &Path, strict: bool) -> Result<FileReport> {
    let source = fs::read_to_string(path)?;
    let lines: Vec<&str> = source.lines().collect();
    let mut violations = Vec::new();

    // Check for prohibited patterns
    for (line_num, line) in lines.iter().enumerate() {
        let trimmed = line.trim();
        let line_number = line_num + 1;

        // Skip comments
        if trimmed.starts_with('#') {
            continue;
        }

        // DP003: eval() prohibited
        if contains_function_call(trimmed, "eval") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "eval"),
                code: codes::DP003.to_string(),
                message: "'eval' is prohibited in Depyler Python (computationally irreducible)"
                    .to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP004: exec() prohibited
        if contains_function_call(trimmed, "exec") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "exec"),
                code: codes::DP004.to_string(),
                message: "'exec' is prohibited in Depyler Python (computationally irreducible)"
                    .to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP005: getattr() prohibited
        if contains_function_call(trimmed, "getattr") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "getattr"),
                code: codes::DP005.to_string(),
                message: "'getattr' is prohibited in Depyler Python (dynamic dispatch)".to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP006: setattr() prohibited
        if contains_function_call(trimmed, "setattr") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "setattr"),
                code: codes::DP006.to_string(),
                message: "'setattr' is prohibited in Depyler Python (dynamic dispatch)".to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP013: globals() prohibited
        if contains_function_call(trimmed, "globals") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "globals"),
                code: codes::DP013.to_string(),
                message: "'globals' is prohibited in Depyler Python (dynamic scope)".to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP014: locals() prohibited
        if contains_function_call(trimmed, "locals") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "locals"),
                code: codes::DP014.to_string(),
                message: "'locals' is prohibited in Depyler Python (dynamic scope)".to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP009/DP010: __getattr__/__setattr__ definitions
        if trimmed.starts_with("def __getattr__") {
            violations.push(Violation {
                line: line_number,
                column: 1,
                code: codes::DP009.to_string(),
                message: "'__getattr__' is prohibited in Depyler Python (dynamic dispatch)"
                    .to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        if trimmed.starts_with("def __setattr__") {
            violations.push(Violation {
                line: line_number,
                column: 1,
                code: codes::DP010.to_string(),
                message: "'__setattr__' is prohibited in Depyler Python (dynamic dispatch)"
                    .to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP007: metaclass usage
        if trimmed.contains("metaclass=") || trimmed.contains("__metaclass__") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "metaclass"),
                code: codes::DP007.to_string(),
                message: "Metaclasses are prohibited in Depyler Python (runtime type manipulation)"
                    .to_string(),
                severity: Severity::Error,
                source_line: Some(line.to_string()),
            });
        }

        // DP015: __import__ dynamic import
        if contains_function_call(trimmed, "__import__") {
            violations.push(Violation {
                line: line_number,
                column: find_pattern_column(line, "__import__"),
                code: codes::DP015.to_string(),
                message: "Dynamic import is discouraged in Depyler Python".to_string(),
                severity: Severity::Warning,
                source_line: Some(line.to_string()),
            });
        }
    }

    // Check for type annotations using AST-level analysis
    if strict {
        check_type_annotations(&source, &mut violations)?;
        check_multiple_inheritance(&source, &mut violations)?;
    }

    let compliant = !violations.iter().any(|v| v.severity == Severity::Error);

    Ok(FileReport {
        path: path.to_path_buf(),
        violations,
        compliant,
    })
}

/// Check if a line contains a function call (not just the word)
fn contains_function_call(line: &str, func: &str) -> bool {
    let pattern = format!("{}(", func);
    // Avoid false positives like "evaluate" for "eval"
    if let Some(pos) = line.find(&pattern) {
        // Check it's not part of a larger identifier
        if pos > 0 {
            let prev_char = line.chars().nth(pos - 1).unwrap_or(' ');
            if prev_char.is_alphanumeric() || prev_char == '_' {
                return false;
            }
        }
        true
    } else {
        false
    }
}

/// Find column position of a pattern in a line
fn find_pattern_column(line: &str, pattern: &str) -> usize {
    line.find(pattern).map(|p| p + 1).unwrap_or(1)
}

/// Check type annotations using AST
fn check_type_annotations(source: &str, violations: &mut Vec<Violation>) -> Result<()> {
    let pipeline = DepylerPipeline::new();

    // Try to parse and check for annotation issues
    if let Ok(hir) = pipeline.parse_to_hir(source) {
        for func in &hir.functions {
            // Check return type - Unknown or Custom("Any") indicates missing annotation
            if is_untyped(&func.ret_type) {
                // Find the line number by searching for the function definition
                let line_num = find_function_line(source, &func.name);
                violations.push(Violation {
                    line: line_num,
                    column: 1,
                    code: codes::DP001.to_string(),
                    message: format!("Function '{}' missing return type annotation", func.name),
                    severity: Severity::Error,
                    source_line: get_source_line(source, line_num),
                });
            }

            // Check parameter types
            for param in &func.params {
                if is_untyped(&param.ty) {
                    let line_num = find_function_line(source, &func.name);
                    violations.push(Violation {
                        line: line_num,
                        column: 1,
                        code: codes::DP002.to_string(),
                        message: format!(
                            "Parameter '{}' in function '{}' missing type annotation",
                            param.name, func.name
                        ),
                        severity: Severity::Error,
                        source_line: get_source_line(source, line_num),
                    });
                }
            }
        }
    }

    Ok(())
}

/// Check if a type is untyped (Unknown or Any)
fn is_untyped(ty: &depyler_core::hir::Type) -> bool {
    use depyler_core::hir::Type;
    match ty {
        Type::Unknown => true,
        Type::Custom(s) if s == "Any" => true,
        _ => false,
    }
}

/// Check for multiple inheritance
fn check_multiple_inheritance(source: &str, violations: &mut Vec<Violation>) -> Result<()> {
    for (line_num, line) in source.lines().enumerate() {
        let trimmed = line.trim();
        if trimmed.starts_with("class ") && trimmed.contains('(') {
            // Extract the inheritance list
            if let Some(start) = trimmed.find('(') {
                if let Some(end) = trimmed.find(')') {
                    let bases = &trimmed[start + 1..end];
                    // Count base classes (split by comma, excluding type params)
                    let base_count = bases
                        .split(',')
                        .filter(|b| !b.trim().is_empty())
                        .filter(|b| !b.contains('[')) // Skip Generic[T] etc.
                        .count();

                    if base_count > 1 {
                        violations.push(Violation {
                            line: line_num + 1,
                            column: 1,
                            code: codes::DP008.to_string(),
                            message: "Multiple inheritance is prohibited in Depyler Python"
                                .to_string(),
                            severity: Severity::Error,
                            source_line: Some(line.to_string()),
                        });
                    }
                }
            }
        }
    }
    Ok(())
}

/// Find the line number of a function definition
fn find_function_line(source: &str, func_name: &str) -> usize {
    let pattern = format!("def {}(", func_name);
    for (i, line) in source.lines().enumerate() {
        if line.contains(&pattern) {
            return i + 1;
        }
    }
    1
}

/// Get a specific line from source
fn get_source_line(source: &str, line_num: usize) -> Option<String> {
    source
        .lines()
        .nth(line_num.saturating_sub(1))
        .map(String::from)
}

/// Lint a directory of Python files
pub fn lint_corpus(path: &Path, strict: bool) -> Result<CorpusReport> {
    let mut files = Vec::new();
    let mut violation_counts = std::collections::HashMap::new();

    // Collect Python files
    let py_files: Vec<PathBuf> = walkdir::WalkDir::new(path)
        .into_iter()
        .filter_map(|e| e.ok())
        .filter(|e| e.path().extension().map(|ext| ext == "py").unwrap_or(false))
        .map(|e| e.path().to_path_buf())
        .collect();

    let total_files = py_files.len();

    for py_file in py_files {
        if let Ok(report) = lint_file(&py_file, strict) {
            for v in &report.violations {
                *violation_counts.entry(v.code.clone()).or_insert(0) += 1;
            }
            files.push(report);
        }
    }

    let compliant_files = files.iter().filter(|f| f.compliant).count();
    let compliance_rate = if total_files > 0 {
        (compliant_files as f64 / total_files as f64) * 100.0
    } else {
        100.0
    };

    Ok(CorpusReport {
        total_files,
        compliant_files,
        compliance_rate,
        files,
        violation_counts,
    })
}

/// Run the lint command
pub fn lint_command(
    input: PathBuf,
    strict: bool,
    format: String,
    fail_fast: bool,
    corpus: bool,
) -> Result<()> {
    if corpus || input.is_dir() {
        let report = lint_corpus(&input, strict)?;

        match format.as_str() {
            "json" => println!("{}", serde_json::to_string_pretty(&report)?),
            _ => print_corpus_report(&report, fail_fast),
        }

        if report.compliance_rate < 100.0 {
            std::process::exit(1);
        }
    } else {
        let report = lint_file(&input, strict)?;

        match format.as_str() {
            "json" => println!("{}", serde_json::to_string_pretty(&report)?),
            _ => print_file_report(&report, fail_fast),
        }

        if !report.compliant {
            std::process::exit(1);
        }
    }

    Ok(())
}

/// Print file report in text format
fn print_file_report(report: &FileReport, fail_fast: bool) {
    if report.violations.is_empty() {
        println!(
            "{} {} is Depyler Python compliant",
            "✓".green(),
            report.path.display()
        );
        return;
    }

    println!("{}", format!("{}:", report.path.display()).bold());

    for v in &report.violations {
        let severity_str = match v.severity {
            Severity::Error => "error".red(),
            Severity::Warning => "warning".yellow(),
        };

        println!(
            "  {}:{}: {} [{}] {}",
            v.line,
            v.column,
            severity_str,
            v.code.cyan(),
            v.message
        );

        if let Some(ref source) = v.source_line {
            println!("    {}", source.dimmed());
        }

        if fail_fast && v.severity == Severity::Error {
            std::process::exit(1);
        }
    }

    let error_count = report
        .violations
        .iter()
        .filter(|v| v.severity == Severity::Error)
        .count();
    let warning_count = report
        .violations
        .iter()
        .filter(|v| v.severity == Severity::Warning)
        .count();

    println!(
        "\nFound {} error(s), {} warning(s)",
        error_count.to_string().red(),
        warning_count.to_string().yellow()
    );
}

/// Print corpus report in text format
fn print_corpus_report(report: &CorpusReport, fail_fast: bool) {
    println!("{}", "Depyler Python Compliance Report".bold());
    println!("================================\n");

    println!(
        "Files analyzed: {}\nCompliant files: {}\nCompliance rate: {:.1}%\n",
        report.total_files, report.compliant_files, report.compliance_rate
    );

    if !report.violation_counts.is_empty() {
        println!("{}", "Violation Summary:".bold());
        let mut counts: Vec<_> = report.violation_counts.iter().collect();
        counts.sort_by(|a, b| b.1.cmp(a.1));
        for (code, count) in counts {
            println!("  {}: {} occurrences", code.cyan(), count);
        }
        println!();
    }

    // Show non-compliant files
    let non_compliant: Vec<_> = report.files.iter().filter(|f| !f.compliant).collect();
    if !non_compliant.is_empty() {
        println!("{}", "Non-compliant files:".bold());
        for file in non_compliant.iter().take(10) {
            print_file_report(file, fail_fast);
            println!();
        }

        if non_compliant.len() > 10 {
            println!("... and {} more", non_compliant.len() - 10);
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use tempfile::TempDir;

    #[test]
    fn test_lint_clean_file() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("clean.py");
        fs::write(
            &py_file,
            "def add(a: int, b: int) -> int:\n    return a + b\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(report.compliant);
        assert!(report.violations.is_empty());
    }

    #[test]
    fn test_lint_eval_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "x = eval('1 + 1')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP003));
    }

    #[test]
    fn test_lint_exec_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "exec('print(1)')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP004));
    }

    #[test]
    fn test_lint_getattr_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "val = getattr(obj, 'name')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP005));
    }

    #[test]
    fn test_lint_setattr_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "setattr(obj, 'name', value)\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP006));
    }

    #[test]
    fn test_lint_metaclass_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "class Foo(metaclass=Meta):\n    pass\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP007));
    }

    #[test]
    fn test_lint_multiple_inheritance() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "class Foo(Bar, Baz):\n    pass\n").unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_lint_globals_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "g = globals()\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP013));
    }

    #[test]
    fn test_lint_locals_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "l = locals()\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.compliant);
        assert!(report.violations.iter().any(|v| v.code == codes::DP014));
    }

    #[test]
    fn test_lint_false_positive_evaluate() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        // "evaluate" should not trigger eval check
        fs::write(&py_file, "def evaluate(x: int) -> int:\n    return x\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        // Should not have DP003 violation
        assert!(!report.violations.iter().any(|v| v.code == codes::DP003));
    }

    #[test]
    fn test_contains_function_call() {
        assert!(contains_function_call("eval('x')", "eval"));
        assert!(contains_function_call("x = eval('x')", "eval"));
        assert!(!contains_function_call("evaluate('x')", "eval"));
        assert!(!contains_function_call("my_eval('x')", "eval"));
    }

    #[test]
    fn test_corpus_lint() {
        let temp = TempDir::new().unwrap();

        // Create compliant file
        let good = temp.path().join("good.py");
        fs::write(&good, "def add(a: int, b: int) -> int:\n    return a + b\n").unwrap();

        // Create non-compliant file
        let bad = temp.path().join("bad.py");
        fs::write(&bad, "x = eval('1')\n").unwrap();

        let report = lint_corpus(temp.path(), false).unwrap();
        assert_eq!(report.total_files, 2);
        assert_eq!(report.compliant_files, 1);
        assert!((report.compliance_rate - 50.0).abs() < 0.1);
    }

    // ========================================================================
    // DEPYLER-99MODE-S8B6: Additional coverage tests
    // ========================================================================

    #[test]
    fn test_lint_getattr_def_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "class Foo:\n    def __getattr__(self, name):\n        pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP009));
    }

    #[test]
    fn test_lint_setattr_def_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "class Foo:\n    def __setattr__(self, name, value):\n        pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP010));
    }

    #[test]
    fn test_lint_dynamic_import_prohibited() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "mod = __import__('os')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP015));
        // DP015 is a Warning, not Error
        assert!(report
            .violations
            .iter()
            .any(|v| v.severity == Severity::Warning));
    }

    #[test]
    fn test_lint_comment_line_skipped() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        // eval in a comment should not trigger
        fs::write(&py_file, "# eval('something')\nx = 1\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP003));
    }

    #[test]
    fn test_lint_metaclass_variant() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "__metaclass__ = type\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP007));
    }

    #[test]
    fn test_lint_strict_missing_return_type() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "def add(a: int, b: int):\n    return a + b\n").unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP001));
    }

    #[test]
    fn test_lint_strict_missing_param_type() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "def add(a, b) -> int:\n    return a + b\n").unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP002));
    }

    #[test]
    fn test_lint_single_inheritance_ok() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        fs::write(
            &py_file,
            "class Dog(Animal):\n    def bark(self) -> str:\n        return 'woof'\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_lint_generic_inheritance_not_multi() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        // Generic[T] should not count as multiple inheritance
        fs::write(
            &py_file,
            "from typing import Generic, TypeVar\nT = TypeVar('T')\nclass Box(Generic[T]):\n    pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_empty_corpus() {
        let temp = TempDir::new().unwrap();
        // No .py files
        let report = lint_corpus(temp.path(), false).unwrap();
        assert_eq!(report.total_files, 0);
        assert_eq!(report.compliant_files, 0);
        assert_eq!(report.compliance_rate, 100.0);
    }

    #[test]
    fn test_find_pattern_column_found() {
        assert_eq!(find_pattern_column("x = eval('y')", "eval"), 5);
    }

    #[test]
    fn test_find_pattern_column_not_found() {
        assert_eq!(find_pattern_column("x = 1", "eval"), 1);
    }

    #[test]
    fn test_find_function_line_found() {
        let source = "x = 1\ndef foo(a: int) -> int:\n    return a\n";
        assert_eq!(find_function_line(source, "foo"), 2);
    }

    #[test]
    fn test_find_function_line_not_found() {
        let source = "x = 1\n";
        assert_eq!(find_function_line(source, "missing"), 1);
    }

    #[test]
    fn test_get_source_line() {
        let source = "line1\nline2\nline3";
        assert_eq!(get_source_line(source, 2), Some("line2".to_string()));
        assert_eq!(get_source_line(source, 0), Some("line1".to_string())); // saturating_sub
        assert_eq!(get_source_line(source, 100), None);
    }

    #[test]
    fn test_is_untyped_unknown() {
        use depyler_core::hir::Type;
        assert!(is_untyped(&Type::Unknown));
    }

    #[test]
    fn test_is_untyped_any() {
        use depyler_core::hir::Type;
        assert!(is_untyped(&Type::Custom("Any".to_string())));
    }

    #[test]
    fn test_is_untyped_typed() {
        use depyler_core::hir::Type;
        assert!(!is_untyped(&Type::Int));
        assert!(!is_untyped(&Type::String));
        assert!(!is_untyped(&Type::Custom("MyClass".to_string())));
    }

    #[test]
    fn test_contains_function_call_at_start() {
        assert!(contains_function_call("eval('x')", "eval"));
    }

    #[test]
    fn test_contains_function_call_no_match() {
        assert!(!contains_function_call("no_call_here", "eval"));
    }

    #[test]
    fn test_violation_severity_eq() {
        assert_eq!(Severity::Error, Severity::Error);
        assert_eq!(Severity::Warning, Severity::Warning);
        assert_ne!(Severity::Error, Severity::Warning);
    }

    #[test]
    fn test_violation_clone() {
        let v = Violation {
            line: 1,
            column: 1,
            code: "DP001".to_string(),
            message: "test".to_string(),
            severity: Severity::Error,
            source_line: Some("test line".to_string()),
        };
        let v2 = v.clone();
        assert_eq!(v2.code, "DP001");
        assert_eq!(v2.line, 1);
    }

    #[test]
    fn test_file_report_clone() {
        let r = FileReport {
            path: PathBuf::from("test.py"),
            violations: vec![],
            compliant: true,
        };
        let r2 = r.clone();
        assert!(r2.compliant);
    }

    #[test]
    fn test_corpus_report_serialize() {
        let report = CorpusReport {
            total_files: 1,
            compliant_files: 1,
            compliance_rate: 100.0,
            files: vec![],
            violation_counts: std::collections::HashMap::new(),
        };
        let json = serde_json::to_string(&report).unwrap();
        assert!(json.contains("total_files"));
    }

    #[test]
    fn test_lint_multiple_violations_same_file() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "x = eval('1')\ny = exec('2')\nz = getattr(o, 'a')\n",
        )
        .unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.len() >= 3);
        assert!(report.violations.iter().any(|v| v.code == codes::DP003));
        assert!(report.violations.iter().any(|v| v.code == codes::DP004));
        assert!(report.violations.iter().any(|v| v.code == codes::DP005));
    }

    #[test]
    fn test_violation_source_line_present() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "x = eval('1')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        let v = &report.violations[0];
        assert!(v.source_line.is_some());
        assert!(v.source_line.as_ref().unwrap().contains("eval"));
    }

    #[test]
    fn test_codes_constants() {
        assert_eq!(codes::DP001, "DP001");
        assert_eq!(codes::DP002, "DP002");
        assert_eq!(codes::DP003, "DP003");
        assert_eq!(codes::DP004, "DP004");
        assert_eq!(codes::DP005, "DP005");
        assert_eq!(codes::DP006, "DP006");
        assert_eq!(codes::DP007, "DP007");
        assert_eq!(codes::DP008, "DP008");
        assert_eq!(codes::DP009, "DP009");
        assert_eq!(codes::DP010, "DP010");
        assert_eq!(codes::DP011, "DP011");
        assert_eq!(codes::DP012, "DP012");
        assert_eq!(codes::DP013, "DP013");
        assert_eq!(codes::DP014, "DP014");
        assert_eq!(codes::DP015, "DP015");
    }

    // ========================================================================
    // DEPYLER-99MODE-S11: Additional coverage tests
    // ========================================================================

    #[test]
    fn test_s11_lint_strict_all_typed() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("typed.py");
        fs::write(
            &py_file,
            "def multiply(a: int, b: int) -> int:\n    return a * b\n\ndef greet(name: str) -> str:\n    return f\"Hello, {name}\"\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(report.compliant);
    }

    #[test]
    fn test_s11_lint_multiple_functions_missing_types() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("untyped.py");
        fs::write(
            &py_file,
            "def foo(x):\n    return x\n\ndef bar(y):\n    return y * 2\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        // Should find DP001 and DP002 violations for both functions
        let dp001_count = report
            .violations
            .iter()
            .filter(|v| v.code == codes::DP001)
            .count();
        let dp002_count = report
            .violations
            .iter()
            .filter(|v| v.code == codes::DP002)
            .count();
        assert!(dp001_count >= 2);
        assert!(dp002_count >= 2);
    }

    #[test]
    fn test_s11_lint_class_with_all_violations() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("messy.py");
        fs::write(
            &py_file,
            "class Bad(Base1, Base2, metaclass=Meta):\n    def __getattr__(self, name):\n        return eval(name)\n    def __setattr__(self, name, value):\n        exec(f'{name} = {value}')\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.compliant);
        // Should detect: DP003 (eval), DP004 (exec), DP007 (metaclass),
        // DP008 (multiple inheritance), DP009 (__getattr__), DP010 (__setattr__)
        let violation_codes: Vec<&str> =
            report.violations.iter().map(|v| v.code.as_str()).collect();
        assert!(violation_codes.contains(&"DP003"));
        assert!(violation_codes.contains(&"DP004"));
        assert!(violation_codes.contains(&"DP007"));
        assert!(violation_codes.contains(&"DP008"));
    }

    #[test]
    fn test_s11_lint_corpus_all_compliant() {
        let temp = TempDir::new().unwrap();
        fs::write(
            temp.path().join("a.py"),
            "def add(x: int, y: int) -> int:\n    return x + y\n",
        )
        .unwrap();
        fs::write(
            temp.path().join("b.py"),
            "def sub(x: int, y: int) -> int:\n    return x - y\n",
        )
        .unwrap();

        let report = lint_corpus(temp.path(), true).unwrap();
        assert_eq!(report.total_files, 2);
        assert_eq!(report.compliant_files, 2);
        assert!((report.compliance_rate - 100.0).abs() < 0.01);
    }

    #[test]
    fn test_s11_lint_corpus_violation_counts() {
        let temp = TempDir::new().unwrap();
        fs::write(temp.path().join("a.py"), "x = eval('1')\ny = eval('2')\n").unwrap();
        fs::write(temp.path().join("b.py"), "z = eval('3')\n").unwrap();

        let report = lint_corpus(temp.path(), false).unwrap();
        assert!(report.violation_counts.contains_key("DP003"));
        assert_eq!(*report.violation_counts.get("DP003").unwrap(), 3);
    }

    #[test]
    fn test_s11_contains_function_call_edge_cases() {
        // At start of line
        assert!(contains_function_call("eval('x')", "eval"));
        // After space
        assert!(contains_function_call("x = eval('x')", "eval"));
        // After equals
        assert!(contains_function_call("x=eval('x')", "eval"));
        // After open paren
        assert!(contains_function_call("print(eval('x'))", "eval"));
        // After dot - function treats this as valid since '.' is not alphanumeric/_
        assert!(contains_function_call("obj.eval('x')", "eval"));
        // Part of variable name (alphanumeric/_) should NOT match
        assert!(!contains_function_call("my_eval('x')", "eval"));
        assert!(!contains_function_call("_eval('x')", "eval"));
    }

    #[test]
    fn test_s11_lint_report_serialization() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("test.py");
        fs::write(&py_file, "x = eval('1')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        let json = serde_json::to_string(&report).unwrap();
        assert!(json.contains("DP003"));

        let deserialized: FileReport = serde_json::from_str(&json).unwrap();
        assert_eq!(deserialized.violations.len(), report.violations.len());
    }

    #[test]
    fn test_s11_corpus_report_serialization() {
        let report = CorpusReport {
            total_files: 5,
            compliant_files: 3,
            compliance_rate: 60.0,
            files: vec![],
            violation_counts: std::collections::HashMap::from([
                ("DP003".to_string(), 2),
                ("DP004".to_string(), 1),
            ]),
        };
        let json = serde_json::to_string_pretty(&report).unwrap();
        assert!(json.contains("compliance_rate"));

        let deserialized: CorpusReport = serde_json::from_str(&json).unwrap();
        assert_eq!(deserialized.total_files, 5);
    }

    #[test]
    fn test_s11_violation_debug() {
        let v = Violation {
            line: 10,
            column: 5,
            code: "DP003".to_string(),
            message: "test message".to_string(),
            severity: Severity::Error,
            source_line: Some("eval('x')".to_string()),
        };
        let debug = format!("{:?}", v);
        assert!(debug.contains("DP003"));
        assert!(debug.contains("test message"));
    }

    #[test]
    fn test_s11_lint_non_strict_skips_type_checks() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("untyped.py");
        fs::write(&py_file, "def add(a, b):\n    return a + b\n").unwrap();

        // Non-strict should not flag missing type annotations
        let report = lint_file(&py_file, false).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP001));
        assert!(!report.violations.iter().any(|v| v.code == codes::DP002));
    }

    #[test]
    fn test_s11_lint_subdirectory_py_files() {
        let temp = TempDir::new().unwrap();
        let subdir = temp.path().join("subdir");
        fs::create_dir_all(&subdir).unwrap();
        fs::write(
            subdir.join("test.py"),
            "x = eval('1')\n",
        )
        .unwrap();

        let report = lint_corpus(temp.path(), false).unwrap();
        assert_eq!(report.total_files, 1);
        assert!(!report.files[0].compliant);
    }

    #[test]
    fn test_s11_severity_serialize() {
        let json_err = serde_json::to_string(&Severity::Error).unwrap();
        let json_warn = serde_json::to_string(&Severity::Warning).unwrap();
        assert!(json_err.contains("Error"));
        assert!(json_warn.contains("Warning"));

        let deser_err: Severity = serde_json::from_str(&json_err).unwrap();
        let deser_warn: Severity = serde_json::from_str(&json_warn).unwrap();
        assert_eq!(deser_err, Severity::Error);
        assert_eq!(deser_warn, Severity::Warning);
    }

    // ========================================================================
    // Session 11 cont - Deep Coverage Tests for Untested Paths
    // ========================================================================

    #[test]
    fn test_lint_multiple_inheritance_with_generics() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        // Dict[str, int] should not count as multiple inheritance
        fs::write(
            &py_file,
            "class MyDict(Dict[str, int]):\n    pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_lint_multiple_inheritance_mixed_generic() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        // Animal is non-generic, Generic[T] is filtered → only 1 base
        fs::write(
            &py_file,
            "from typing import Generic, TypeVar\nT = TypeVar('T')\nclass Hybrid(Animal, Generic[T]):\n    pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        // Animal counts, Generic[T] is filtered → only 1 non-generic base
        assert!(!report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_lint_triple_inheritance() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "class Franken(Base1, Base2, Base3):\n    pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_get_source_line_single_line() {
        assert_eq!(get_source_line("only_line", 1), Some("only_line".to_string()));
    }

    #[test]
    fn test_get_source_line_trailing_newline() {
        let source = "line1\nline2\n";
        assert_eq!(get_source_line(source, 2), Some("line2".to_string()));
        // Rust's lines() drops trailing empty line, so line 3 is None
        assert_eq!(get_source_line(source, 3), None);
    }

    #[test]
    fn test_contains_function_call_after_dot() {
        // After dot should still match (not alphanumeric/_)
        assert!(contains_function_call("os.exec('cmd')", "exec"));
    }

    #[test]
    fn test_contains_function_call_after_paren() {
        assert!(contains_function_call("print(eval('x'))", "eval"));
    }

    #[test]
    fn test_lint_getattr_detection() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "x = getattr(obj, 'attr')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP005));
    }

    #[test]
    fn test_lint_dunder_getattr_detection() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "class Foo:\n    def __getattr__(self, name):\n        pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP009));
    }

    #[test]
    fn test_lint_dunder_setattr_detection() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(
            &py_file,
            "class Foo:\n    def __setattr__(self, name, value):\n        pass\n",
        )
        .unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP010));
    }

    #[test]
    fn test_lint_globals_locals_detection() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "x = globals()\ny = locals()\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP013));
        assert!(report.violations.iter().any(|v| v.code == codes::DP014));
    }

    #[test]
    fn test_lint_dynamic_import() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("bad.py");
        fs::write(&py_file, "mod = __import__('os')\n").unwrap();

        let report = lint_file(&py_file, false).unwrap();
        assert!(report.violations.iter().any(|v| v.code == codes::DP015));
    }

    #[test]
    fn test_lint_class_no_parens() {
        let temp = TempDir::new().unwrap();
        let py_file = temp.path().join("ok.py");
        // Class without inheritance parens
        fs::write(
            &py_file,
            "class Simple:\n    x: int = 0\n",
        )
        .unwrap();

        let report = lint_file(&py_file, true).unwrap();
        assert!(!report.violations.iter().any(|v| v.code == codes::DP008));
    }

    #[test]
    fn test_lint_corpus_mixed_compliance() {
        let temp = TempDir::new().unwrap();
        fs::write(
            temp.path().join("good.py"),
            "def add(x: int, y: int) -> int:\n    return x + y\n",
        )
        .unwrap();
        fs::write(temp.path().join("bad.py"), "x = eval('1')\n").unwrap();

        let report = lint_corpus(temp.path(), false).unwrap();
        assert_eq!(report.total_files, 2);
        assert_eq!(report.compliant_files, 1);
        assert!((report.compliance_rate - 50.0).abs() < 0.01);
    }

    #[test]
    fn test_find_pattern_column_multiple_occurrences() {
        // Should find the FIRST occurrence
        assert_eq!(find_pattern_column("eval eval eval", "eval"), 1);
    }

    #[test]
    fn test_find_function_line_multiple_functions() {
        let source = "def foo():\n    pass\ndef bar():\n    pass\n";
        assert_eq!(find_function_line(source, "foo"), 1);
        assert_eq!(find_function_line(source, "bar"), 3);
    }
}