pathfinder-mcp 0.22.0

Pathfinder — The Headless IDE MCP Server for AI Coding Agents
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
use super::super::test_helpers::{make_scope, make_server_with_lawyer, make_temp_workspace};
use super::*;
use crate::server::types::LocateParams;
use crate::server::PathfinderServer;
use pathfinder_common::config::PathfinderConfig;
use pathfinder_common::sandbox::Sandbox;
use pathfinder_common::types::{DegradedReason, WorkspaceRoot};
use pathfinder_lsp::{DefinitionLocation, MockLawyer};
use pathfinder_search::MockScout;
use pathfinder_treesitter::mock::MockSurgeon;
use std::sync::Arc;

/// Extract `GetDefinitionResponse` from a `CallToolResult.structured_content`.
/// Replaces the old `call_res.0` tuple-unwrap from the `Json<T>` era.
fn unpack_def(res: rmcp::model::CallToolResult) -> crate::server::types::GetDefinitionResponse {
    serde_json::from_value(res.structured_content.expect("structured_content")).unwrap()
}

// ── get_definition ───────────────────────────────────────────────

#[tokio::test]
async fn test_get_definition_routes_to_lawyer_success() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let lawyer = Arc::new(MockLawyer::default());
    lawyer.set_goto_definition_result(Ok(Some(DefinitionLocation {
        file: "src/auth.rs".into(),
        line: 42,
        column: 5,
        preview: "pub fn login() -> bool {".into(),
    })));

    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer.clone());
    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };

    let result = server.get_definition_impl(params).await;
    let call_res = result.expect("should succeed");
    let val = unpack_def(call_res);

    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(val.line, 42);
    assert_eq!(val.preview, "pub fn login() -> bool {");
    assert!(!val.degraded);
    assert_eq!(lawyer.goto_definition_call_count(), 1);
}

#[tokio::test]
async fn test_get_definition_degrades_when_no_lsp() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    // Default MockLawyer returns Ok(None); use NoOpLawyer for NoLspAvailable
    let lawyer = Arc::new(pathfinder_lsp::NoOpLawyer);
    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);
    let server = PathfinderServer::with_all_engines(
        ws,
        config,
        sandbox,
        Arc::new(MockScout::default()),
        surgeon,
        lawyer,
    );

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    // Should return NO_LSP_AVAILABLE error
    let Err(err) = result else {
        panic!("expected error but got Ok");
    };
    let code = err
        .data
        .as_ref()
        .and_then(|d| d.get("error"))
        .and_then(|v| v.as_str())
        .unwrap_or("");
    assert_eq!(code, "NO_LSP_AVAILABLE");
}

