brrr-lint 0.1.0

A fast linter and language server for F* (FStar) with autofix capabilities
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
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
//! FST007: Z3 complexity analyzer.
//!
//! Detects code patterns that cause Z3 performance issues in F* verification:
//!
//! 1. Quantifiers without SMTPat triggers - unbounded search
//! 2. Non-linear arithmetic (var * var) - undecidable in general
//! 3. Deep quantifier nesting (>3 levels) - exponential blowup
//! 4. Large match expressions (>20 branches) - case splitting explosion
//! 5. Recursive functions without decreases clause - termination proving difficulty
//! 6. High z3rlimit (>100) - symptom of proof complexity

use lazy_static::lazy_static;
use regex::Regex;
use std::path::PathBuf;

use super::rules::{Diagnostic, DiagnosticSeverity, Range, Rule, RuleCode};

lazy_static! {
    /// Quantifier patterns - forall and exists with type bindings
    static ref FORALL_PATTERN: Regex = Regex::new(r"forall\s*\([^)]+\)\s*\.").unwrap();
    static ref EXISTS_PATTERN: Regex = Regex::new(r"exists\s*\([^)]+\)\s*\.").unwrap();

    /// SMTPat trigger annotation (lemma-level)
    static ref SMTPAT_PATTERN: Regex = Regex::new(r"\[SMTPat").unwrap();
    static ref SMTPATALL_PATTERN: Regex = Regex::new(r"\[SMTPatOr").unwrap();

    /// Inline pattern triggers in quantifiers: {:pattern ...}
    static ref INLINE_PATTERN_TRIGGER: Regex = Regex::new(r"\{:pattern\b").unwrap();

    /// Non-linear arithmetic: identifier * identifier (excluding literals)
    /// Captures two variable names to check if they're different
    static ref NONLINEAR_MUL: Regex = Regex::new(
        r"\b([a-z_][a-z0-9_]*)\s*\*\s*([a-z_][a-z0-9_]*)\b"
    ).unwrap();

    /// Recursive function definition
    static ref LET_REC: Regex = Regex::new(r"let\s+rec\s+(\w+)").unwrap();

    /// Decreases clause (can appear as annotation or inline)
    static ref DECREASES_CLAUSE: Regex = Regex::new(r"\(decreases\s|\bdecreases\s*\{").unwrap();

    /// High z3rlimit pragma
    static ref Z3RLIMIT: Regex = Regex::new(r#"#set-options\s*"[^"]*z3rlimit\s+(\d+)"#).unwrap();
    static ref Z3RLIMIT_INLINE: Regex = Regex::new(r"z3rlimit\s+(\d+)").unwrap();

    /// Match expression start - captures the discriminant (variable being matched)
    static ref MATCH_START: Regex = Regex::new(r"\bmatch\s+(\S+)\s+with").unwrap();

    /// Match branch (pipe followed by pattern)
    static ref MATCH_BRANCH: Regex = Regex::new(r"^\s*\|").unwrap();

    /// Nested quantifier detection - simplified approach
    static ref QUANTIFIER_KEYWORD: Regex = Regex::new(r"\b(forall|exists)\s*\(").unwrap();

    /// Literals and constants to exclude from non-linear check
    static ref NUMERIC_LITERAL: Regex = Regex::new(r"^[0-9]+$").unwrap();

    /// Common safe multiplications (index calculations, etc.)
    static ref SAFE_VARS: &'static [&'static str] = &[
        "sizeof", "alignof", "len", "length", "size", "count", "n", "m", "i", "j", "k"
    ];

    /// Assert patterns - for detecting complex asserts
    /// assert_norm - normalization asserts, necessary for compile-time normalization
    static ref ASSERT_NORM: Regex = Regex::new(r"\bassert_norm\s*\(").unwrap();
    /// assert with tactic - has explicit proof guidance
    static ref ASSERT_BY: Regex = Regex::new(r"\bassert\s*\([^)]*\)\s+by\b").unwrap();
    /// assert_by_tactic - explicit tactic-guided assertion
    static ref ASSERT_BY_TACTIC: Regex = Regex::new(r"\bassert_by_tactic\b").unwrap();
    /// Plain assert statement
    static ref PLAIN_ASSERT: Regex = Regex::new(r"\bassert\s*\(").unwrap();
}

/// FST007: Z3 Complexity Analyzer
///
/// Configurable thresholds for detecting Z3 performance anti-patterns.
pub struct Z3ComplexityRule {
    /// Maximum allowed quantifier nesting depth before warning
    pub max_quantifier_depth: usize,
    /// Maximum match branches before suggesting split
    pub max_match_branches: usize,
    /// z3rlimit threshold above which to warn
    pub max_z3rlimit: u32,
    /// Number of lines to look ahead for SMTPat after quantifier
    pub smtpat_lookahead_lines: usize,
}

impl Z3ComplexityRule {
    pub fn new() -> Self {
        Self {
            max_quantifier_depth: 3,
            max_match_branches: 20,
            max_z3rlimit: 100,
            smtpat_lookahead_lines: 5,
        }
    }

