phpantom_lsp 0.7.0

Fast PHP language server with deep type intelligence. Generics, Laravel, PHPStan annotations. Ready in an instant.
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
//! Integration tests for the "Update docblock to match signature" code action.
//!
//! These tests exercise the full pipeline: parsing PHP source, finding the
//! function/method under the cursor, detecting docblock/signature mismatches,
//! and generating the `WorkspaceEdit` that patches the docblock.

use crate::common::create_test_backend;
use tower_lsp::lsp_types::*;

/// Check whether the docblock text contains a `@param` tag with the given
/// type and name, allowing arbitrary whitespace between them (for column
/// alignment).  An optional description can also be checked.
fn contains_param(text: &str, type_str: &str, name: &str) -> bool {
    for line in text.lines() {
        let trimmed = line.trim().trim_start_matches('*').trim();
        if let Some(rest) = trimmed.strip_prefix("@param") {
            let rest = rest.trim_start();
            if let Some(after_type) = rest.strip_prefix(type_str) {
                let after_type = after_type.trim_start();
                if after_type == name
                    || after_type.starts_with(&format!("{} ", name))
                    || after_type.starts_with(&format!("{}\n", name))
                {
                    return true;
                }
            }
        }
    }
    false
}

/// Helper: send a code action request at the given line/character and
/// return the list of code actions.
fn get_code_actions(
    backend: &phpantom_lsp::Backend,
    uri: &str,
    content: &str,
    line: u32,
    character: u32,
) -> Vec<CodeActionOrCommand> {
    let params = CodeActionParams {
        text_document: TextDocumentIdentifier {
            uri: uri.parse().unwrap(),
        },
        range: Range {
            start: Position::new(line, character),
            end: Position::new(line, character),
        },
        context: CodeActionContext {
            diagnostics: vec![],
            only: None,
            trigger_kind: None,
        },
        work_done_progress_params: WorkDoneProgressParams {
            work_done_token: None,
        },
        partial_result_params: PartialResultParams {
            partial_result_token: None,
        },
    };

    backend.handle_code_action(uri, content, &params)
}

/// Find the "Update docblock" code action from a list of actions.
fn find_update_docblock_action(actions: &[CodeActionOrCommand]) -> Option<&CodeAction> {
    actions.iter().find_map(|a| match a {
        CodeActionOrCommand::CodeAction(ca) if ca.title.contains("Update docblock") => Some(ca),
        _ => None,
    })
}

/// Extract the replacement text from a code action's workspace edit.
fn extract_edit_text(action: &CodeAction) -> String {
    let edit = action.edit.as_ref().expect("action should have an edit");
    let changes = edit.changes.as_ref().expect("edit should have changes");
    let edits: Vec<&TextEdit> = changes.values().flat_map(|v| v.iter()).collect();
    assert_eq!(edits.len(), 1, "expected exactly one text edit");
    edits[0].new_text.clone()
}

// ── Missing parameter ───────────────────────────────────────────────────────

#[test]
fn adds_missing_param_tag() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Does something.
     *
     * @param string $a The first param
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    assert_eq!(action.kind, Some(CodeActionKind::QUICKFIX));
    assert_eq!(action.is_preferred, Some(true));

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("$a The first param"),
        "should preserve existing param description: {}",
        new_text
    );
    assert!(
        contains_param(&new_text, "int", "$b"),
        "should add missing param: {}",
        new_text
    );
}

// ── Extra parameter ─────────────────────────────────────────────────────────

#[test]
fn removes_extra_param_tag() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string $a
     * @param int $b
     */
    public function bar(string $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@param string $a"),
        "should keep existing param: {}",
        new_text
    );
    assert!(
        !new_text.contains("$b"),
        "should remove extra param: {}",
        new_text
    );
}

// ── Reordered parameters ────────────────────────────────────────────────────