#[tokio::test]
async fn test_get_definition_rejects_empty_semantic_path() {
    let surgeon = Arc::new(MockSurgeon::default());
    let lawyer = Arc::new(MockLawyer::default());
    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some(String::default()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_get_definition_rejects_sandbox_denied_path() {
    let surgeon = Arc::new(MockSurgeon::new());
    let lawyer = Arc::new(MockLawyer::default());
    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some(".git/objects/abc::def".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Err(err) = result else {
        panic!("expected error but got Ok");
    };
    let code = err
        .data
        .as_ref()
        .and_then(|d| d.get("error"))
        .and_then(|v| v.as_str())
        .unwrap_or("");
    assert_eq!(code, "ACCESS_DENIED");
}

// ── get_definition LSP error path ──────────────────────────────────

#[tokio::test]
async fn test_get_definition_lsp_error_no_grep_match_returns_lsp_error() {
    // When a generic LSP error fires AND grep returns nothing, the original error is surfaced.
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let lawyer = Arc::new(MockLawyer::default());
    // Simulate an LSP protocol error (not NoLspAvailable, not None)
    lawyer.set_goto_definition_result(Err(LspError::Protocol("LSP protocol error".to_string())));

    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);
    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };

    let result = server.get_definition_impl(params).await;
    let Err(err) = result else {
        panic!("expected error but got Ok");
    };
    let code = err
        .data
        .as_ref()
        .and_then(|d| d.get("error"))
        .and_then(|v| v.as_str())
        .unwrap_or("");
    assert_eq!(code, "LSP_ERROR");
}

// ── catch-all Err(e) grep fallback ───────────────────────────────

#[tokio::test]
async fn test_get_definition_generic_lsp_error_falls_back_to_grep() {
    // When a generic LSP error fires and grep DOES find a match,
    // the result should be Ok with degraded=true and reason containing "lsp_error_grep_fallback".
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/auth.rs"),
        "fn login() -> bool { true }",
    )
    .unwrap();

    // Scout returns a match so the fallback succeeds
    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/auth.rs".to_string(),
            line: 1,
            column: 1,
            content: "fn login() -> bool { true }".to_string(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: None,
            is_definition: None,
            version_hash: "sha256:abc".to_string(),
            known: Some(false),
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 0,
        files_in_scope: 0,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    // Lawyer returns a generic LSP error (not NoLspAvailable)
    let lawyer = Arc::new(MockLawyer::default());
    lawyer.set_goto_definition_result(Err(LspError::Protocol("protocol violation".to_string())));

    let server = PathfinderServer::with_all_engines(ws, config, sandbox, scout, surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with grep fallback, got Err");
    };
    let val = unpack_def(res);
    assert!(val.degraded, "should be degraded");
    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(
        val.degraded_reason,
        Some(DegradedReason::LspErrorGrepFallback),
        "degraded_reason should be lsp_error_grep_fallback: {:?}",
        val.degraded_reason
    );
}

#[tokio::test]
async fn test_get_definition_connection_lost_falls_back_to_grep() {
    // Same as above but with a "connection lost" error message — exercises
    // the same code path with a different error variant text.
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/auth.rs"),
        "fn login() -> bool { true }",
    )
    .unwrap();

    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/auth.rs".to_string(),
            line: 1,
            column: 1,
            content: "fn login() -> bool { true }".to_string(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: None,
            is_definition: None,
            version_hash: "sha256:abc".to_string(),
            known: Some(false),
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 0,
        files_in_scope: 0,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let lawyer = Arc::new(MockLawyer::default());
    lawyer.set_goto_definition_result(Err(LspError::ConnectionLost));

    let server = PathfinderServer::with_all_engines(ws, config, sandbox, scout, surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with grep fallback, got Err");
    };
    let val = unpack_def(res);
    assert!(val.degraded, "should be degraded");
    assert_eq!(
        val.degraded_reason,
        Some(DegradedReason::LspErrorGrepFallback),
        "degraded_reason: {:?}",
        val.degraded_reason
    );
}

#[tokio::test]
async fn test_get_definition_lsp_none_no_grep_fallback_returns_symbol_not_found() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));
    // Set up extract_symbols to return empty list for did_you_mean
    surgeon
        .extract_symbols_results
        .lock()
        .unwrap()
        .push(Ok(Vec::new()));

    // Default MockLawyer returns Ok(None) for goto_definition.
    // MockScout returns empty results → no grep fallback.
    let lawyer = Arc::new(MockLawyer::default());
    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Err(err) = result else {
        panic!("expected error but got Ok");
    };
    let code = err
        .data
        .as_ref()
        .and_then(|d| d.get("error"))
        .and_then(|v| v.as_str())
        .unwrap_or("");
    assert_eq!(code, "SYMBOL_NOT_FOUND");
}

#[tokio::test]
async fn test_get_definition_grep_fallback_with_mock_scout() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    // MockLawyer returns Ok(None) — triggers grep fallback
    let _lawyer = Arc::new(MockLawyer::default());

    // Use NoOpLawyer (NoLspAvailable path) + MockScout with results
    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    // Write a file so search can find it
    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/other.rs"),
        "fn login() -> bool { true }",
    )
    .unwrap();

    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/other.rs".to_string(),
            line: 1,
            column: 1,
            content: "fn login() -> bool { true }".to_string(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: None,
            is_definition: None,
            version_hash: "sha256:abc".to_string(),
            known: Some(false),
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 0,
        files_in_scope: 0,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let server = PathfinderServer::with_all_engines(
        ws,
        config,
        sandbox,
        scout,
        surgeon,
        Arc::new(pathfinder_lsp::NoOpLawyer),
    );

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with grep fallback, got Err");
    };
    // Should return degraded result from grep
    let val = unpack_def(res);
    assert!(val.degraded);
    assert_eq!(val.file, "src/other.rs");
    assert!(val
        .degraded_reason
        .as_ref()
        .unwrap()
        .to_string()
        .contains("grep_fallback"));
}

// ── DS-1: DocumentGuard lifecycle tests ──────────────────────────────────