    /// Check for quantifiers without any triggers.
    ///
    /// Quantifiers without triggers can force Z3 to enumerate possible instantiations,
    /// leading to exponential search space and timeouts.
    ///
    /// This check recognizes:
    /// - [SMTPat ...] lemma-level patterns
    /// - [SMTPatOr ...] disjunctive patterns
    /// - {:pattern ...} inline quantifier triggers
    ///
    /// This check SKIPS quantifiers that don't need triggers:
    /// - Quantifiers inside refinement types `{forall x. P x}`
    /// - Quantifiers in requires/ensures clauses (specification only)
    /// - Quantifiers with explicit inline patterns
    fn check_quantifiers_without_triggers(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let lines: Vec<&str> = content.lines().collect();

        for (line_idx, line) in lines.iter().enumerate() {
            let line_num = line_idx + 1;

            // Skip lines inside comments (simple heuristic)
            let trimmed = line.trim();
            if trimmed.starts_with("(*") || trimmed.starts_with("//") {
                continue;
            }

            // Check for forall/exists
            let has_forall = FORALL_PATTERN.is_match(line);
            let has_exists = EXISTS_PATTERN.is_match(line);

            if has_forall || has_exists {
                // Check if this quantifier is inside a refinement type (curly braces)
                // Example: s:seq a{forall i. P i} - this doesn't need SMTPat
                if self.is_in_refinement_type(line, lines.get(line_idx.saturating_sub(1))) {
                    continue;
                }

                // Look ahead for triggers within configured range
                let context_end =
                    std::cmp::min(line_idx + self.smtpat_lookahead_lines, lines.len());
                let context: String = lines[line_idx..context_end].join("\n");

                // Check for any kind of trigger:
                // 1. [SMTPat ...] - lemma-level pattern
                // 2. [SMTPatOr ...] - disjunctive pattern
                // 3. {:pattern ...} - inline quantifier trigger
                let has_trigger = SMTPAT_PATTERN.is_match(&context)
                    || SMTPATALL_PATTERN.is_match(&context)
                    || INLINE_PATTERN_TRIGGER.is_match(&context);

                if !has_trigger {
                    // Check if this appears to be in a specification context
                    // (val declarations, requires/ensures) where triggers are less critical
                    if self.is_specification_context(&lines, line_idx) {
                        continue;
                    }

                    let quantifier = if has_forall { "forall" } else { "exists" };
                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity: DiagnosticSeverity::Info, // Reduced from Warning
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message: format!(
                            "{} quantifier without trigger pattern. Consider adding \
                             {{:pattern (...)}} inline or [SMTPat ...] for lemmas \
                             if Z3 struggles with instantiation.",
                            quantifier
                        ),
                        fix: None,
                    });
                }
            }
        }

        diagnostics
    }

    /// Check if a quantifier appears to be inside a refinement type.
    ///
    /// Refinement types like `s:seq a{forall i. P i}` use quantifiers for
    /// specification only and don't need SMTPat triggers.
    fn is_in_refinement_type(&self, line: &str, prev_line: Option<&&str>) -> bool {
        // Count unbalanced braces before the forall/exists
        // If there's an open { without matching }, we're likely in a refinement
        let mut brace_depth: i32 = 0;

        // Check previous line for unclosed brace
        if let Some(prev) = prev_line {
            for ch in prev.chars() {
                match ch {
                    '{' => brace_depth += 1,
                    '}' => brace_depth = brace_depth.saturating_sub(1),
                    _ => {}
                }
            }
        }

        // Check current line up to the quantifier
        if let Some(pos) = line.find("forall").or_else(|| line.find("exists")) {
            for ch in line[..pos].chars() {
                match ch {
                    '{' => brace_depth += 1,
                    '}' => brace_depth = brace_depth.saturating_sub(1),
                    _ => {}
                }
            }
        }

        brace_depth > 0
    }

    /// Check if we're in a specification context where quantifiers don't need triggers.
    ///
    /// This includes val declarations, requires clauses, and ensures clauses
    /// that are not part of lemma postconditions requiring automatic instantiation.
    fn is_specification_context(&self, lines: &[&str], line_idx: usize) -> bool {
        // Look back for context markers
        let lookback = 10.min(line_idx);
        for i in (line_idx.saturating_sub(lookback)..=line_idx).rev() {
            let line = lines[i].trim();

            // val declarations are specifications
            if line.starts_with("val ") {
                return true;
            }

            // If we hit a let/let rec, check if it's a Lemma
            if line.starts_with("let ") {
                // Continue checking - Lemmas need triggers, other lets don't
                return !line.contains("Lemma");
            }

            // requires clauses are specification
            if line.starts_with("(requires") || line.contains("requires ") {
                return true;
            }
        }

        false
    }

    /// Check for non-linear arithmetic.
    ///
    /// Multiplication of two variables (not constants) creates non-linear
    /// arithmetic constraints that Z3 struggles with.
    fn check_nonlinear_arithmetic(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();

        for (line_idx, line) in content.lines().enumerate() {
            let line_num = line_idx + 1;

            // Skip comment lines
            let trimmed = line.trim();
            if trimmed.starts_with("(*") || trimmed.starts_with("//") {
                continue;
            }

            for caps in NONLINEAR_MUL.captures_iter(line) {
                let var1 = caps.get(1).map(|m| m.as_str()).unwrap_or("");
                let var2 = caps.get(2).map(|m| m.as_str()).unwrap_or("");

                // Skip if either is a numeric literal
                if NUMERIC_LITERAL.is_match(var1) || NUMERIC_LITERAL.is_match(var2) {
                    continue;
                }

                // Skip x * x (squaring) - often acceptable
                if var1 == var2 {
                    continue;
                }

                // Skip if both are known-safe loop variables
                let var1_safe = SAFE_VARS.contains(&var1);
                let var2_safe = SAFE_VARS.contains(&var2);
                if var1_safe && var2_safe {
                    // Still warn but as Info level
                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity: DiagnosticSeverity::Info,
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message: format!(
                            "Non-linear arithmetic `{} * {}` detected. While common for indexing, \
                             this can cause Z3 difficulty if verification times out.",
                            var1, var2
                        ),
                        fix: None,
                    });
                } else {
                    // Unknown variables - warn more strongly
                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity: DiagnosticSeverity::Warning,
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message: format!(
                            "Non-linear arithmetic `{} * {}` may cause Z3 difficulty. \
                             Consider using linear approximations or lemmas.",
                            var1, var2
                        ),
                        fix: None,
                    });
                }
            }
        }

        diagnostics
    }

    /// Check for deep quantifier nesting.
    ///
    /// Each nested quantifier level exponentially increases the search space.
    fn check_quantifier_depth(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let mut max_depth_seen = 0;
        let mut max_depth_line = 0;
        let mut current_depth = 0;
        let mut paren_depth = 0;
        let mut quantifier_paren_depths: Vec<usize> = Vec::new();

        for (line_idx, line) in content.lines().enumerate() {
            let line_num = line_idx + 1;

            // Track parenthesis depth and quantifiers
            let chars: Vec<char> = line.chars().collect();
            let mut i = 0;

            while i < chars.len() {
                match chars[i] {
                    '(' => {
                        // Check if this is a quantifier
                        let rest: String = chars[i..].iter().collect();
                        if QUANTIFIER_KEYWORD.is_match(&rest) {
                            current_depth += 1;
                            quantifier_paren_depths.push(paren_depth);

                            if current_depth > max_depth_seen {
                                max_depth_seen = current_depth;
                                max_depth_line = line_num;
                            }
                        }
                        paren_depth += 1;
                    }
                    ')' => {
                        if paren_depth > 0 {
                            paren_depth -= 1;
                            // Check if we're closing a quantifier scope
                            if let Some(&q_depth) = quantifier_paren_depths.last() {
                                if paren_depth < q_depth {
                                    quantifier_paren_depths.pop();
                                    if current_depth > 0 {
                                        current_depth -= 1;
                                    }
                                }
                            }
                        }
                    }
                    _ => {}
                }
                i += 1;
            }
        }

        if max_depth_seen > self.max_quantifier_depth {
            diagnostics.push(Diagnostic {
                rule: RuleCode::FST007,
                severity: DiagnosticSeverity::Warning,
                file: file.clone(),
                range: Range::point(max_depth_line, 1),
                message: format!(
                    "Quantifier nesting depth {} exceeds threshold {}. \
                     Deep nesting causes exponential Z3 search space. \
                     Consider splitting into separate lemmas.",
                    max_depth_seen, self.max_quantifier_depth
                ),
                fix: None,
            });
        }

        diagnostics
    }

    /// Check for large match expressions.
    ///
    /// Each match branch creates a case split in Z3, and many branches
    /// lead to proof state explosion.
    fn check_large_match(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let lines: Vec<&str> = content.lines().collect();

        let mut in_match = false;
        let mut match_start_line = 0;
        let mut branch_count = 0;
        let mut brace_depth: i32 = 0;

        for (line_idx, line) in lines.iter().enumerate() {
            let line_num = line_idx + 1;

            // Track brace depth for scope
            brace_depth += line.matches('{').count() as i32;
            brace_depth -= line.matches('}').count() as i32;
            brace_depth = std::cmp::max(0, brace_depth);

            if MATCH_START.is_match(line) {
                in_match = true;
                match_start_line = line_num;
                branch_count = 0;
            }

            if in_match && MATCH_BRANCH.is_match(line) {
                branch_count += 1;
            }

            // End match when we see another top-level definition
            if in_match && line_num > match_start_line + 2 {
                let trimmed = line.trim();
                if (trimmed.starts_with("let ")
                    || trimmed.starts_with("val ")
                    || trimmed.starts_with("type "))
                    && !trimmed.contains("match")
                {
                    if branch_count > self.max_match_branches {
                        diagnostics.push(Diagnostic {
                            rule: RuleCode::FST007,
                            severity: DiagnosticSeverity::Info,
                            file: file.clone(),
                            range: Range::point(match_start_line, 1),
                            message: format!(
                                "Match expression with {} branches exceeds threshold {}. \
                                 Consider grouping cases or using helper functions.",
                                branch_count, self.max_match_branches
                            ),
                            fix: None,
                        });
                    }
                    in_match = false;
                }
            }
        }

        // Handle match at end of file
        if in_match && branch_count > self.max_match_branches {
            diagnostics.push(Diagnostic {
                rule: RuleCode::FST007,
                severity: DiagnosticSeverity::Info,
                file: file.clone(),
                range: Range::point(match_start_line, 1),
                message: format!(
                    "Match expression with {} branches exceeds threshold {}. \
                     Consider grouping cases or using helper functions.",
                    branch_count, self.max_match_branches
                ),
                fix: None,
            });
        }

        diagnostics
    }

    /// Check for nested match expressions.
    ///
    /// Nested matches can cause combinatorial explosion of case analysis in Z3.
    /// However, we need to be smart about what we warn on to reduce false positives:
    ///
    /// - Depth 2 with DIFFERENT discriminants: Very common, usually fine (no warning)
    /// - Depth 3+: Always concerning due to exponential case splits (Info)
    /// - Same discriminant at multiple levels: Suspicious pattern (Warning)
    ///
    /// Example that should NOT warn (common pattern):
    /// ```fstar
    /// match x with
    /// | None -> 0
    /// | Some a -> match y with  // Different variable y - fine at depth 2
    ///   | None -> a
    ///   | Some b -> a + b
    /// ```
    ///
    /// Example that SHOULD warn:
    /// ```fstar
    /// match x with
    /// | Some _ -> match x with  // Same variable x - suspicious!
    ///   | _ -> ...
    /// ```
    fn check_nested_match(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let lines: Vec<&str> = content.lines().collect();

        // Track match nesting with discriminants
        struct MatchContext {
            line: usize,
            indent: usize,
            discriminant: String,
        }

        let mut match_stack: Vec<MatchContext> = Vec::new();

        for (line_idx, line) in lines.iter().enumerate() {
            let line_num = line_idx + 1;
            let trimmed = line.trim();

            // Skip comment lines
            if trimmed.starts_with("(*") || trimmed.starts_with("//") {
                continue;
            }

            // Calculate indentation level
            let indent = line.len() - line.trim_start().len();

            // Check if this is a new top-level definition (reset context)
            let is_new_toplevel_def = indent == 0
                && (trimmed.starts_with("let ")
                    || trimmed.starts_with("val ")
                    || trimmed.starts_with("type "));

            if is_new_toplevel_def && !match_stack.is_empty() {
                match_stack.clear();
            }

            // Pop match contexts when returning to lower indentation
            while let Some(ctx) = match_stack.last() {
                if !trimmed.is_empty()
                    && indent <= ctx.indent
                    && line_num > ctx.line
                    && !trimmed.starts_with('|')
                    && !trimmed.starts_with("->")
                {
                    match_stack.pop();
                } else {
                    break;
                }
            }

            // Check for match expression start - extract discriminant
            if let Some(caps) = MATCH_START.captures(line) {
                let discriminant = caps
                    .get(1)
                    .map(|m| m.as_str().to_string())
                    .unwrap_or_default();

                let depth = match_stack.len() + 1;

                // Check if this discriminant was already matched in the stack
                let same_discriminant_matched = match_stack
                    .iter()
                    .any(|ctx| Self::discriminants_overlap(&ctx.discriminant, &discriminant));

                // Determine if we should warn and at what severity
                let should_warn = if same_discriminant_matched {
                    // Matching same variable at multiple levels is suspicious
                    Some((
                        DiagnosticSeverity::Warning,
                        format!(
                            "Nested match on potentially same discriminant '{}' (depth {}). \
                             Matching the same expression at multiple levels may indicate \
                             incomplete pattern matching or opportunity to simplify.",
                            discriminant, depth
                        ),
                    ))
                } else if depth >= 3 {
                    // Deep nesting (3+) is always concerning
                    Some((
                        DiagnosticSeverity::Info,
                        format!(
                            "Deeply nested match expression (depth {}). \
                             Deep nesting causes combinatorial case splitting in Z3. \
                             Consider extracting inner matches to helper functions.",
                            depth
                        ),
                    ))
                } else {
                    // Depth 2 with different discriminants is common and fine - NO WARNING
                    None
                };

                if let Some((severity, message)) = should_warn {
                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity,
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message,
                        fix: None,
                    });
                }

                match_stack.push(MatchContext {
                    line: line_num,
                    indent,
                    discriminant,
                });
            }
        }

        diagnostics
    }

    /// Check if two discriminants potentially refer to the same value.
    ///
    /// This handles cases like:
    /// - Exact match: "x" == "x"
    /// - Field access: "x.field" and "x" share base variable
    /// - Tuple patterns: "fst x" and "x" share base variable
    fn discriminants_overlap(d1: &str, d2: &str) -> bool {
        // Exact match
        if d1 == d2 {
            return true;
        }

        // Extract the base variable name (handles field access and function application)
        fn extract_base(s: &str) -> &str {
            // Handle field access: x.field -> x
            let s = if let Some(pos) = s.find('.') {
                &s[..pos]
            } else {
                s
            };

            // Handle function application like "fst x" -> "x"
            // Take the last word as the likely variable
            s.split_whitespace().last().unwrap_or(s)
        }

        let base1 = extract_base(d1);
        let base2 = extract_base(d2);

        // Same base variable indicates potential overlap
        base1 == base2
    }

    /// Check for recursive functions without decreases clause.
    ///
    /// Without explicit decreases, F* must infer termination. For simple
    /// structural recursion (recursing on a smaller argument), F* handles
    /// this well. Only non-obvious termination patterns benefit from
    /// explicit decreases clauses.
    ///
    /// This check is conservative:
    /// - Skips .fst files that have corresponding .fsti interfaces (decreases in interface)
    /// - Only issues Info-level suggestions, not warnings
    /// - Recognizes common structural recursion patterns
    fn check_recursive_without_decreases(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let lines: Vec<&str> = content.lines().collect();

        // Check if this is a .fst file with a corresponding .fsti
        // In that case, the decreases clause is typically in the interface
        let has_interface = if file.extension().is_some_and(|e| e == "fst") {
            let fsti_path = file.with_extension("fsti");
            fsti_path.exists()
        } else {
            false
        };

        // If there's an interface file, skip this check entirely
        // The decreases clause should be in the interface
        if has_interface {
            return diagnostics;
        }

        for (line_idx, line) in lines.iter().enumerate() {
            let line_num = line_idx + 1;

            if let Some(caps) = LET_REC.captures(line) {
                let func_name = caps.get(1).map(|m| m.as_str()).unwrap_or("unknown");

                // Look for decreases clause within next 10 lines or until next definition
                let mut found_decreases = false;
                let search_end = std::cmp::min(line_idx + 10, lines.len());

                for check_line in &lines[line_idx..search_end] {
                    if DECREASES_CLAUSE.is_match(check_line) {
                        found_decreases = true;
                        break;
                    }
                    // Stop at next definition
                    if *check_line != *line
                        && (check_line.trim().starts_with("let ")
                            || check_line.trim().starts_with("val ")
                            || check_line.trim().starts_with("type "))
                    {
                        break;
                    }
                }

                if !found_decreases {
                    // Check if this looks like simple structural recursion
                    // (recursion on obvious decreasing argument)
                    if self.looks_like_structural_recursion(&lines, line_idx, func_name) {
                        continue; // Skip - F* handles this well
                    }

                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity: DiagnosticSeverity::Info,
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message: format!(
                            "Recursive function `{}` has no explicit decreases clause. \
                             F* can often infer termination, but explicit (decreases ...) \
                             helps when inference struggles.",
                            func_name
                        ),
                        fix: None,
                    });
                }
            }
        }

        diagnostics
    }

    /// Check if a recursive function looks like simple structural recursion.
    ///
    /// Patterns that F* handles well without explicit decreases:
    /// - Recursion on list tail: `f tl`, `f (List.tl l)`
    /// - Recursion on predecessor: `f (n - 1)`, `f (x - 1)`
    /// - Recursion with hi-lo pattern: `f lo (hi - 1)`, `f (lo + 1) hi`
    fn looks_like_structural_recursion(
        &self,
        lines: &[&str],
        start_idx: usize,
        func_name: &str,
    ) -> bool {
        // Look at the function body (next few lines)
        let search_end = std::cmp::min(start_idx + 15, lines.len());
        let body: String = lines[start_idx..search_end].join("\n");

        // Check for common structural recursion patterns
        let structural_patterns = [
            // List recursion: func tl, func (List.tl x), func xs
            format!(r"{}\s+tl\b", func_name),
            format!(r"{}\s+\(List\.tl", func_name),
            format!(r"{}\s+xs\b", func_name),
            // Natural number recursion: func (n - 1), func (x - 1)
            format!(r"{}\s+\([a-z_]+\s*-\s*1\)", func_name),
            // Range recursion: func (lo + 1) hi, func lo (hi - 1)
            format!(r"{}\s+\([a-z_]+\s*\+\s*1\)\s+[a-z_]+", func_name),
            format!(r"{}\s+[a-z_]+\s+\([a-z_]+\s*-\s*1\)", func_name),
        ];

        for pattern in &structural_patterns {
            if let Ok(re) = Regex::new(pattern) {
                if re.is_match(&body) {
                    return true;
                }
            }
        }

        false
    }

    /// Check for complex assert statements without tactic guidance.
    ///
    /// F* has several assert variants:
    /// - `assert_norm (...)` - forces normalization, often necessary (no warning)
    /// - `assert (...) by (...)` - has explicit tactic (no warning)
    /// - `assert_by_tactic` - has explicit tactic (no warning)
    /// - `assert (...)` with quantifiers or complex expressions - may cause Z3 difficulty
    ///
    /// We only warn about plain asserts containing quantifiers (forall/exists)
    /// or very long conditions that suggest complexity.
    fn check_complex_asserts(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();
        let lines: Vec<&str> = content.lines().collect();

        for (line_idx, line) in lines.iter().enumerate() {
            let line_num = line_idx + 1;
            let trimmed = line.trim();

            // Skip comment lines
            if trimmed.starts_with("(*") || trimmed.starts_with("//") {
                continue;
            }

            // Skip assert_norm - these are intentional normalization hints
            if ASSERT_NORM.is_match(line) {
                continue;
            }

            // Skip assert_by_tactic - has explicit tactic guidance
            if ASSERT_BY_TACTIC.is_match(line) {
                continue;
            }

            // Check for plain assert
            if PLAIN_ASSERT.is_match(line) {
                // Check if this assert has a `by` clause on this or next line
                let context_end = std::cmp::min(line_idx + 2, lines.len());
                let context: String = lines[line_idx..context_end].join(" ");

                if ASSERT_BY.is_match(&context) || context.contains(") by ") {
                    continue; // Has tactic guidance
                }

                // Check if the assert contains quantifiers
                let has_quantifier = QUANTIFIER_KEYWORD.is_match(line);

                // Check if the condition spans multiple lines (complex expression)
                let is_multiline = trimmed.ends_with('(')
                    || (!trimmed.contains(");") && !trimmed.contains(") ;"));

                // Only warn if the assert contains a quantifier
                // Complex multiline asserts without quantifiers are usually fine
                if has_quantifier {
                    diagnostics.push(Diagnostic {
                        rule: RuleCode::FST007,
                        severity: DiagnosticSeverity::Info,
                        file: file.clone(),
                        range: Range::point(line_num, 1),
                        message: "assert with quantifier may cause Z3 difficulty. \
                             Consider using `assert (...) by (tactic)` for explicit proof guidance, \
                             or add intermediate lemmas."
                            .to_string(),
                        fix: None,
                    });
                } else if is_multiline {
                    // Check if the full assertion (multiline) contains quantifiers
                    let search_end = std::cmp::min(line_idx + 5, lines.len());
                    let full_assert: String = lines[line_idx..search_end].join(" ");

                    if QUANTIFIER_KEYWORD.is_match(&full_assert) {
                        diagnostics.push(Diagnostic {
                            rule: RuleCode::FST007,
                            severity: DiagnosticSeverity::Info,
                            file: file.clone(),
                            range: Range::point(line_num, 1),
                            message: "assert with quantifier may cause Z3 difficulty. \
                                 Consider using `assert (...) by (tactic)` for explicit proof guidance."
                                .to_string(),
                            fix: None,
                        });
                    }
                }
            }
        }

        diagnostics
    }

    /// Check for high z3rlimit settings.
    ///
    /// High rlimits are often a symptom of proof complexity issues rather
    /// than a proper solution.
    fn check_z3rlimit(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();

        for (line_idx, line) in content.lines().enumerate() {
            let line_num = line_idx + 1;

            // Check #set-options pattern
            if let Some(caps) = Z3RLIMIT.captures(line) {
                if let Some(limit_match) = caps.get(1) {
                    if let Ok(limit) = limit_match.as_str().parse::<u32>() {
                        if limit > self.max_z3rlimit {
                            diagnostics.push(Diagnostic {
                                rule: RuleCode::FST007,
                                severity: DiagnosticSeverity::Info,
                                file: file.clone(),
                                range: Range::point(line_num, 1),
                                message: format!(
                                    "High z3rlimit {} exceeds threshold {}. \
                                     Consider splitting the proof or adding intermediate lemmas.",
                                    limit, self.max_z3rlimit
                                ),
                                fix: None,
                            });
                        }
                    }
                }
            }

            // Also check inline z3rlimit (in attributes)
            if !Z3RLIMIT.is_match(line) {
                if let Some(caps) = Z3RLIMIT_INLINE.captures(line) {
                    if let Some(limit_match) = caps.get(1) {
                        if let Ok(limit) = limit_match.as_str().parse::<u32>() {
                            if limit > self.max_z3rlimit {
                                diagnostics.push(Diagnostic {
                                    rule: RuleCode::FST007,
                                    severity: DiagnosticSeverity::Info,
                                    file: file.clone(),
                                    range: Range::point(line_num, 1),
                                    message: format!(
                                        "High z3rlimit {} exceeds threshold {}. \
                                         Consider splitting the proof or adding intermediate lemmas.",
                                        limit, self.max_z3rlimit
                                    ),
                                    fix: None,
                                });
                            }
                        }
                    }
                }
            }
        }

        diagnostics
    }
}