#[test]
fn reorders_param_tags_to_match_signature() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param int $b Second
     * @param string $a First
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    let a_pos = new_text.find("$a").expect("should contain $a");
    let b_pos = new_text.find("$b").expect("should contain $b");
    assert!(
        a_pos < b_pos,
        "$a should come before $b in the updated docblock: {}",
        new_text
    );
    // Descriptions should be preserved.
    assert!(
        new_text.contains("First"),
        "should preserve $a description: {}",
        new_text
    );
    assert!(
        new_text.contains("Second"),
        "should preserve $b description: {}",
        new_text
    );
}

// ── No update needed ────────────────────────────────────────────────────────

#[test]
fn no_action_when_params_already_match() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string $a
     * @param int $b
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should not offer action when params match"
    );
}

// ── Type contradiction in @param ────────────────────────────────────────────

#[test]
fn updates_contradicted_param_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string $a The name
     */
    public function bar(int $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@param int $a"),
        "should update type to match signature: {}",
        new_text
    );
    assert!(
        new_text.contains("The name"),
        "should preserve description: {}",
        new_text
    );
}

// ── Refinement types are preserved ──────────────────────────────────────────

#[test]
fn preserves_refinement_type_in_param() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param non-empty-string $a
     */
    public function bar(string $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 4, 20);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should not offer action when docblock type is a refinement"
    );
}

#[test]
fn preserves_generic_refinement_in_param() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param array<int, string> $items
     */
    public function bar(array $items): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 4, 20);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should not offer action when docblock type is a generic refinement"
    );
}

// ── @return tag handling ────────────────────────────────────────────────────

#[test]
fn removes_redundant_void_return() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Does something.
     *
     * @return void
     */
    public function bar(): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        !new_text.contains("@return"),
        "should remove @return void: {}",
        new_text
    );
    assert!(
        new_text.contains("Does something"),
        "should preserve summary: {}",
        new_text
    );
}

#[test]
fn updates_contradicted_return_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Gets the value.
     *
     * @return string The value
     */
    public function getValue(): int {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@return int"),
        "should update return type: {}",
        new_text
    );
    assert!(
        new_text.contains("The value"),
        "should preserve return description: {}",
        new_text
    );
}

// ── No docblock ─────────────────────────────────────────────────────────────

#[test]
fn no_action_without_docblock() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    public function bar(string $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 2, 20);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should not offer action without an existing docblock"
    );
}

// ── Standalone function ─────────────────────────────────────────────────────

#[test]
fn works_with_standalone_function() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
/**
 * @param string $a
 * @param int $b
 */
function bar(string $a, int $b, bool $c): void {}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 2, 5);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action for standalone function");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "bool", "$c"),
        "should add missing param: {}",
        new_text
    );
}

// ── Preserves other tags ────────────────────────────────────────────────────

#[test]
fn preserves_template_and_throws_tags() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Summary.
     *
     * @template T
     * @param string $a
     * @throws \RuntimeException
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 6, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@template T"),
        "should preserve @template tag: {}",
        new_text
    );
    assert!(
        new_text.contains("@throws"),
        "should preserve @throws tag: {}",
        new_text
    );
    assert!(
        contains_param(&new_text, "int", "$b"),
        "should add missing param: {}",
        new_text
    );
    assert!(
        new_text.contains("Summary"),
        "should preserve summary: {}",
        new_text
    );
}

#[test]
fn preserves_deprecated_tag() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @deprecated Use newBar() instead.
     * @param string $a
     */
    public function bar(int $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 4, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@deprecated"),
        "should preserve @deprecated tag: {}",
        new_text
    );
    assert!(
        new_text.contains("@param int $a"),
        "should update param type: {}",
        new_text
    );
}

// ── Variadic parameter ──────────────────────────────────────────────────────

#[test]
fn handles_variadic_param_match() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string ...$args
     */
    public function bar(string ...$args): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should not offer action when variadic params match"
    );
}

