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
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
//! Integration tests for the "Generate constructor" code action.
//!
//! These tests exercise the full pipeline: parsing PHP source, detecting
//! qualifying properties, and generating a `WorkspaceEdit` that inserts
//! a constructor with parameters and assignments for each non-static
//! property (including readonly properties, which must be initialized
//! in the constructor).

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

/// 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 "Generate constructor" code action from a list.
fn find_generate_action(actions: &[CodeActionOrCommand]) -> Option<&CodeAction> {
    actions.iter().find_map(|a| match a {
        CodeActionOrCommand::CodeAction(ca) if ca.title == "Generate constructor" => Some(ca),
        _ => None,
    })
}

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

/// Apply a workspace edit to the content and return the result.
fn apply_edit(content: &str, edit: &WorkspaceEdit) -> String {
    let changes = edit.changes.as_ref().expect("edit should have changes");
    let edits = changes
        .values()
        .next()
        .expect("should have edits for one URI");

    // Sort edits by start position descending so we can apply back-to-front.
    let mut sorted: Vec<&TextEdit> = edits.iter().collect();
    sorted.sort_by(|a, b| {
        b.range
            .start
            .line
            .cmp(&a.range.start.line)
            .then(b.range.start.character.cmp(&a.range.start.character))
    });

    let mut result = content.to_string();
    for edit in sorted {
        let start = position_to_offset(&result, edit.range.start);
        let end = position_to_offset(&result, edit.range.end);
        result.replace_range(start..end, &edit.new_text);
    }
    result
}

/// Convert an LSP Position to a byte offset.
fn position_to_offset(content: &str, pos: Position) -> usize {
    let mut offset = 0;
    for (i, line) in content.lines().enumerate() {
        if i == pos.line as usize {
            return offset + pos.character as usize;
        }
        offset += line.len() + 1; // +1 for '\n'
    }
    offset
}

// ── Basic generation ────────────────────────────────────────────────────────

#[test]
fn generates_constructor_for_single_property() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer generate constructor action");
    assert_eq!(
        action.kind,
        Some(CodeActionKind::REFACTOR_REWRITE),
        "should be refactor.rewrite"
    );
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public function __construct(string $name)"),
        "should generate constructor with typed param: {result}"
    );
    assert!(
        result.contains("$this->name = $name;"),
        "should generate assignment: {result}"
    );
}

#[test]
fn generates_constructor_for_multiple_properties() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class User {
    public string $name;
    public int $age;
    public string $email;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("string $name, int $age, string $email"),
        "should include all params: {result}"
    );
    assert!(
        result.contains("$this->name = $name;"),
        "should assign name: {result}"
    );
    assert!(
        result.contains("$this->age = $age;"),
        "should assign age: {result}"
    );
    assert!(
        result.contains("$this->email = $email;"),
        "should assign email: {result}"
    );
}

// ── Default values ──────────────────────────────────────────────────────────

#[test]
fn includes_default_values_on_parameters() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Config {
    public string $status = 'active';
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("string $status = 'active'"),
        "should carry over default value: {result}"
    );
}

#[test]
fn required_params_before_optional_params() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Config {
    public string $status = 'active';
    public string $name;
    public int $retries = 3;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // $name (required) should come before $status and $retries (optional).
    let name_pos = result.find("$name").expect("should have $name");
    let status_pos = result.find("$status").expect("should have $status");
    let retries_pos = result.find("$retries").expect("should have $retries");

    // In the parameter list, required params come first.
    // But assignment order follows declaration order.
    // Find the parameter list portion.
    let construct_pos = result.find("__construct(").unwrap();
    let paren_close = result[construct_pos..].find(')').unwrap() + construct_pos;
    let param_list = &result[construct_pos..paren_close];

    let param_name_pos = param_list.find("$name").expect("$name in params");
    let param_status_pos = param_list.find("$status").expect("$status in params");
    let param_retries_pos = param_list.find("$retries").expect("$retries in params");

    assert!(
        param_name_pos < param_status_pos,
        "required $name before optional $status in params: {param_list}"
    );
    assert!(
        param_name_pos < param_retries_pos,
        "required $name before optional $retries in params: {param_list}"
    );

    // Assignments should still reference all properties.
    assert!(
        result.contains("$this->status = $status;"),
        "should assign status: {result}"
    );
    assert!(
        result.contains("$this->name = $name;"),
        "should assign name: {result}"
    );
    assert!(
        result.contains("$this->retries = $retries;"),
        "should assign retries: {result}"
    );

    // Verify the generated result mentions all three in the parameter list.
    let _ = (name_pos, status_pos, retries_pos); // suppress unused warnings
}