impl Default for Z3ComplexityRule {
    fn default() -> Self {
        Self::new()
    }
}

impl Rule for Z3ComplexityRule {
    fn code(&self) -> RuleCode {
        RuleCode::FST007
    }

    fn check(&self, file: &PathBuf, content: &str) -> Vec<Diagnostic> {
        let mut diagnostics = Vec::new();

        diagnostics.extend(self.check_quantifiers_without_triggers(file, content));
        diagnostics.extend(self.check_nonlinear_arithmetic(file, content));
        diagnostics.extend(self.check_quantifier_depth(file, content));
        diagnostics.extend(self.check_large_match(file, content));
        diagnostics.extend(self.check_nested_match(file, content));
        diagnostics.extend(self.check_recursive_without_decreases(file, content));
        diagnostics.extend(self.check_complex_asserts(file, content));
        diagnostics.extend(self.check_z3rlimit(file, content));

        diagnostics
    }
}

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

    fn make_path() -> PathBuf {
        PathBuf::from("test.fst")
    }

    // ========== Quantifier trigger tests ==========

    #[test]
    fn test_quantifier_without_trigger_in_lemma() {
        let rule = Z3ComplexityRule::new();
        // Lemma with forall but no trigger - should warn
        let content = "let lemma_foo (x:int) : Lemma (forall (y:int). y >= 0) = ()";
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("trigger")));
    }

    #[test]
    fn test_quantifier_with_smtpat() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let lemma_foo (x:int) : Lemma
  (forall (y:int). y >= 0)
  [SMTPat (y >= 0)]
