php-lsp 0.2.0

A PHP Language Server Protocol implementation
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
mod common;

use common::TestServer;
use serde_json::Value;

fn lines_of(locs: &[Value]) -> Vec<u32> {
    locs.iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect()
}

#[tokio::test]
async fn references_with_exclude_declaration() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
function s$0ub(int $a, int $b): int { return $a - $b; }
sub(10, 3);
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, false).await;

    assert!(resp["error"].is_null(), "references error: {resp:?}");
    let locs = resp["result"].as_array().expect("expected array").clone();
    assert_eq!(locs.len(), 1, "expected one call-site reference: {locs:?}");
    assert_eq!(locs[0]["range"]["start"]["line"].as_u64().unwrap(), 2);
    assert_eq!(locs[0]["range"]["start"]["character"].as_u64().unwrap(), 0);
}

#[tokio::test]
async fn references_include_declaration_returns_both() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
function a$0dd(int $a, int $b): int { return $a + $b; }
add(1, 2);
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;

    assert!(resp["error"].is_null());
    let locs = resp["result"].as_array().cloned().unwrap_or_default();
    assert!(
        locs.len() >= 2,
        "expected declaration + call site: {locs:?}"
    );
}

/// Regression for issue #125: cursor on a method *declaration* must return
/// method references, not free-function references with the same name.
#[tokio::test]
async fn references_on_method_decl_returns_method_refs_not_function_refs() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
function add() {}
class C {
    public function a$0dd() {}
}
add();
$c->add();
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");
    let lines = lines_of(resp["result"].as_array().expect("array"));

    assert!(lines.contains(&3), "method decl line 3 missing: {lines:?}");
    assert!(lines.contains(&6), "method call line 6 missing: {lines:?}");
    assert!(
        !lines.contains(&1),
        "free-function decl line 1 must be excluded: {lines:?}"
    );
    assert!(
        !lines.contains(&5),
        "free-function call line 5 must be excluded: {lines:?}"
    );

    let resp2 = server.references(&c.path, c.line, c.character, false).await;
    assert!(resp2["error"].is_null(), "references error: {resp2:?}");
    let lines2 = lines_of(resp2["result"].as_array().expect("array"));
    assert!(
        lines2.contains(&6),
        "method call line 6 missing: {lines2:?}"
    );
    assert!(
        !lines2.contains(&3),
        "method decl must be excluded when includeDeclaration=false: {lines2:?}"
    );
}

/// Multi-file variant of #125: method decl in file A must not pull in
/// free-function usages of the same name from file B.
#[tokio::test]
async fn references_on_method_decl_excludes_cross_file_free_function() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"//- /a.php
<?php
class C {
    public function a$0dd() {}
}

//- /b.php
<?php
function add() {}
add();
$c->add();
"#,
        )
        .await;
    let c = opened.cursor();

    let a_uri = server.uri("a.php");
    let b_uri = server.uri("b.php");

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<(String, u32)> = resp["result"]
        .as_array()
        .expect("array")
        .iter()
        .map(|l| {
            (
                l["uri"].as_str().unwrap().to_string(),
                l["range"]["start"]["line"].as_u64().unwrap() as u32,
            )
        })
        .collect();

    assert!(
        hits.contains(&(a_uri.clone(), 2)),
        "method decl a.php:2 missing: {hits:?}"
    );
    assert!(
        hits.contains(&(b_uri.clone(), 3)),
        "method call b.php:3 missing: {hits:?}"
    );
    assert!(
        !hits.contains(&(b_uri.clone(), 1)),
        "free-function decl b.php:1 must be excluded: {hits:?}"
    );
    assert!(
        !hits.contains(&(b_uri.clone(), 2)),
        "free-function call b.php:2 must be excluded: {hits:?}"
    );
}

