-
Notifications
You must be signed in to change notification settings - Fork 302
/
Copy pathCodeActionTests.swift
1189 lines (1080 loc) · 35.6 KB
/
CodeActionTests.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import LSPTestSupport
import LanguageServerProtocol
import SKTestSupport
import SourceKitLSP
import XCTest
private typealias CodeActionCapabilities = TextDocumentClientCapabilities.CodeAction
private typealias CodeActionLiteralSupport = CodeActionCapabilities.CodeActionLiteralSupport
private typealias CodeActionKindCapabilities = CodeActionLiteralSupport.CodeActionKind
private let clientCapabilitiesWithCodeActionSupport: ClientCapabilities = {
var documentCapabilities = TextDocumentClientCapabilities()
var codeActionCapabilities = CodeActionCapabilities()
let codeActionKinds = CodeActionKindCapabilities(valueSet: [.refactor, .quickFix])
let codeActionLiteralSupport = CodeActionLiteralSupport(codeActionKind: codeActionKinds)
codeActionCapabilities.codeActionLiteralSupport = codeActionLiteralSupport
documentCapabilities.codeAction = codeActionCapabilities
documentCapabilities.completion = .init(completionItem: .init(snippetSupport: true))
return ClientCapabilities(workspace: nil, textDocument: documentCapabilities)
}()
final class CodeActionTests: XCTestCase {
func testCodeActionResponseLegacySupport() throws {
let command = Command(title: "Title", command: "Command", arguments: [1, "text", 2.2, nil])
let codeAction = CodeAction(title: "1")
let codeAction2 = CodeAction(title: "2", command: command)
var capabilities: TextDocumentClientCapabilities.CodeAction
var capabilityJson: String
var data: Data
var response: CodeActionRequestResponse
capabilityJson =
"""
{
"dynamicRegistration": true,
"codeActionLiteralSupport" : {
"codeActionKind": {
"valueSet": []
}
}
}
"""
data = capabilityJson.data(using: .utf8)!
capabilities = try JSONDecoder().decode(
TextDocumentClientCapabilities.CodeAction.self,
from: data
)
response = .init(codeActions: [codeAction, codeAction2], clientCapabilities: capabilities)
let actions = try JSONDecoder().decode([CodeAction].self, from: JSONEncoder().encode(response))
XCTAssertEqual(actions, [codeAction, codeAction2])
capabilityJson =
"""
{
"dynamicRegistration": true
}
"""
data = capabilityJson.data(using: .utf8)!
capabilities = try JSONDecoder().decode(
TextDocumentClientCapabilities.CodeAction.self,
from: data
)
response = .init(codeActions: [codeAction, codeAction2], clientCapabilities: capabilities)
let commands = try JSONDecoder().decode([Command].self, from: JSONEncoder().encode(response))
XCTAssertEqual(commands, [command])
}
func testCodeActionResponseIgnoresSupportedKinds() throws {
// The client guarantees that unsupported kinds will be handled, and in
// practice some clients use `"codeActionKind":{"valueSet":[]}`, since
// they support all kinds anyway. So to avoid filtering all actions, we
// ignore the supported kinds.
let unspecifiedAction = CodeAction(title: "Unspecified")
let refactorAction = CodeAction(title: "Refactor", kind: .refactor)
let quickfixAction = CodeAction(title: "Quickfix", kind: .quickFix)
let actions = [unspecifiedAction, refactorAction, quickfixAction]
var capabilities: TextDocumentClientCapabilities.CodeAction
var capabilityJson: String
var data: Data
var response: CodeActionRequestResponse
capabilityJson =
"""
{
"dynamicRegistration": true,
"codeActionLiteralSupport" : {
"codeActionKind": {
"valueSet": ["refactor"]
}
}
}
"""
data = capabilityJson.data(using: .utf8)!
capabilities = try JSONDecoder().decode(
TextDocumentClientCapabilities.CodeAction.self,
from: data
)
response = .init(codeActions: actions, clientCapabilities: capabilities)
XCTAssertEqual(response, .codeActions([unspecifiedAction, refactorAction, quickfixAction]))
capabilityJson =
"""
{
"dynamicRegistration": true,
"codeActionLiteralSupport" : {
"codeActionKind": {
"valueSet": []
}
}
}
"""
data = capabilityJson.data(using: .utf8)!
capabilities = try JSONDecoder().decode(
TextDocumentClientCapabilities.CodeAction.self,
from: data
)
response = .init(codeActions: actions, clientCapabilities: capabilities)
XCTAssertEqual(response, .codeActions([unspecifiedAction, refactorAction, quickfixAction]))
}
func testCodeActionResponseCommandMetadataInjection() throws {
let url = URL(fileURLWithPath: "/a.swift")
let textDocument = TextDocumentIdentifier(url)
let expectedMetadata: LSPAny = try {
let metadata = SourceKitLSPCommandMetadata(textDocument: textDocument)
let data = try JSONEncoder().encode(metadata)
return try JSONDecoder().decode(LSPAny.self, from: data)
}()
XCTAssertEqual(expectedMetadata, .dictionary(["sourcekitlsp_textDocument": ["uri": "file:///a.swift"]]))
let command = Command(title: "Title", command: "Command", arguments: [1, "text", 2.2, nil])
let codeAction = CodeAction(title: "1")
let codeAction2 = CodeAction(title: "2", command: command)
let request = CodeActionRequest(
range: Position(line: 0, utf16index: 0)..<Position(line: 1, utf16index: 1),
context: .init(diagnostics: [], only: nil),
textDocument: textDocument
)
var response = request.injectMetadata(toResponse: .commands([command]))
XCTAssertEqual(
response,
.commands([
Command(
title: command.title,
command: command.command,
arguments: command.arguments! + [expectedMetadata]
)
])
)
response = request.injectMetadata(toResponse: .codeActions([codeAction, codeAction2]))
XCTAssertEqual(
response,
.codeActions([
codeAction,
CodeAction(
title: codeAction2.title,
command: Command(
title: command.title,
command: command.command,
arguments: command.arguments! + [expectedMetadata]
)
),
])
)
response = request.injectMetadata(toResponse: nil)
XCTAssertNil(response)
}
func testCommandEncoding() throws {
let dictionary: LSPAny = ["1": [nil, 2], "2": "text", "3": ["4": [1, 2]]]
let array: LSPAny = [1, [2, "string"], dictionary]
let arguments: LSPAny = [1, 2.2, "text", nil, array, dictionary]
let command = Command(title: "Command", command: "command.id", arguments: [arguments, arguments])
let decoded = try JSONDecoder().decode(Command.self, from: JSONEncoder().encode(command))
XCTAssertEqual(decoded, command)
}
func testEmptyCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func foo() -> String {
var a = "hello"
1️⃣ return a
}
""",
uri: uri
)
let request = CodeActionRequest(
range: positions["1️⃣"]..<positions["1️⃣"],
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
XCTAssertEqual(result, .codeActions([]))
}
func testSemanticRefactorLocalRenameResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func localRename() {
var 1️⃣local = 1
_ = local
}
""",
uri: uri
)
let request = CodeActionRequest(
range: Range(positions["1️⃣"]),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
XCTAssertEqual(codeActions.map(\.title), ["Add documentation"])
}
func testSemanticRefactorLocationCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func foo() -> String {
var a = "1️⃣"
return a
}
""",
uri: uri
)
let testPosition = positions["1️⃣"]
let request = CodeActionRequest(
range: Range(testPosition),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
let expectedCommandArgs: LSPAny = [
"actionString": "source.refactoring.kind.localize.string",
"positionRange": [
"start": [
"character": .int(testPosition.utf16index),
"line": .int(testPosition.line),
],
"end": [
"character": .int(testPosition.utf16index),
"line": .int(testPosition.line),
],
],
"title": "Localize String",
"textDocument": ["uri": .string(uri.stringValue)],
]
let metadataArguments: LSPAny = ["sourcekitlsp_textDocument": ["uri": .string(uri.stringValue)]]
let expectedCommand = Command(
title: "Localize String",
command: "semantic.refactor.command",
arguments: [expectedCommandArgs] + [metadataArguments]
)
let expectedCodeAction = CodeAction(
title: "Localize String",
kind: .refactor,
command: expectedCommand
)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
XCTAssertTrue(codeActions.contains(expectedCodeAction))
}
func testJSONCodableCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
1️⃣{
"name": "Produce",
"shelves": [
{
"name": "Discount Produce",
"product": {
"name": "Banana",
"points": 200,
"description": "A banana that's perfectly ripe."
}
}
]
}
""",
uri: uri
)
let testPosition = positions["1️⃣"]
let request = CodeActionRequest(
range: Range(testPosition),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
// Make sure we get a JSON conversion action.
let codableAction = codeActions.first { action in
return action.title == "Create Codable structs from JSON"
}
XCTAssertNotNil(codableAction)
}
func testSemanticRefactorRangeCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
func foo() -> String {
1️⃣var a = "hello"
return a2️⃣
}
""",
uri: uri
)
let startPosition = positions["1️⃣"]
let endPosition = positions["2️⃣"]
let request = CodeActionRequest(
range: startPosition..<endPosition,
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
let expectedCommandArgs: LSPAny = [
"actionString": "source.refactoring.kind.extract.function",
"positionRange": [
"start": [
"character": .int(startPosition.utf16index),
"line": .int(startPosition.line),
],
"end": [
"character": .int(endPosition.utf16index),
"line": .int(endPosition.line),
],
],
"title": "Extract Method",
"textDocument": ["uri": .string(uri.stringValue)],
]
let metadataArguments: LSPAny = ["sourcekitlsp_textDocument": ["uri": .string(uri.stringValue)]]
let expectedCommand = Command(
title: "Extract Method",
command: "semantic.refactor.command",
arguments: [expectedCommandArgs] + [metadataArguments]
)
let expectedCodeAction = CodeAction(
title: "Extract Method",
kind: .refactor,
command: expectedCommand
)
guard case .codeActions(var resultActions) = result else {
XCTFail("Result doesn't have code actions: \(String(describing: result))")
return
}
// Filter out "Add documentation"; we test it elsewhere
if let addDocIndex = resultActions.firstIndex(where: {
$0.title == "Add documentation"
}
) {
resultActions.remove(at: addDocIndex)
} else {
XCTFail("Missing 'Add documentation'.")
return
}
XCTAssertEqual(resultActions, [expectedCodeAction])
}
func testCodeActionsRemovePlaceholders() async throws {
let testClient = try await TestSourceKitLSPClient(
capabilities: clientCapabilitiesWithCodeActionSupport,
usePullDiagnostics: false
)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
protocol MyProto {
func foo()
}
struct 1️⃣MyStruct: MyProto {
}
""",
uri: uri
)
let diags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(diags.uri, uri)
XCTAssertEqual(diags.diagnostics.count, 1)
let diagPosition = try XCTUnwrap(diags.diagnostics.only?.range.lowerBound)
let quickFixActionResult = try await testClient.send(
CodeActionRequest(
range: Range(diagPosition),
context: .init(diagnostics: diags.diagnostics),
textDocument: TextDocumentIdentifier(uri)
)
)
guard case .codeActions(let quickFixCodeActions) = quickFixActionResult else {
return XCTFail("Expected code actions, not commands as a response")
}
// Check that the Fix-It action contains snippets
guard let quickFixAction = quickFixCodeActions.filter({ $0.kind == .quickFix }).spm_only else {
return XCTFail("Expected exactly one quick fix action")
}
guard let change = quickFixAction.edit?.changes?[uri]?.spm_only else {
return XCTFail("Expected exactly one change")
}
XCTAssertEqual(
change.newText.trimmingTrailingWhitespace(),
"""
func foo() {
}
"""
)
// Check that the refactor action contains snippets
let refactorActionResult = try await testClient.send(
CodeActionRequest(
range: Range(positions["1️⃣"]),
context: .init(diagnostics: diags.diagnostics),
textDocument: TextDocumentIdentifier(uri)
)
)
guard case .codeActions(let refactorActions) = refactorActionResult else {
return XCTFail("Expected code actions, not commands as a response")
}
guard let refactorAction = refactorActions.filter({ $0.kind == .refactor }).spm_only else {
return XCTFail("Expected exactly one refactor action")
}
guard let command = refactorAction.command else {
return XCTFail("Expected the refactor action to have a command")
}
let editReceived = self.expectation(description: "Received ApplyEdit request")
testClient.handleSingleRequest { (request: ApplyEditRequest) -> ApplyEditResponse in
defer {
editReceived.fulfill()
}
guard let change = request.edit.changes?[uri]?.spm_only else {
XCTFail("Expected exactly one edit")
return ApplyEditResponse(applied: false, failureReason: "Expected exactly one edit")
}
XCTAssertEqual(
change.newText.trimmingTrailingWhitespace(),
"""
func foo() {
}
"""
)
return ApplyEditResponse(applied: true, failureReason: nil)
}
_ = try await testClient.send(ExecuteCommandRequest(command: command.command, arguments: command.arguments))
try await fulfillmentOfOrThrow([editReceived])
}
func testAddDocumentationCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
2️⃣func refacto1️⃣r(syntax: DeclSyntax, in context: Void) -> DeclSyntax? { }3️⃣
""",
uri: uri
)
let testPosition = positions["1️⃣"]
let request = CodeActionRequest(
range: Range(testPosition),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
// Make sure we get an add-documentation action.
let addDocAction = codeActions.first { action in
return action.title == "Add documentation"
}
XCTAssertNotNil(addDocAction)
}
func testCodeActionForFixItsProducedBySwiftSyntax() async throws {
let project = try await MultiFileTestProject(files: [
"test.swift": "protocol 1️⃣Multi 2️⃣ident 3️⃣{}",
"compile_commands.json": "[]",
])
let (uri, positions) = try project.openDocument("test.swift")
let report = try await project.testClient.send(
DocumentDiagnosticsRequest(textDocument: TextDocumentIdentifier(uri))
)
guard case .full(let fullReport) = report else {
XCTFail("Expected full diagnostics report")
return
}
XCTAssertEqual(fullReport.items.count, 1)
let diagnostic = try XCTUnwrap(fullReport.items.first)
let codeActions = try XCTUnwrap(diagnostic.codeActions)
let expectedCodeActions = [
CodeAction(
title: "Join the identifiers together",
kind: .quickFix,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(range: positions["1️⃣"]..<positions["2️⃣"], newText: "Multiident "),
TextEdit(range: positions["2️⃣"]..<positions["3️⃣"], newText: ""),
]
]
)
),
CodeAction(
title: "Join the identifiers together with camel-case",
kind: .quickFix,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(range: positions["1️⃣"]..<positions["2️⃣"], newText: "MultiIdent "),
TextEdit(range: positions["2️⃣"]..<positions["3️⃣"], newText: ""),
]
]
)
),
]
XCTAssertEqual(expectedCodeActions, codeActions)
}
func testPackageManifestEditingCodeActionResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
// swift-tools-version: 5.5
let package = Package(
name: "packages",
targets: [
.tar1️⃣get(name: "MyLib"),
]
)
""",
uri: uri
)
let testPosition = positions["1️⃣"]
let request = CodeActionRequest(
range: Range(testPosition),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
// Make sure we get the expected package manifest editing actions.
let addTestAction = codeActions.first { action in
return action.title == "Add test target (Swift Testing)"
}
XCTAssertNotNil(addTestAction)
XCTAssertTrue(
codeActions.contains { action in
action.title == "Add library target"
}
)
guard let addTestChanges = addTestAction?.edit?.documentChanges else {
XCTFail("Didn't have changes in the 'Add test target (Swift Testing)' action")
return
}
guard
let addTestEdit = addTestChanges.lazy.compactMap({ change in
switch change {
case .textDocumentEdit(let edit): edit
default: nil
}
}).first
else {
XCTFail("Didn't have edits")
return
}
XCTAssertTrue(
addTestEdit.edits.contains { edit in
switch edit {
case .textEdit(let edit): edit.newText.contains("testTarget")
case .annotatedTextEdit(let edit): edit.newText.contains("testTarget")
}
}
)
XCTAssertTrue(
codeActions.contains { action in
return action.title == "Add product to export this target"
}
)
}
func testPackageManifestEditingCodeActionNoTestResult() async throws {
let testClient = try await TestSourceKitLSPClient(capabilities: clientCapabilitiesWithCodeActionSupport)
let uri = DocumentURI(for: .swift)
let positions = testClient.openDocument(
"""
// swift-tools-version: 5.5
let package = Package(
name: "packages",
targets: [
.testTar1️⃣get(name: "MyLib"),
]
)
""",
uri: uri
)
let testPosition = positions["1️⃣"]
let request = CodeActionRequest(
range: Range(testPosition),
context: .init(),
textDocument: TextDocumentIdentifier(uri)
)
let result = try await testClient.send(request)
guard case .codeActions(let codeActions) = result else {
XCTFail("Expected code actions")
return
}
// Make sure we get the expected package manifest editing actions.
XCTAssertTrue(
!codeActions.contains { action in
return action.title == "Add test target"
}
)
XCTAssertTrue(
!codeActions.contains { action in
return action.title == "Add product to export this target"
}
)
}
func testConvertIntegerLiteral() async throws {
try await assertCodeActions(
"""
let x = 1️⃣12️⃣63️⃣
""",
ranges: [("1️⃣", "2️⃣"), ("1️⃣", "3️⃣")]
) { uri, positions in
[
CodeAction(
title: "Convert 16 to 0b10000",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [uri: [TextEdit(range: positions["1️⃣"]..<positions["3️⃣"], newText: "0b10000")]]
),
command: nil
),
CodeAction(
title: "Convert 16 to 0o20",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [uri: [TextEdit(range: positions["1️⃣"]..<positions["3️⃣"], newText: "0o20")]]
),
command: nil
),
CodeAction(
title: "Convert 16 to 0x10",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [uri: [TextEdit(range: positions["1️⃣"]..<positions["3️⃣"], newText: "0x10")]]
),
command: nil
),
]
}
}
func testFormatRawStringLiteral() async throws {
try await assertCodeActions(
"""
let x = 1️⃣#"Hello 2️⃣world"#3️⃣
""",
ranges: [("1️⃣", "3️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Convert string literal to minimal number of \'#\'s",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [uri: [TextEdit(range: positions["1️⃣"]..<positions["3️⃣"], newText: #""Hello world""#)]]
),
command: nil
)
]
}
}
func testFormatRawStringLiteralFromInterpolation() async throws {
try await assertCodeActions(
##"""
let x = 1️⃣#"Hello 2️⃣\#(name)"#3️⃣
"""##,
ranges: [("1️⃣", "3️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Convert string literal to minimal number of \'#\'s",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: positions["1️⃣"]..<positions["3️⃣"],
newText: ##"""
##"Hello \#(name)"##
"""##
)
]
]
),
command: nil
)
]
}
}
func testFormatRawStringLiteralDoesNotShowUpWhenInvokedFromInsideInterpolationSegment() async throws {
try await assertCodeActions(
##"""
let x = #"Hello \#(n1️⃣ame)"#
"""##
) { uri, positions in
[]
}
}
func testMigrateIfLetSyntax() async throws {
try await assertCodeActions(
##"""
1️⃣if 2️⃣let 3️⃣foo = 4️⃣foo {}5️⃣
"""##,
markers: ["1️⃣", "2️⃣", "3️⃣", "4️⃣"],
ranges: [("1️⃣", "4️⃣"), ("1️⃣", "5️⃣")]
) { uri, positions in
[
CodeAction(
title: "Migrate to shorthand 'if let' syntax",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: positions["1️⃣"]..<positions["5️⃣"],
newText: "if let foo {}"
)
]
]
),
command: nil
)
]
}
}
func testMigrateIfLetSyntaxDoesNotShowUpWhenInvokedFromInsideTheBody() async throws {
try await assertCodeActions(
##"""
if let foo = foo 1️⃣{
2️⃣print(foo)
3️⃣}4️⃣
"""##
) { uri, positions in
[]
}
}
func testOpaqueParameterToGeneric() async throws {
try await assertCodeActions(
##"""
1️⃣func 2️⃣someFunction(_ 3️⃣input: some4️⃣ Value) {}5️⃣
"""##,
markers: ["1️⃣", "2️⃣", "3️⃣", "4️⃣"],
ranges: [("1️⃣", "2️⃣"), ("1️⃣", "5️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Expand 'some' parameters to generic parameters",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: positions["1️⃣"]..<positions["5️⃣"],
newText: "func someFunction<T1: Value>(_ input: T1) {}"
)
]
]
),
command: nil
)
]
}
}
func testOpaqueParameterToGenericIsNotShownFromTheBody() async throws {
try await assertCodeActions(
##"""
func someFunction(_ input: some Value) 1️⃣{
2️⃣print("x")
}3️⃣
"""##,
exhaustive: false
) { uri, positions in
[]
}
}
func testConvertJSONToCodable() async throws {
try await assertCodeActions(
##"""
1️⃣{
2️⃣"id": 3️⃣1,
"values": 4️⃣["foo", "bar"]
}5️⃣
"""##,
ranges: [("1️⃣", "5️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Create Codable structs from JSON",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: positions["1️⃣"]..<positions["5️⃣"],
newText: """
struct JSONValue: Codable {
var id: Double
var values: [String]
}
"""
)
]
]
),
command: nil
)
]
}
}
func testAddDocumentationRefactorNotAtStartOfFile() async throws {
try await assertCodeActions(
"""
struct Foo {
1️⃣func 2️⃣refactor(3️⃣syntax: 4️⃣Decl5️⃣Syntax)6️⃣ { }7️⃣
}
""",
ranges: [("1️⃣", "2️⃣"), ("1️⃣", "6️⃣"), ("1️⃣", "7️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Add documentation",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: Range(positions["1️⃣"]),
newText: """
/// A description
/// - Parameter syntax:
\("")
"""
)
]
]
),
command: nil
)
]
}
}
func testAddDocumentationRefactorAtStartOfFile() async throws {
try await assertCodeActions(
"""
1️⃣func 2️⃣refactor(3️⃣syntax: 4️⃣Decl5️⃣Syntax)6️⃣ { }7️⃣
""",
ranges: [("1️⃣", "2️⃣"), ("1️⃣", "6️⃣"), ("1️⃣", "7️⃣")],
exhaustive: false
) { uri, positions in
[
CodeAction(
title: "Add documentation",
kind: .refactorInline,
diagnostics: nil,
edit: WorkspaceEdit(
changes: [
uri: [
TextEdit(
range: Range(positions["1️⃣"]),
newText: """
/// A description
/// - Parameter syntax:
\("")
"""
)
]
]
),
command: nil
)
]
}
}
func testAddDocumentationDoesNotShowUpIfItIsNotOnItsOwnLine() async throws {
try await assertCodeActions(