#[tokio::test]
async fn test_get_definition_closes_document_on_success() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let lawyer = Arc::new(MockLawyer::default());
    lawyer.set_goto_definition_result(Ok(Some(DefinitionLocation {
        file: "src/auth.rs".into(),
        line: 42,
        column: 5,
        preview: "pub fn login() -> bool {".into(),
    })));

    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer.clone());
    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };

    let _ = server.get_definition_impl(params).await;

    // Yield so the spawned `did_close` task (from MockDocumentLease Drop) runs.
    tokio::task::yield_now().await;

    assert_eq!(
        lawyer.did_open_call_count(),
        lawyer.did_close_call_count(),
        "DS-1: did_open and did_close must be symmetric on success"
    );
}

#[tokio::test]
async fn test_get_definition_closes_document_on_lsp_error() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let lawyer = Arc::new(MockLawyer::default());
    // Simulate an LSP protocol error after the document is opened
    lawyer.set_goto_definition_result(Err(LspError::Protocol("LSP crashed".to_string())));

    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer.clone());
    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };

    let _ = server.get_definition_impl(params).await;

    tokio::task::yield_now().await;

    assert_eq!(
        lawyer.did_open_call_count(),
        lawyer.did_close_call_count(),
        "DS-1: did_close must be called even when LSP returns an error"
    );
}

// ── TASK-3: did_you_mean suggestions ─────────────────────────────────────

/// When `get_definition` fails (LSP None, grep empty), and `extract_symbols`
/// returns close-but-not-exact symbol names, the error payload should contain
/// `did_you_mean` suggestions computed by Levenshtein distance.
#[tokio::test]
async fn test_get_definition_returns_did_you_mean_suggestions_on_symbol_not_found() {
    use pathfinder_treesitter::surgeon::{ExtractedSymbol, SymbolKind};

    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    // Provide close symbol names so did_you_mean can produce suggestions.
    // The caller is looking for "login" — we provide "logIn" and "logon" as candidates.
    let symbols = vec![
        ExtractedSymbol {
            name: "logIn".to_owned(),
            semantic_path: "logIn".to_owned(),
            kind: SymbolKind::Function,
            byte_range: 0..5,
            start_line: 0,
            end_line: 0,
            name_column: 0,
            access_level: pathfinder_treesitter::surgeon::AccessLevel::Public,
            children: vec![],
        },
        ExtractedSymbol {
            name: "logon".to_owned(),
            semantic_path: "logon".to_owned(),
            kind: SymbolKind::Function,
            byte_range: 10..15,
            start_line: 1,
            end_line: 1,
            name_column: 0,
            access_level: pathfinder_treesitter::surgeon::AccessLevel::Public,
            children: vec![],
        },
    ];
    surgeon
        .extract_symbols_results
        .lock()
        .unwrap()
        .push(Ok(symbols));

    // MockLawyer returns Ok(None) — triggers warmup retry → grep fallback → did_you_mean path.
    // MockScout returns empty results → grep fallback finds nothing → SymbolNotFound.
    let lawyer = Arc::new(MockLawyer::default());
    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Err(err) = result else {
        panic!("expected SYMBOL_NOT_FOUND error, got Ok");
    };

    // Verify error code
    let code = err
        .data
        .as_ref()
        .and_then(|d| d.get("error"))
        .and_then(|v| v.as_str())
        .unwrap_or("");
    assert_eq!(
        code, "SYMBOL_NOT_FOUND",
        "error code must be SYMBOL_NOT_FOUND"
    );

    // Verify did_you_mean field is non-empty and contains expected candidates.
    // The suggestions are nested in data.details.did_you_mean (via `to_details()`).
    let suggestions = err
        .data
        .as_ref()
        .and_then(|d| d.get("details"))
        .and_then(|d| d.get("did_you_mean"))
        .and_then(|v| v.as_array())
        .cloned()
        .unwrap_or_default();
    assert!(
        !suggestions.is_empty(),
        "did_you_mean must contain suggestions when similar symbols exist"
    );
    let has_login_variant = suggestions
        .iter()
        .any(|s| s.as_str().is_some_and(|s| s.contains("log")));
    assert!(
        has_login_variant,
        "suggestions should include close matches like 'logIn' or 'logon', got: {suggestions:?}"
    );
}

// ── get_definition grep fallback ────────────────────────────────────