= ()
"#;
        let diags = rule.check(&make_path(), content);
        // Should not warn - SMTPat trigger is present
        assert!(!diags.iter().any(|d| d.message.contains("trigger")));
    }

    #[test]
    fn test_quantifier_with_inline_pattern() {
        let rule = Z3ComplexityRule::new();
        // F* inline pattern trigger syntax
        let content = r#"
let lemma_foo (x:int) : Lemma
  (forall (y:int). {:pattern (f y)} f y >= 0)
= ()
"#;
        let diags = rule.check(&make_path(), content);
        // Should not warn - inline pattern trigger is present
        assert!(!diags.iter().any(|d| d.message.contains("trigger")));
    }

    #[test]
    fn test_quantifier_in_refinement_type() {
        let rule = Z3ComplexityRule::new();
        // Quantifier inside refinement type - should NOT warn
        let content = r#"
val create:
    #a:Type
  -> len:size_nat
  -> init:a ->
  Tot (s:lseq a len{forall (i:nat). i < len ==> index s i == init})
"#;
        let diags = rule.check(&make_path(), content);
        // Quantifiers in refinement types don't need triggers
        assert!(!diags.iter().any(|d| d.message.contains("trigger")));
    }

    #[test]
    fn test_quantifier_in_val_declaration() {
        let rule = Z3ComplexityRule::new();
        // Quantifier in val declaration (specification) - should NOT warn
        let content = r#"
val lemma_forall_intro: p:(a -> prop) ->
  Lemma (requires (forall (x:a). p x))
        (ensures True)
"#;
        let diags = rule.check(&make_path(), content);
        // val declarations are specification context
        assert!(!diags.iter().any(|d| d.message.contains("trigger")));
    }

    #[test]
    fn test_exists_without_trigger() {
        let rule = Z3ComplexityRule::new();
        let content = "let lemma_exists (x:int) : Lemma (exists (y:int). y > x) = ()";
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("exists") && d.message.contains("trigger")));
    }

    #[test]
    fn test_quantifier_with_smtpator() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let lemma_or (x:int) : Lemma
  (forall (y:int). y >= 0 \/ y < 0)
  [SMTPatOr [[SMTPat (y >= 0)]; [SMTPat (y < 0)]]]
= ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("trigger")));
    }

    // ========== Non-linear arithmetic tests ==========

    #[test]
    fn test_nonlinear_arithmetic() {
        let rule = Z3ComplexityRule::new();
        let content = "let result = a * b + c";
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("Non-linear")));
    }

    #[test]
    fn test_squaring_allowed() {
        let rule = Z3ComplexityRule::new();
        let content = "let square = x * x";
        let diags = rule.check(&make_path(), content);
        // x * x should not trigger warning
        assert!(!diags.iter().any(|d| d.message.contains("x * x")));
    }

    #[test]
    fn test_safe_vars_multiplication() {
        let rule = Z3ComplexityRule::new();
        let content = "let index = i * len";
        let diags = rule.check(&make_path(), content);
        // Should produce Info level, not Warning
        let info_diags: Vec<_> = diags
            .iter()
            .filter(|d| d.message.contains("Non-linear") && d.severity == DiagnosticSeverity::Info)
            .collect();
        assert!(!info_diags.is_empty());
    }

    #[test]
    fn test_constant_multiplication_ignored() {
        let rule = Z3ComplexityRule::new();
        // Numeric literals should not trigger
        let content = "let result = 2 * x";
        let diags = rule.check(&make_path(), content);
        // 2 is numeric, so this should not warn
        assert!(!diags.iter().any(|d| d.message.contains("2 * x")));
    }

    // ========== z3rlimit tests ==========

    #[test]
    fn test_high_z3rlimit() {
        let rule = Z3ComplexityRule::new();
        let content = r#"#set-options "--z3rlimit 500""#;
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("z3rlimit 500")));
    }

    #[test]
    fn test_acceptable_z3rlimit() {
        let rule = Z3ComplexityRule::new();
        let content = r#"#set-options "--z3rlimit 50""#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("z3rlimit")));
    }

    #[test]
    fn test_z3rlimit_boundary() {
        let rule = Z3ComplexityRule::new();
        // Exactly at threshold should not warn
        let content = r#"#set-options "--z3rlimit 100""#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("z3rlimit")));

        // Just over threshold should warn
        let content2 = r#"#set-options "--z3rlimit 101""#;
        let diags2 = rule.check(&make_path(), content2);
        assert!(diags2.iter().any(|d| d.message.contains("z3rlimit 101")));
    }

    // ========== Recursive without decreases tests ==========

    #[test]
    fn test_recursive_structural_no_warning() {
        let rule = Z3ComplexityRule::new();
        // Simple structural recursion on (n - 1) - F* handles this well
        let content = r#"
let rec factorial (n:nat) : nat =
  if n = 0 then 1
  else n * factorial (n - 1)
"#;
        let diags = rule.check(&make_path(), content);
        // Structural recursion should NOT warn
        assert!(!diags.iter().any(|d| d.message.contains("decreases")));
    }

    #[test]
    fn test_recursive_list_structural_no_warning() {
        let rule = Z3ComplexityRule::new();
        // Structural recursion on list tail
        let content = r#"
let rec length #a (l:list a) : nat =
  match l with
  | [] -> 0
  | _ :: tl -> 1 + length tl
"#;
        let diags = rule.check(&make_path(), content);
        // Structural recursion on tl should NOT warn
        assert!(!diags.iter().any(|d| d.message.contains("decreases")));
    }

    #[test]
    fn test_recursive_complex_should_warn() {
        let rule = Z3ComplexityRule::new();
        // Non-obvious recursion pattern without structural pattern - should warn
        // This function uses a computed recursive argument, not simple decrement
        let content = r#"
let rec collatz (n:pos) : nat =
  if n = 1 then 0
  else if n % 2 = 0 then 1 + collatz (n / 2)
  else 1 + collatz (3 * n + 1)
"#;
        let diags = rule.check(&make_path(), content);
        // Complex recursion (no structural pattern) should warn
        assert!(diags.iter().any(|d| d.message.contains("decreases")));
    }

    #[test]
    fn test_recursive_with_decreases() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let rec factorial (n:nat) : nat
  (decreases n)