#[test]
fn adds_variadic_prefix_for_new_param() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Summary.
     *
     * @param string $a The first param
     */
    public function bar(string $a, int ...$rest): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "string", "$a"),
        "should keep $a param: {}",
        new_text
    );
    assert!(
        contains_param(&new_text, "int", "...$rest"),
        "should add variadic $rest param: {}",
        new_text
    );
}

// ── Namespace handling ──────────────────────────────────────────────────────

#[test]
fn works_inside_namespace() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
namespace App\Services;

class UserService {
    /**
     * @param string $name
     */
    public function create(string $name, string $email): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action inside namespace");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@param string $email"),
        "should add missing $email param: {}",
        new_text
    );
}

// ── Combined param and return update ────────────────────────────────────────

#[test]
fn updates_both_params_and_return() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Transforms data.
     *
     * @param string $input
     * @return string
     */
    public function transform(int $input, bool $strict): array {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 5, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "int", "$input"),
        "should update param type: {}",
        new_text
    );
    assert!(
        contains_param(&new_text, "bool", "$strict"),
        "should add new param: {}",
        new_text
    );
    assert!(
        new_text.contains("@return array"),
        "should update return type: {}",
        new_text
    );
}

// ── Summary preservation ────────────────────────────────────────────────────

#[test]
fn preserves_multiline_summary() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * This is a summary that describes
     * what the method does.
     *
     * @param string $old
     */
    public function bar(int $new): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 6, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("This is a summary"),
        "should preserve first summary line: {}",
        new_text
    );
    assert!(
        new_text.contains("what the method does"),
        "should preserve second summary line: {}",
        new_text
    );
    assert!(
        !new_text.contains("$old"),
        "should remove old param: {}",
        new_text
    );
    assert!(
        new_text.contains("@param int $new"),
        "should add new param: {}",
        new_text
    );
}

// ── Untyped parameters ──────────────────────────────────────────────────────

#[test]
fn uses_mixed_for_untyped_params() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Summary.
     */
    public function bar($a, $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@param mixed $a"),
        "should use mixed for untyped $a: {}",
        new_text
    );
    assert!(
        new_text.contains("@param mixed $b"),
        "should use mixed for untyped $b: {}",
        new_text
    );
}

// ── Interface method ────────────────────────────────────────────────────────

#[test]
fn works_on_interface_method() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
interface Transformer {
    /**
     * @param string $input
     */
    public function transform(string $input, array $options): mixed;
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action on interface method");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "array<mixed>", "$options"),
        "should add missing param: {}",
        new_text
    );
}

// ── Trait method ────────────────────────────────────────────────────────────

#[test]
fn works_on_trait_method() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
trait HasName {
    /**
     * @param int $name
     */
    public function setName(string $name): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action on trait method");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("@param string $name"),
        "should update type from int to string: {}",
        new_text
    );
}

// ── Nullable types ──────────────────────────────────────────────────────────

#[test]
fn no_action_when_nullable_syntax_differs_but_semantically_equal() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string|null $a
     */
    public function bar(?string $a): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);
    // string|null and ?string are semantically equivalent — no update needed.
    assert!(
        action.is_none(),
        "should not offer action when nullable syntax differs but is semantically equivalent"
    );
}

// ── Empty docblock with just summary ────────────────────────────────────────

#[test]
fn no_action_for_summary_only_docblock_with_typed_params() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Process the input.
     */
    public function process(string $input): string {}
}
"#;
    backend.update_ast(uri, content);

    // The docblock has zero @param tags and the native type is sufficient,
    // so no update should be offered (matches generate-docblock behaviour).
    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);
    assert!(
        action.is_none(),
        "should NOT offer Update docblock for summary-only docblock with fully typed params"
    );
}