// ── Type preservation ───────────────────────────────────────────────────────

#[test]
fn preserves_nullable_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public ?string $label;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("?string $label"),
        "should preserve nullable type: {result}"
    );
}

#[test]
fn preserves_union_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public int|string $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("int|string $id"),
        "should preserve union type: {result}"
    );
}

#[test]
fn untyped_property_produces_untyped_param() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public $data;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("($data)"),
        "untyped property should produce untyped param: {result}"
    );
}

// ── Exclusion rules ─────────────────────────────────────────────────────────

#[test]
fn skips_static_properties() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public static int $count;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Check the parameter list specifically, not the whole file
    // (the property declarations still contain "$count").
    let construct_pos = result.find("__construct(").unwrap();
    let paren_close = result[construct_pos..].find(')').unwrap() + construct_pos;
    let param_list = &result[construct_pos..paren_close];

    assert!(
        param_list.contains("string $name"),
        "should include non-static property: {param_list}"
    );
    assert!(
        !param_list.contains("$count"),
        "should exclude static property from params: {param_list}"
    );
}

#[test]
fn includes_readonly_properties() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public readonly int $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Readonly properties must be initialized in the constructor,
    // so they should be included.
    let construct_pos = result.find("__construct(").unwrap();
    let paren_close = result[construct_pos..].find(')').unwrap() + construct_pos;
    let param_list = &result[construct_pos..paren_close];

    assert!(
        param_list.contains("string $name"),
        "should include non-readonly property: {param_list}"
    );
    assert!(
        param_list.contains("int $id"),
        "should include readonly property: {param_list}"
    );
    assert!(
        result.contains("$this->id = $id;"),
        "should assign readonly property: {result}"
    );
}

#[test]
fn action_offered_when_all_properties_readonly() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public readonly string $name;
    public readonly int $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions);

    assert!(
        action.is_some(),
        "should offer action when all properties are readonly (they must be initialized in the constructor)"
    );

    let result = apply_edit(content, action.unwrap().edit.as_ref().unwrap());
    assert!(
        result.contains("string $name, int $id"),
        "should include all readonly properties: {result}"
    );
}

#[test]
fn no_action_when_all_properties_static() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public static string $name;
    public static int $count;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions);

    assert!(
        action.is_none(),
        "should not offer action when all properties are static"
    );
}

// ── Constructor already exists ──────────────────────────────────────────────

#[test]
fn no_action_when_constructor_exists() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;

    public function __construct(string $name) {
        $this->name = $name;
    }
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions);

    assert!(
        action.is_none(),
        "should not offer action when constructor already exists"
    );
}

#[test]
fn no_action_when_constructor_exists_case_insensitive() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;

    public function __CONSTRUCT() {}
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions);

    assert!(
        action.is_none(),
        "should detect constructor case-insensitively"
    );
}

// ── Cursor position ─────────────────────────────────────────────────────────

#[test]
fn action_offered_on_property_line() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
}
";
    // Cursor directly on the property declaration.
    let actions = get_code_actions(&backend, uri, content, 2, 4);
    assert!(
        find_generate_action(&actions).is_some(),
        "should offer action when cursor is on property"
    );
}

#[test]
fn no_action_on_static_property() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public static int $count;
}
";
    // Cursor on the static property (line 3).
    let actions = get_code_actions(&backend, uri, content, 3, 10);
    assert!(
        find_generate_action(&actions).is_none(),
        "should not offer action when cursor is on a static property"
    );
}

#[test]
fn no_action_on_class_brace() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
}
";
    // Cursor on the class keyword line — not on a property.
    let actions = get_code_actions(&backend, uri, content, 1, 0);
    assert!(
        find_generate_action(&actions).is_none(),
        "should not offer action when cursor is on class declaration"
    );
}

#[test]
fn no_action_inside_method_body() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;

    public function greet(): string {
        return 'hello';
    }
}
";
    // Cursor inside the method body (line 5, on "return").
    let actions = get_code_actions(&backend, uri, content, 5, 8);
    assert!(
        find_generate_action(&actions).is_none(),
        "should not offer action when cursor is inside a method body"
    );
}