#[tokio::test]
async fn test_get_definition_grep_fallback_when_lsp_returns_none() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    // MockLawyer with no result set returns Ok(None) by default
    let lawyer = Arc::new(MockLawyer::default());

    // Configure MockScout to return a search result for the grep fallback
    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/auth.rs".to_owned(),
            line: 10,
            column: 4,
            content: "pub fn login() -> bool {".to_owned(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: Some("src/auth.rs::login".to_owned()),
            is_definition: Some(true),
            version_hash: "hash".to_owned(),
            known: None,
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 1,
        files_in_scope: 1,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);
    let server = PathfinderServer::with_all_engines(ws, config, sandbox, scout, surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let call_res = result.expect("should succeed via grep fallback");
    let val = unpack_def(call_res);

    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(val.line, 10);
    assert!(val.degraded, "should be degraded when using grep fallback");
    assert!(val.degraded_reason.is_some(), "degraded_reason must be set");
}

#[tokio::test]
async fn test_get_definition_grep_fallback_when_no_lsp() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    // NoOpLawyer returns NoLspAvailable for all methods
    let lawyer = Arc::new(pathfinder_lsp::NoOpLawyer);

    // Configure MockScout to return a search result for the grep fallback
    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/auth.rs".to_owned(),
            line: 10,
            column: 4,
            content: "pub fn login() -> bool {".to_owned(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: Some("src/auth.rs::login".to_owned()),
            is_definition: Some(true),
            version_hash: "hash".to_owned(),
            known: None,
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 1,
        files_in_scope: 1,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);
    let server = PathfinderServer::with_all_engines(ws, config, sandbox, scout, surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let call_res = result.expect("should succeed via grep fallback");
    let val = unpack_def(call_res);

    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(val.line, 10);
    assert!(val.degraded, "should be degraded when using grep fallback");
}

// ── LspError::Timeout branch ────────────────────────────────────

#[tokio::test]
async fn test_get_definition_lsp_timeout_falls_back_to_grep() {
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/auth.rs"),
        "pub fn login() -> bool { true }",
    )
    .unwrap();

    let scout = Arc::new(MockScout::default());
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/auth.rs".to_string(),
            line: 1,
            column: 1,
            content: "pub fn login() -> bool { true }".to_string(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: None,
            is_definition: None,
            version_hash: "sha256:abc".to_string(),
            known: Some(false),
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 0,
        files_in_scope: 0,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let lawyer = Arc::new(MockLawyer::default());
    lawyer.set_goto_definition_result(Err(LspError::Timeout {
        operation: "goto_definition".to_string(),
        timeout_ms: 10000,
    }));

    let server = PathfinderServer::with_all_engines(ws, config, sandbox, scout, surgeon, lawyer);

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with grep fallback after timeout, got Err");
    };
    let val = unpack_def(res);
    assert!(val.degraded, "should be degraded");
    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(
        val.degraded_reason,
        Some(DegradedReason::LspTimeoutGrepFallback),
        "degraded_reason should be LspTimeoutGrepFallback: {:?}",
        val.degraded_reason
    );
}

// ── Multi-file grep fallback chain (strategies 2-4) ─────────────