/// The codebase fast path (`find_references_codebase`) for a `final` class
/// method across files. Uses `with_root` because the fast path relies on the
/// workspace scan populating the index.
#[tokio::test]
async fn references_fast_path_final_class_cross_file_e2e() {
    let dir = tempfile::tempdir().unwrap();

    std::fs::write(
        dir.path().join("class.php"),
        "<?php\nfinal class Order {\n    public function submit(): void {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("caller.php"),
        "<?php\n$order = new Order();\n$order->submit();\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("ignored.php"),
        "<?php\n$unknown->submit();\n",
    )
    .unwrap();

    let mut server = TestServer::with_root(dir.path()).await;
    server.wait_for_index_ready().await;

    let caller_uri = server.uri("caller.php");
    let ignored_uri = server.uri("ignored.php");

    server
        .open(
            "class.php",
            "<?php\nfinal class Order {\n    public function submit(): void {}\n}\n",
        )
        .await;

    let resp = server.references("class.php", 2, 20, false).await;

    assert!(resp["error"].is_null(), "references error: {resp:?}");
    let uris: Vec<&str> = resp["result"]
        .as_array()
        .expect("array")
        .iter()
        .map(|l| l["uri"].as_str().unwrap())
        .collect();

    assert!(
        uris.iter().any(|u| *u == caller_uri.as_str()),
        "caller.php missing: {uris:?}"
    );
    assert!(
        !uris.iter().any(|u| *u == ignored_uri.as_str()),
        "ignored.php (untyped) must be excluded by fast path: {uris:?}"
    );
}

/// Regression: references on `__construct` of class `Foo` must return only
/// Foo's constructor and its call sites (`new Foo(...)`), NOT every other
/// class's `__construct` declaration. The symbol has a class-scoped identity;
/// name-only matching across classes is wrong.
#[tokio::test]
async fn references_on_constructor_are_scoped_to_owning_class() {
    let dir = tempfile::tempdir().unwrap();
    std::fs::write(
        dir.path().join("a.php"),
        "<?php\nclass Foo {\n    public function __construct(int $x) {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("b.php"),
        "<?php\nclass Bar {\n    public function __construct(string $s) {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("c.php"),
        "<?php\n$foo = new Foo(1);\n$bar = new Bar('x');\n",
    )
    .unwrap();

    let mut server = TestServer::with_root(dir.path()).await;
    server.wait_for_index_ready().await;

    let (text, _, _) = server.locate("a.php", "<?php", 0);
    server.open("a.php", &text).await;

    let (_, line, col) = server.locate("a.php", "__construct", 0);
    let resp = server.references("a.php", line, col + 2, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let a_uri = server.uri("a.php");
    let b_uri = server.uri("b.php");
    let c_uri = server.uri("c.php");

    let hits: Vec<(String, u32)> = resp["result"]
        .as_array()
        .unwrap_or_else(|| panic!("expected array of references, got: {resp:?}"))
        .iter()
        .map(|l| {
            (
                l["uri"].as_str().unwrap().to_string(),
                l["range"]["start"]["line"].as_u64().unwrap() as u32,
            )
        })
        .collect();

    // Must NOT include Bar's unrelated __construct declaration.
    assert!(
        !hits.contains(&(b_uri.clone(), 2)),
        "Bar::__construct decl on b.php:2 must be excluded — got {hits:?}"
    );
    // Must NOT include `new Bar('x')` call.
    assert!(
        !hits.contains(&(c_uri.clone(), 2)),
        "`new Bar('x')` on c.php:2 must be excluded — got {hits:?}"
    );
    // Sanity: Foo's own constructor and `new Foo(1)` should be present.
    assert!(
        hits.iter().any(|(u, _)| u == &a_uri),
        "Foo::__construct decl missing — got {hits:?}"
    );
    assert!(
        hits.contains(&(c_uri.clone(), 1)),
        "`new Foo(1)` missing from c.php:1 — got {hits:?}"
    );
}

/// Regression for Bug 1: two constructors in the same file — `str_offset`
/// would always find the first `__construct` occurrence, so the declaration
/// span for the second constructor pointed at the first one. With the fix the
/// cursor position is used directly, so each constructor gets its own span.
#[tokio::test]
async fn references_on_second_constructor_has_correct_decl_span() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
class Alpha {
    public function __construct(int $x) {}
}
class Beta {
    public function __con$0struct(string $s) {}
}
new Alpha(1);
new Beta('x');
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<u32> = resp["result"]
        .as_array()
        .expect("array")
        .iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect();

    // Beta's constructor is on line 5; the decl span must point there, not at
    // Alpha's constructor on line 2.
    assert!(
        hits.contains(&5),
        "Beta::__construct decl (line 5) missing: {hits:?}"
    );
    assert!(
        !hits.contains(&2),
        "Alpha::__construct decl (line 2) must not appear: {hits:?}"
    );
    // `new Beta('x')` is on line 8.
    assert!(
        hits.contains(&8),
        "`new Beta(...)` (line 8) missing: {hits:?}"
    );
    // `new Alpha(1)` must not appear.
    assert!(
        !hits.contains(&7),
        "`new Alpha(...)` (line 7) must not appear: {hits:?}"
    );
}