// ── Abstract classes ────────────────────────────────────────────────────────

#[test]
fn action_offered_for_abstract_class() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
abstract class Foo {
    public string $name;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions);

    assert!(action.is_some(), "should offer action for abstract class");

    let result = apply_edit(content, action.unwrap().edit.as_ref().unwrap());
    assert!(
        result.contains("public function __construct(string $name)"),
        "should generate constructor for abstract class: {result}"
    );
}

// ── No action outside class ─────────────────────────────────────────────────

#[test]
fn no_action_outside_class() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
$x = 1;
";
    let actions = get_code_actions(&backend, uri, content, 1, 0);
    let action = find_generate_action(&actions);

    assert!(action.is_none(), "should not offer action outside class");
}

// ── Namespace ───────────────────────────────────────────────────────────────

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

class User {
    public string $name;
    public string $email;
}
";
    let actions = get_code_actions(&backend, uri, content, 4, 10);
    let action = find_generate_action(&actions).expect("should offer action in namespace");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public function __construct(string $name, string $email)"),
        "should generate constructor in namespaced class: {result}"
    );
}

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

class User {
    public string $name;
}

}
";
    let actions = get_code_actions(&backend, uri, content, 4, 10);
    let action = find_generate_action(&actions).expect("should offer action in braced namespace");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public function __construct(string $name)"),
        "should generate constructor in braced namespace: {result}"
    );
}

// ── Docblock type fallback ──────────────────────────────────────────────────

#[test]
fn uses_docblock_type_when_no_native_hint() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    /** @var string */
    public $name;
}
";
    let actions = get_code_actions(&backend, uri, content, 3, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("string $name"),
        "should use docblock type as param hint: {result}"
    );
}

#[test]
fn skips_compound_docblock_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    /** @var int|string */
    public $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 3, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Compound docblock types are not usable as native type hints in
    // all PHP versions, so the parameter should be untyped.
    assert!(
        result.contains("($id)"),
        "compound docblock type should produce untyped param: {result}"
    );
}

// ── Mixed qualifying and non-qualifying properties ──────────────────────────

#[test]
fn mixed_properties_only_qualifying_included() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public static int $count;
    private float $score;
    public readonly string $id;
    protected array $tags;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Should include $name, $score, $id (readonly), and $tags but not $count (static).
    let construct_pos = result.find("__construct(").unwrap();
    let paren_close = result[construct_pos..].find(')').unwrap() + construct_pos;
    let param_list = &result[construct_pos..paren_close];

    assert!(
        param_list.contains("$name"),
        "should include $name: {param_list}"
    );
    assert!(
        param_list.contains("$score"),
        "should include $score: {param_list}"
    );
    assert!(
        param_list.contains("$tags"),
        "should include $tags: {param_list}"
    );
    assert!(
        param_list.contains("$id"),
        "should include readonly $id: {param_list}"
    );
    assert!(
        !param_list.contains("$count"),
        "should not include static $count: {param_list}"
    );
}

// ── Insertion point ─────────────────────────────────────────────────────────

#[test]
fn constructor_inserted_after_properties() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public int $age;

    public function greet(): string {
        return 'hello';
    }
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // The constructor should appear between the properties and greet().
    let constructor_pos = result.find("__construct").expect("should have constructor");
    let greet_pos = result
        .find("function greet")
        .expect("should still have greet");
    let age_prop_pos = result
        .find("public int $age")
        .expect("should still have age prop");

    assert!(
        constructor_pos > age_prop_pos,
        "constructor should be after properties"
    );
    assert!(
        constructor_pos < greet_pos,
        "constructor should be before existing methods"
    );
}

// ── Indentation ─────────────────────────────────────────────────────────────

#[test]
fn detects_tab_indentation() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "<?php\nclass Foo {\n\tpublic string $name;\n}\n";
    let actions = get_code_actions(&backend, uri, content, 2, 5);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("\tpublic function __construct("),
        "should use tab indentation: {result}"
    );
    assert!(
        result.contains("\t\t$this->name = $name;"),
        "body should use double tab: {result}"
    );
}

// ── Array default value ─────────────────────────────────────────────────────