= if n = 0 then 1
  else n * factorial (n - 1)
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags
            .iter()
            .any(|d| d.message.contains("decreases")));
    }

    #[test]
    fn test_recursive_with_decreases_braces() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let rec length #a (l:list a) : nat
  decreases { l }
= match l with
  | [] -> 0
  | _ :: tl -> 1 + length tl
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags
            .iter()
            .any(|d| d.message.contains("decreases")));
    }

    #[test]
    fn test_recursive_range_pattern() {
        let rule = Z3ComplexityRule::new();
        // Range recursion: lo+1, hi-1 patterns
        let content = r#"
let rec repeat_left lo hi a f acc =
  if lo = hi then acc
  else repeat_left (lo + 1) hi a f (f lo acc)
"#;
        let diags = rule.check(&make_path(), content);
        // Should recognize (lo + 1) hi pattern as structural
        assert!(!diags.iter().any(|d| d.message.contains("decreases")));
    }

    // ========== Deep quantifier nesting tests ==========

    #[test]
    fn test_deep_quantifier_nesting() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let deep_nesting : Lemma
  (forall (x:int). forall (y:int). forall (z:int). forall (w:int). x + y + z + w >= 0)
= ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(diags
            .iter()
            .any(|d| d.message.contains("nesting depth") && d.message.contains("exceeds")));
    }

    #[test]
    fn test_acceptable_quantifier_nesting() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let shallow_nesting : Lemma
  (forall (x:int). forall (y:int). x + y >= 0)