#[test]
fn adds_params_to_summary_only_docblock_with_untyped_param() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * Process the input.
     */
    public function process($input): string {}
}
"#;
    backend.update_ast(uri, content);

    // The param has no native type, so enrichment produces `mixed` and
    // the update should be offered.
    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock action");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("Process the input"),
        "should preserve summary: {}",
        new_text
    );
    assert!(
        new_text.contains("@param mixed $input"),
        "should add param with mixed type: {}",
        new_text
    );
}

// ── Cursor inside docblock ──────────────────────────────────────────────────

#[test]
fn action_offered_when_cursor_inside_docblock() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string $a
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    // Cursor on the @param line inside the docblock (line 3).
    let actions = get_code_actions(&backend, uri, content, 3, 10);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action when cursor is inside docblock");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "int", "$b"),
        "should add missing param: {}",
        new_text
    );
}

#[test]
fn action_offered_when_cursor_on_opening_comment() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param string $a
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    // Cursor on the /** line (line 2).
    let actions = get_code_actions(&backend, uri, content, 2, 6);
    let action = find_update_docblock_action(&actions)
        .expect("should offer Update docblock action when cursor is on /**");

    let new_text = extract_edit_text(action);
    assert!(
        contains_param(&new_text, "int", "$b"),
        "should add missing param: {}",
        new_text
    );
}

// ── @param with no type ─────────────────────────────────────────────────────

#[test]
fn no_duplicate_when_param_has_no_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param $name The user name
     */
    public function bar($name): void {}
}
"#;
    backend.update_ast(uri, content);

    // The existing @param $name (no type) should be recognised as covering
    // the $name parameter.  The action will be offered to add `mixed` as
    // the explicit type, but the result must not contain a duplicate $name.
    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);

    if let Some(action) = action {
        let new_text = extract_edit_text(action);
        let param_name_count = new_text.matches("$name").count();
        assert_eq!(
            param_name_count, 1,
            "should not duplicate $name param, got:\n{}",
            new_text
        );
        assert!(
            new_text.contains("The user name"),
            "should preserve description, got:\n{}",
            new_text
        );
    }
}

#[test]
fn no_duplicate_when_param_has_no_type_with_native_hint() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param $name The user name
     * @param int $age The age
     */
    public function bar(string $name, int $age): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);

    // The action may or may not be offered (depends on whether the missing
    // type is considered a contradiction), but if it IS offered, the result
    // must not contain a duplicate $name param.
    if let Some(action) = action {
        let new_text = extract_edit_text(action);
        let param_name_count = new_text.matches("$name").count();
        assert_eq!(
            param_name_count, 1,
            "should not duplicate $name param, got:\n{}",
            new_text
        );
    }
}

#[test]
fn preserves_description_for_param_with_no_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param $a First param
     */
    public function bar(string $a, int $b): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action =
        find_update_docblock_action(&actions).expect("should offer Update docblock for missing $b");

    let new_text = extract_edit_text(action);
    assert!(
        new_text.contains("First param"),
        "should preserve description from @param $a: {}",
        new_text
    );
    assert!(
        contains_param(&new_text, "int", "$b"),
        "should add missing $b param: {}",
        new_text
    );
}

#[test]
fn no_duplicate_for_variadic_param_with_no_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = r#"<?php
class Foo {
    /**
     * @param ...$args The arguments
     */
    public function bar(...$args): void {}
}
"#;
    backend.update_ast(uri, content);

    let actions = get_code_actions(&backend, uri, content, 3, 5);
    let action = find_update_docblock_action(&actions);

    // The action may be offered to add `mixed` as the explicit type, but
    // the result must not contain a duplicate ...$args.
    if let Some(action) = action {
        let new_text = extract_edit_text(action);
        let param_args_count = new_text.matches("$args").count();
        assert_eq!(
            param_args_count, 1,
            "should not duplicate $args param, got:\n{}",
            new_text
        );
        assert!(
            new_text.contains("The arguments"),
            "should preserve description, got:\n{}",
            new_text
        );
    }
}