#[tokio::test]
async fn test_get_definition_multi_strategy_fallback() {
    // Tests that when Strategy 1 (file-scoped) returns empty,
    // the chain falls through to Strategy 3 (global) via set_results().
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/other.rs"),
        "pub fn login() -> bool { true }",
    )
    .unwrap();

    let scout = Arc::new(MockScout::default());
    // Strategy 1 (grep_definition_in_file): empty
    // Strategy 3 (grep_definition_global): finds match
    scout.set_results(vec![
        // Strategy 1 returns empty (file-scoped search)
        Ok(pathfinder_search::SearchResult {
            matches: vec![],
            total_matches: 0,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 3 returns match (global search)
        Ok(pathfinder_search::SearchResult {
            matches: vec![pathfinder_search::SearchMatch {
                file: "src/other.rs".to_string(),
                line: 1,
                column: 1,
                content: "pub fn login() -> bool { true }".to_string(),
                context_before: vec![],
                context_after: vec![],
                enclosing_semantic_path: None,
                is_definition: None,
                version_hash: "sha256:abc".to_string(),
                known: Some(false),
            }],
            total_matches: 1,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
    ]);

    // NoOpLawyer to force grep fallback path
    let server = PathfinderServer::with_all_engines(
        ws,
        config,
        sandbox,
        scout,
        surgeon,
        Arc::new(pathfinder_lsp::NoOpLawyer),
    );

    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with multi-strategy grep fallback, got Err");
    };
    let val = unpack_def(res);
    assert!(val.degraded, "should be degraded");
    assert_eq!(val.file, "src/other.rs");
    assert_eq!(
        val.degraded_reason,
        Some(DegradedReason::NoLspGrepFallback),
        "degraded_reason: {:?}",
        val.degraded_reason
    );
}

// ── Warmup retry success path ───────────────────────────────────

#[tokio::test]
async fn test_get_definition_warmup_retry_success() {
    // LSP returns Ok(None) first (warmup), then Ok(Some(def)) on retry.
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let lawyer = Arc::new(MockLawyer::default());
    // First call (via queue): Ok(None) — simulates warmup
    lawyer.push_goto_definition_result(Ok(None));
    // Second call (via set, consumed after queue is empty): Ok(Some(def)) for retry
    lawyer.set_goto_definition_result(Ok(Some(DefinitionLocation {
        file: "src/auth.rs".into(),
        line: 42,
        column: 5,
        preview: "pub fn login() -> bool {".into(),
    })));

    let (server, _ws) = make_server_with_lawyer(surgeon, lawyer);
    let params = LocateParams {
        semantic_path: Some("src/auth.rs::login".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let call_res = result.expect("should succeed on retry");
    let val = unpack_def(call_res);

    assert_eq!(val.file, "src/auth.rs");
    assert_eq!(val.line, 42);
    assert!(!val.degraded, "should NOT be degraded on retry success");
    assert_eq!(
        val.resolution_strategy,
        Some("lsp_retry".to_owned()),
        "should indicate retry strategy"
    );
    assert_eq!(
        val.lsp_readiness,
        Some("warming_up".to_owned()),
        "should indicate warming_up"
    );
    assert_eq!(
        val.warm_start_in_progress,
        Some(true),
        "should indicate warm_start_in_progress"
    );
}

// ── grep fallback with 2-segment symbol path ───────────────────────────

#[tokio::test]
async fn test_get_definition_grep_fallback_with_two_segment_symbol() {
    // Tests that the grep fallback finds a definition when using a 2-segment
    // symbol path (e.g., MyStruct.my_method). Strategy 1 (file-scoped) finds
    // the match on the first pattern; subsequent patterns and strategies
    // consume empty results from the default MockScout.
    let surgeon = Arc::new(MockSurgeon::new());

    let mut scope = make_scope();
    scope.content = "pub fn my_method(&self) { ... }".to_string();
    surgeon.read_symbol_scope_results.lock().unwrap().clear();
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(scope));

    let scout = Arc::new(MockScout::default());
    // set_result: first search returns the match, all subsequent return empty.
    // Strategy 1 (grep_definition_in_file) finds the match on pattern 1.
    scout.set_result(Ok(pathfinder_search::SearchResult {
        matches: vec![pathfinder_search::SearchMatch {
            file: "src/mystruct.rs".to_string(),
            line: 10,
            column: 4,
            content: "pub fn my_method(&self) {}".to_string(),
            context_before: vec![],
            context_after: vec![],
            enclosing_semantic_path: None,
            is_definition: None,
            version_hash: "sha256:def".to_string(),
            known: Some(false),
        }],
        total_matches: 1,
        truncated: false,
        files_searched: 1,
        files_in_scope: 1,
        binary_skipped: 0,
        gitignored_skipped: 0,
        other_skipped: 0,
    }));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::write(
        ws_dir.path().join("src/mystruct.rs"),
        "impl MyStruct { pub fn my_method(&self) {} }",
    )
    .unwrap();

    let server = PathfinderServer::with_all_engines(
        ws,
        config,
        sandbox,
        scout,
        surgeon,
        Arc::new(pathfinder_lsp::NoOpLawyer),
    );

    let params = LocateParams {
        semantic_path: Some("src/mystruct.rs::MyStruct.my_method".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    match &result {
        Ok(res) => {
            let val = unpack_def(res.clone());
            assert!(val.degraded, "should be degraded");
            assert_eq!(val.file, "src/mystruct.rs");
            assert_eq!(val.line, 10);
            assert!(
                val.degraded_reason.is_some(),
                "degraded_reason should be set"
            );
            // With 2-segment symbol and file-scoped match, reason is GrepFallbackFileScoped
            assert_eq!(
                val.degraded_reason,
                Some(DegradedReason::NoLspGrepFallback),
                "degraded_reason: {:?}",
                val.degraded_reason
            );
        }
        Err(err) => {
            let code = err
                .data
                .as_ref()
                .and_then(|d| d.get("error"))
                .and_then(|v| v.as_str())
                .unwrap_or("");
            panic!("expected Ok with grep fallback, got Err({code}): {err:?}");
        }
    }
}

#[tokio::test]
#[allow(clippy::too_many_lines)]
async fn test_get_definition_grep_impl_method_strategy() {
    // Tests Strategy 2: grep_impl_method. When a 2-segment symbol like
    // Sandbox.check is looked up and Strategy 1 (file-scoped) returns empty,
    // the fallback searches for the impl block, then for the method within it.
    let surgeon = Arc::new(MockSurgeon::new());
    surgeon
        .read_symbol_scope_results
        .lock()
        .unwrap()
        .push(Ok(make_scope()));

    let ws_dir = make_temp_workspace();
    let ws = WorkspaceRoot::new(ws_dir.path()).expect("valid root");
    let config = PathfinderConfig::default();
    let sandbox = Sandbox::new(ws.path(), &config.sandbox);

    std::fs::create_dir_all(ws_dir.path().join("src")).unwrap();
    std::fs::write(
        ws_dir.path().join("src/sandbox.rs"),
        "impl Sandbox {\n    pub fn check(&self) -> bool { true }\n}",
    )
    .unwrap();

    let scout = Arc::new(MockScout::default());
    // Queue results for the sequential scout.search calls.
    // definition_patterns("rs", "check") produces 4 patterns, each consuming one result.
    // Then grep_impl_method needs 2 more (impl block + method search).
    scout.set_results(vec![
        // Strategy 1 pattern 1: fn\s+check\b — empty (no fn in sandbox.rs matches)
        Ok(pathfinder_search::SearchResult {
            matches: vec![],
            total_matches: 0,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 1 pattern 2: struct|enum|trait|type|mod\s+check\b — empty
        Ok(pathfinder_search::SearchResult {
            matches: vec![],
            total_matches: 0,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 1 pattern 3: const|static\s+check\b — empty
        Ok(pathfinder_search::SearchResult {
            matches: vec![],
            total_matches: 0,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 1 pattern 4: \bcheck\b — empty
        Ok(pathfinder_search::SearchResult {
            matches: vec![],
            total_matches: 0,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 2 step 1: impl block search finds src/sandbox.rs
        Ok(pathfinder_search::SearchResult {
            matches: vec![pathfinder_search::SearchMatch {
                file: "src/sandbox.rs".to_string(),
                line: 1,
                column: 1,
                content: "impl Sandbox {".to_string(),
                context_before: vec![],
                context_after: vec![],
                enclosing_semantic_path: None,
                is_definition: None,
                version_hash: "sha256:abc".to_string(),
                known: Some(false),
            }],
            total_matches: 1,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
        // Strategy 2 step 2: method search finds fn check in src/sandbox.rs
        Ok(pathfinder_search::SearchResult {
            matches: vec![pathfinder_search::SearchMatch {
                file: "src/sandbox.rs".to_string(),
                line: 2,
                column: 4,
                content: "pub fn check(&self) -> bool { true }".to_string(),
                context_before: vec![],
                context_after: vec![],
                enclosing_semantic_path: None,
                is_definition: None,
                version_hash: "sha256:def".to_string(),
                known: Some(false),
            }],
            total_matches: 1,
            truncated: false,
            files_searched: 1,
            files_in_scope: 1,
            binary_skipped: 0,
            gitignored_skipped: 0,
            other_skipped: 0,
        }),
    ]);

    let server = PathfinderServer::with_all_engines(
        ws,
        config,
        sandbox,
        scout,
        surgeon,
        Arc::new(pathfinder_lsp::NoOpLawyer),
    );

    let params = LocateParams {
        semantic_path: Some("src/sandbox.rs::Sandbox.check".to_owned()),
        ..Default::default()
    };
    let result = server.get_definition_impl(params).await;
    let Ok(res) = result else {
        panic!("expected Ok with grep_impl_method fallback, got Err");
    };
    let val = unpack_def(res);
    assert!(val.degraded, "should be degraded");
    assert_eq!(val.file, "src/sandbox.rs");
    assert_eq!(val.line, 2);
    assert_eq!(
        val.degraded_reason,
        Some(DegradedReason::GrepFallbackImplScoped),
        "degraded_reason should be GrepFallbackImplScoped, got {:?}",
        val.degraded_reason
    );
    assert_eq!(
        val.resolution_strategy,
        Some("grep_impl".to_owned()),
        "resolution_strategy should be grep_impl"
    );
}