/// Regression for Bug 2: braced-namespace class `__construct` — the function
/// previously only walked top-level statements and skipped
/// `NamespaceBody::Braced`, returning `None` for every constructor inside a
/// braced namespace block and falling through to name-only matching.
#[tokio::test]
async fn references_on_constructor_in_braced_namespace() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
namespace Shop {
    class Order {
        public function __con$0struct(int $id) {}
    }
}
namespace Shop {
    $o = new Order(1);
}
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<u32> = resp["result"]
        .as_array()
        .expect("array")
        .iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect();

    // The constructor declaration is on line 3.
    assert!(
        hits.contains(&3),
        "Order::__construct decl (line 3) missing: {hits:?}"
    );
    // `new Order(1)` is on line 8.
    assert!(
        hits.contains(&7),
        "`new Order(1)` (line 7) missing: {hits:?}"
    );
}

/// Regression for Bug 3: two classes with the same short name in different
/// namespaces — the constructor path previously called `find_references_codebase`
/// with the bare short name, so `new Foo(...)` sites from *both* namespaces
/// were returned when asking for refs on one class's constructor.
#[tokio::test]
async fn references_on_constructor_scoped_by_namespace_fqn() {
    let dir = tempfile::tempdir().unwrap();
    std::fs::write(
        dir.path().join("a.php"),
        "<?php\nnamespace Alpha;\nclass Widget {\n    public function __construct(int $x) {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("b.php"),
        "<?php\nnamespace Beta;\nclass Widget {\n    public function __construct(string $s) {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("c.php"),
        "<?php\n$a = new \\Alpha\\Widget(1);\n$b = new \\Beta\\Widget('x');\n",
    )
    .unwrap();

    let mut server = TestServer::with_root(dir.path()).await;
    server.wait_for_index_ready().await;

    let (text, _, _) = server.locate("a.php", "<?php", 0);
    server.open("a.php", &text).await;

    let (_, line, col) = server.locate("a.php", "__construct", 0);
    let resp = server.references("a.php", line, col + 2, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let c_uri = server.uri("c.php");
    let b_uri = server.uri("b.php");

    let hits: Vec<(String, u32)> = resp["result"]
        .as_array()
        .unwrap_or_else(|| panic!("expected array, got: {resp:?}"))
        .iter()
        .map(|l| {
            (
                l["uri"].as_str().unwrap().to_string(),
                l["range"]["start"]["line"].as_u64().unwrap() as u32,
            )
        })
        .collect();

    // `new \Alpha\Widget(1)` is on c.php line 1.
    assert!(
        hits.contains(&(c_uri.clone(), 1)),
        "`new \\Alpha\\Widget(1)` missing: {hits:?}"
    );
    // `new \Beta\Widget('x')` must NOT appear.
    assert!(
        !hits.contains(&(c_uri.clone(), 2)),
        "`new \\Beta\\Widget('x')` must not appear: {hits:?}"
    );
    // Beta's constructor declaration must NOT appear.
    assert!(
        !hits.iter().any(|(u, _)| u == &b_uri),
        "Beta::Widget::__construct must not appear: {hits:?}"
    );
}

/// Bug: `__construct` references should only return `new ClassName()` call sites,
/// NOT type hints, `instanceof` checks, `extends`, or `implements` — all of which
/// were previously included because mir's `ClassReference` key covers every class
/// usage under the same FQCN.
#[tokio::test]
async fn references_on_constructor_excludes_type_hints_and_instanceof() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
class Order {
    public function __con$0struct(int $id) {}
}
// call site — must be included
$o = new Order(1);
// type hint — must NOT be included
function ship(Order $o): void {}
// instanceof — must NOT be included
if ($o instanceof Order) {}
// static call — must NOT be included
Order::class;
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<u32> = resp["result"]
        .as_array()
        .expect("expected array")
        .iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect();

    // The `__construct` declaration is on line 2.
    assert!(
        hits.contains(&2),
        "__construct decl (line 2) missing: {hits:?}"
    );
    // `$o = new Order(1)` is on line 5 (line 4 is the preceding comment).
    assert!(
        hits.contains(&5),
        "`new Order(1)` (line 5) missing: {hits:?}"
    );
    // Type hint `Order $o` is on line 7 — must NOT appear.
    assert!(
        !hits.contains(&7),
        "type hint on line 7 must be excluded: {hits:?}"
    );
    // `instanceof Order` is on line 9 — must NOT appear.
    assert!(
        !hits.contains(&9),
        "`instanceof` on line 9 must be excluded: {hits:?}"
    );
    // `Order::class` is on line 11 — must NOT appear.
    assert!(
        !hits.contains(&11),
        "`Order::class` on line 11 must be excluded: {hits:?}"
    );
}