= ()
"#;
        let diags = rule.check(&make_path(), content);
        // Depth 2 should be acceptable (threshold is 3)
        assert!(!diags.iter().any(|d| d.message.contains("nesting depth")));
    }

    #[test]
    fn test_mixed_quantifier_nesting() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let mixed_quantifiers : Lemma
  (forall (x:int). exists (y:int). forall (z:int). exists (w:int). x < y /\ z < w)
= ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("nesting depth")));
    }

    // ========== Large match tests ==========

    #[test]
    fn test_large_match() {
        let rule = Z3ComplexityRule::new();
        // Create a match with more than 20 branches
        let mut content = String::from("let big_match x = match x with\n");
        for i in 0..25 {
            content.push_str(&format!("  | Case{} -> {}\n", i, i));
        }
        let diags = rule.check(&make_path(), &content);
        assert!(diags.iter().any(|d| d.message.contains("branches")));
    }

    #[test]
    fn test_acceptable_match() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let small_match x = match x with
  | None -> 0
  | Some y -> y
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("branches")));
    }

    // ========== Nested match tests ==========

    #[test]
    fn test_nested_match_depth2_different_discriminants_no_warning() {
        let rule = Z3ComplexityRule::new();
        // Depth 2 with different discriminants (x and y) should NOT warn
        let content = r#"
let nested_match x y = match x with
  | None -> 0
  | Some a ->
    match y with
      | None -> a
      | Some b -> a + b
"#;
        let diags = rule.check(&make_path(), content);
        // Should NOT warn for depth 2 with different discriminants
        assert!(!diags.iter().any(|d| d.message.contains("match")));
    }

    #[test]
    fn test_nested_match_depth3_warns() {
        let rule = Z3ComplexityRule::new();
        // Depth 3 should always warn regardless of discriminants
        let content = r#"
let triple_match x y z = match x with
  | None -> 0
  | Some a ->
    match y with
      | None -> a
      | Some b ->
        match z with
          | None -> a + b
          | Some c -> a + b + c
"#;
        let diags = rule.check(&make_path(), content);
        // Should detect exactly 1 warning at depth 3 (not depth 2)
        let nested_diags: Vec<_> = diags
            .iter()
            .filter(|d| d.message.contains("Deeply nested match"))
            .collect();
        assert_eq!(nested_diags.len(), 1);
        assert!(nested_diags[0].message.contains("depth 3"));
    }

    #[test]
    fn test_nested_match_same_discriminant_warns() {
        let rule = Z3ComplexityRule::new();
        // Matching the same variable at multiple levels SHOULD warn
        let content = r#"
let suspicious_match x = match x with
  | Some (Some a) ->
    match x with
      | Some _ -> a
      | None -> 0
  | _ -> 0
"#;
        let diags = rule.check(&make_path(), content);
        // Should warn about same discriminant
        assert!(diags.iter().any(|d|
            d.message.contains("same discriminant") && d.severity == DiagnosticSeverity::Warning
        ));
    }

    #[test]
    fn test_non_nested_match_no_warning() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