#[test]
fn handles_array_default_value() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public array $items = [];
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_generate_action(&actions).expect("should offer action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("array $items = []"),
        "should carry over array default: {result}"
    );
}

// ═══════════════════════════════════════════════════════════════════════════
// Promoted constructor tests
// ═══════════════════════════════════════════════════════════════════════════

#[test]
fn promoted_action_offered_alongside_traditional() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    assert!(
        find_generate_action(&actions).is_some(),
        "traditional action should be offered"
    );
    assert!(
        find_promoted_action(&actions).is_some(),
        "promoted action should be offered"
    );
}

#[test]
fn promoted_removes_properties_and_creates_promoted_params() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    private int $age;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Property declarations should be removed.
    assert!(
        !result.contains("public string $name;"),
        "property declaration should be removed: {result}"
    );
    assert!(
        !result.contains("private int $age;"),
        "property declaration should be removed: {result}"
    );

    // Promoted parameters should be present.
    assert!(
        result.contains("public string $name"),
        "should have promoted public param: {result}"
    );
    assert!(
        result.contains("private int $age"),
        "should have promoted private param: {result}"
    );

    // No assignment body.
    assert!(
        !result.contains("$this->"),
        "promoted constructor should not have assignments: {result}"
    );

    // Empty body.
    assert!(result.contains(") {}"), "should have empty body: {result}");
}

#[test]
fn promoted_preserves_readonly() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public readonly string $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public readonly string $id"),
        "should preserve readonly modifier: {result}"
    );
}

#[test]
fn promoted_carries_default_values() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    protected string $status = 'active';
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("protected string $status = 'active'"),
        "should carry over default value: {result}"
    );

    // Required param before optional.
    let name_pos = result.find("$name").unwrap();
    let status_pos = result.find("$status").unwrap();
    assert!(
        name_pos < status_pos,
        "required $name before optional $status: {result}"
    );
}

#[test]
fn promoted_skips_static_properties() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public static int $count;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Static property should remain (not deleted, not promoted).
    assert!(
        result.contains("public static int $count;"),
        "static property should remain: {result}"
    );
    assert!(
        !result.contains("public static int $count,"),
        "static property should not be in constructor: {result}"
    );
}

#[test]
fn promoted_preserves_visibility_variants() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    protected int $age;
    private float $score;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public string $name"),
        "should preserve public: {result}"
    );
    assert!(
        result.contains("protected int $age"),
        "should preserve protected: {result}"
    );
    assert!(
        result.contains("private float $score"),
        "should preserve private: {result}"
    );
}

#[test]
fn promoted_no_action_when_constructor_exists() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;

    public function __construct(string $name) {
        $this->name = $name;
    }
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    assert!(
        find_promoted_action(&actions).is_none(),
        "should not offer promoted action when constructor exists"
    );
}

#[test]
fn promoted_trailing_comma_on_params() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Trailing comma for clean diffs.
    assert!(
        result.contains("$name,\n"),
        "should have trailing comma: {result}"
    );
}

#[test]
fn promoted_preserves_nullable_type() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public ?string $label;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public ?string $label"),
        "should preserve nullable type: {result}"
    );
}

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

class User {
    public string $name;
    private string $email;
}
";
    let actions = get_code_actions(&backend, uri, content, 4, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    assert!(
        result.contains("public string $name"),
        "should promote name: {result}"
    );
    assert!(
        result.contains("private string $email"),
        "should promote email: {result}"
    );
    assert!(
        !result.contains("public string $name;"),
        "property declaration should be removed: {result}"
    );
}

#[test]
fn promoted_static_properties_stay_above_constructor() {
    let backend = create_test_backend();
    let uri = "file:///test.php";
    let content = "\
<?php
class Foo {
    public string $name;
    public int $age;
    public static int $instanceCount;
    public readonly string $id;
}
";
    let actions = get_code_actions(&backend, uri, content, 2, 10);
    let action = find_promoted_action(&actions).expect("should offer promoted action");
    let result = apply_edit(content, action.edit.as_ref().unwrap());

    // Static property should remain and appear before the constructor.
    let static_pos = result
        .find("public static int $instanceCount;")
        .expect("static property should remain: {result}");
    let constructor_pos = result
        .find("public function __construct(")
        .expect("constructor should exist: {result}");
    assert!(
        static_pos < constructor_pos,
        "static property should appear above the constructor:\n{result}"
    );
}