/// Bug: when the cursor is on a promoted constructor property parameter (e.g.
/// `$name` in `public function __construct(public readonly string $name)`),
/// references should return all `->name` property access sites, not variable
/// occurrences of `$name` inside the constructor body.
#[tokio::test]
async fn references_on_promoted_property_param_finds_property_accesses() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
class Person {
    public function __construct(public readonly string $na$0me) {}
    public function greet(): string { return $this->name; }
}
$p = new Person('Alice');
echo $p->name;
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<u32> = resp["result"]
        .as_array()
        .expect("expected array")
        .iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect();

    // `$this->name` inside greet() is on line 3.
    assert!(
        hits.contains(&3),
        "`$this->name` (line 3) missing: {hits:?}"
    );
    // `$p->name` on line 6.
    assert!(hits.contains(&6), "`$p->name` (line 6) missing: {hits:?}");
}

/// `include_declaration=false` on a constructor must return only `new Foo()`
/// call sites — the constructor declaration itself must be absent.
#[tokio::test]
async fn references_on_constructor_with_include_declaration_false() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
class Invoice {
    public function __con$0struct(int $id) {}
}
$a = new Invoice(1);
$b = new Invoice(2);
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, false).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let hits: Vec<u32> = resp["result"]
        .as_array()
        .expect("expected array")
        .iter()
        .map(|l| l["range"]["start"]["line"].as_u64().unwrap() as u32)
        .collect();

    // Lines: 0=<?php  1=class Invoice {  2=__construct  3=}  4=new(1)  5=new(2)
    assert!(
        hits.contains(&4),
        "`new Invoice(1)` (line 4) missing: {hits:?}"
    );
    assert!(
        hits.contains(&5),
        "`new Invoice(2)` (line 5) missing: {hits:?}"
    );
    // The constructor declaration on line 2 must NOT appear.
    assert!(
        !hits.contains(&2),
        "__construct decl (line 2) must be excluded when include_declaration=false: {hits:?}"
    );
    assert_eq!(hits.len(), 2, "expected exactly 2 call sites: {hits:?}");
}

/// Cross-file promoted property: accessing via `->prop` in another file must
/// be found when cursor is on the promoted param in the declaring file.
#[tokio::test]
async fn references_on_promoted_property_cross_file() {
    let dir = tempfile::tempdir().unwrap();
    std::fs::write(
        dir.path().join("entity.php"),
        "<?php\nclass User {\n    public function __construct(public readonly string $email) {}\n}\n",
    )
    .unwrap();
    std::fs::write(
        dir.path().join("service.php"),
        "<?php\nfunction notify(User $u): void {\n    echo $u->email;\n    echo $u?->email;\n}\n",
    )
    .unwrap();

    let mut server = TestServer::with_root(dir.path()).await;
    server.wait_for_index_ready().await;

    let (text, _, _) = server.locate("entity.php", "<?php", 0);
    server.open("entity.php", &text).await;

    let (_, line, col) = server.locate("entity.php", "$email", 0);
    // Cursor on the `$email` promoted param.
    let resp = server.references("entity.php", line, col + 1, false).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");

    let service_uri = server.uri("service.php");
    let hits: Vec<(String, u32)> = resp["result"]
        .as_array()
        .unwrap_or_else(|| panic!("expected array: {resp:?}"))
        .iter()
        .map(|l| {
            (
                l["uri"].as_str().unwrap().to_string(),
                l["range"]["start"]["line"].as_u64().unwrap() as u32,
            )
        })
        .collect();

    assert!(
        hits.contains(&(service_uri.clone(), 2)),
        "`$u->email` (service.php:2) missing: {hits:?}"
    );
    assert!(
        hits.contains(&(service_uri.clone(), 3)),
        "`$u?->email` (service.php:3) missing: {hits:?}"
    );
}