let first_match x = match x with
  | None -> 0
  | Some a -> a

let second_match y = match y with
  | None -> 1
  | Some b -> b
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("Nested match")));
    }

    // ========== Assert pattern tests ==========

    #[test]
    fn test_assert_norm_no_warning() {
        let rule = Z3ComplexityRule::new();
        // assert_norm is intentional - should not warn
        let content = r#"
let test () =
  assert_norm (forall (x:int). x >= 0);
  ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("assert") && d.message.contains("tactic")));
    }

    #[test]
    fn test_assert_by_no_warning() {
        let rule = Z3ComplexityRule::new();
        // assert with by clause has tactic guidance - should not warn
        let content = r#"
let test () =
  assert (forall (x:int). x >= 0) by (smt());
  ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("assert") && d.message.contains("tactic")));
    }

    #[test]
    fn test_plain_assert_with_quantifier_warns() {
        let rule = Z3ComplexityRule::new();
        // Plain assert with quantifier - should warn
        let content = r#"
let test () =
  assert (forall (x:int). x * x >= 0);
  ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(diags.iter().any(|d| d.message.contains("assert") && d.message.contains("quantifier")));
    }

    #[test]
    fn test_simple_assert_no_warning() {
        let rule = Z3ComplexityRule::new();
        // Simple assert without quantifiers - should not warn
        let content = r#"
let test x =
  assert (x >= 0);
  ()
"#;
        let diags = rule.check(&make_path(), content);
        assert!(!diags.iter().any(|d| d.message.contains("assert") && d.message.contains("quantifier")));
    }

    // ========== Comment filtering tests ==========

    #[test]
    fn test_comments_ignored() {
        let rule = Z3ComplexityRule::new();
        let content = r#"
// forall (x:int). x >= 0
(* exists (y:int). y > 0 *)
let foo = 1
"#;
        let diags = rule.check(&make_path(), content);
        // Comments should not trigger quantifier warnings
        assert!(!diags.iter().any(|d| d.message.contains("SMTPat")));
    }

    // ========== Rule code test ==========

    #[test]
    fn test_rule_code() {
        let rule = Z3ComplexityRule::new();
        assert_eq!(rule.code(), RuleCode::FST007);
    }

    // ========== Configuration tests ==========

    #[test]
    fn test_custom_thresholds() {
        let mut rule = Z3ComplexityRule::new();
        rule.max_quantifier_depth = 2;
        rule.max_match_branches = 5;
        rule.max_z3rlimit = 50;

        // Test stricter quantifier depth (need 4 foralls to exceed depth 2)
        // The depth detection increments when there's another forall ahead
        let content1 =
            r#"(forall (x:int). forall (y:int). forall (z:int). forall (w:int). x >= 0)"#;
        let diags1 = rule.check(&make_path(), content1);
        assert!(diags1.iter().any(|d| d.message.contains("nesting depth")));

        // Test stricter z3rlimit
        let content2 = r#"#set-options "--z3rlimit 60""#;
        let diags2 = rule.check(&make_path(), content2);
        assert!(diags2.iter().any(|d| d.message.contains("z3rlimit 60")));
    }
}