/// Parallel warm must find exactly the right number of call sites across many
/// files — enough that the rayon thread pool actually distributes work across
/// multiple threads.  A lost or duplicated memo would produce the wrong count.
/// The workspace scan populates the file index; `textDocument/references`
/// triggers `warm_file_refs_parallel` then aggregates the memos.
#[tokio::test]
async fn parallel_warm_finds_all_references_across_many_files() {
    let dir = tempfile::tempdir().unwrap();
    let caller_count = 15usize;
    std::fs::write(
        dir.path().join("def.php"),
        "<?php\nfunction target(): void {}",
    )
    .unwrap();
    for i in 0..caller_count {
        std::fs::write(
            dir.path().join(format!("caller_{i}.php")),
            "<?php\ntarget();",
        )
        .unwrap();
    }
    for i in 0..5usize {
        std::fs::write(
            dir.path().join(format!("other_{i}.php")),
            format!("<?php\nfunction other_{i}() {{}}"),
        )
        .unwrap();
    }

    let mut server = TestServer::with_root(dir.path()).await;
    server.wait_for_index_ready().await;
    server
        .open("def.php", "<?php\nfunction target(): void {}")
        .await;

    // Line 1, character 9 = start of "target" in `function target(): void {}`
    let resp = server.references("def.php", 1, 9, false).await;
    assert!(resp["error"].is_null(), "references error: {resp:?}");
    let locs = resp["result"].as_array().expect("expected array");
    assert_eq!(
        locs.len(),
        caller_count,
        "expected {caller_count} references, got {}: {locs:?}",
        locs.len()
    );
}

/// After the first `textDocument/references` call populates salsa memos via
/// `warm_file_refs_parallel`, a second call for the same symbol must return
/// the same result — verifying that parallel memo population is correct and
/// not corrupted by concurrent writes.
#[tokio::test]
async fn parallel_warm_gives_consistent_results_on_repeated_references_calls() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"//- /a.php
<?php
function fo$0o(): void {}

//- /b.php
<?php
foo();

//- /c.php
<?php
foo(); foo();
"#,
        )
        .await;
    let c = opened.cursor();

    let resp1 = server.references(&c.path, c.line, c.character, false).await;
    let resp2 = server.references(&c.path, c.line, c.character, false).await;

    let locs1 = resp1["result"].as_array().expect("array");
    let locs2 = resp2["result"].as_array().expect("array");
    assert_eq!(
        locs1.len(),
        3,
        "expected 3 references (1 from b.php, 2 from c.php): {locs1:?}"
    );
    assert_eq!(
        locs1.len(),
        locs2.len(),
        "repeated references calls returned different counts"
    );
}

#[tokio::test]
async fn references_finds_all_usages_of_function() {
    let mut server = TestServer::new().await;
    let opened = server
        .open_fixture(
            r#"<?php
function a$0dd(int $a, int $b): int { return $a + $b; }
add(1, 2);
add(3, 4);
"#,
        )
        .await;
    let c = opened.cursor();

    let resp = server.references(&c.path, c.line, c.character, true).await;

    assert!(resp["error"].is_null(), "references error: {resp:?}");
    let locs = resp["result"].as_array().expect("array");
    assert_eq!(
        locs.len(),
        3,
        "expected 3 refs (1 decl + 2 calls): {locs:?}"
    );
    let lines = lines_of(locs);
    assert!(lines.contains(&1), "decl line 1 missing");
    assert!(lines.contains(&2), "call line 2 missing");
    assert!(lines.contains(&3), "call line 3 missing");
}