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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2021 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 XCTest
final class PublishDiagnosticsTests: XCTestCase {
func testUnknownIdentifierDiagnostic() async throws {
let testClient = try await TestSourceKitLSPClient(usePullDiagnostics: false)
let uri = DocumentURI(for: .swift)
testClient.openDocument(
"""
func foo() {
invalid
}
""",
uri: uri
)
let diags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(diags.diagnostics.count, 1)
XCTAssertEqual(
diags.diagnostics.first?.range,
Position(line: 1, utf16index: 2)..<Position(line: 1, utf16index: 9)
)
}
func testRangeShiftAfterNewlineAdded() async throws {
let testClient = try await TestSourceKitLSPClient(usePullDiagnostics: false)
let uri = DocumentURI(for: .swift)
testClient.openDocument(
"""
func foo() {
invalid
}
""",
uri: uri
)
let openDiags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(openDiags.diagnostics.count, 1)
XCTAssertEqual(
openDiags.diagnostics.first?.range,
Position(line: 1, utf16index: 2)..<Position(line: 1, utf16index: 9)
)
testClient.send(
DidChangeTextDocumentNotification(
textDocument: VersionedTextDocumentIdentifier(uri, version: 2),
contentChanges: [
TextDocumentContentChangeEvent(
range: Position(line: 0, utf16index: 0)..<Position(line: 0, utf16index: 0),
rangeLength: 0,
text: "\n"
)
]
)
)
let editDiags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(editDiags.diagnostics.count, 1)
XCTAssertEqual(
editDiags.diagnostics.first?.range,
Position(line: 2, utf16index: 2)..<Position(line: 2, utf16index: 9)
)
}
func testRangeShiftAfterNewlineRemoved() async throws {
let testClient = try await TestSourceKitLSPClient(usePullDiagnostics: false)
let uri = DocumentURI(for: .swift)
testClient.openDocument(
"""
func foo() {
invalid
}
""",
uri: uri
)
let openDiags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(openDiags.diagnostics.count, 1)
XCTAssertEqual(
openDiags.diagnostics.first?.range,
Position(line: 2, utf16index: 2)..<Position(line: 2, utf16index: 9)
)
testClient.send(
DidChangeTextDocumentNotification(
textDocument: VersionedTextDocumentIdentifier(uri, version: 2),
contentChanges: [
TextDocumentContentChangeEvent(
range: Position(line: 0, utf16index: 0)..<Position(line: 1, utf16index: 0),
rangeLength: 1,
text: ""
)
]
)
)
let editDiags = try await testClient.nextDiagnosticsNotification()
XCTAssertEqual(editDiags.diagnostics.count, 1)
XCTAssertEqual(
editDiags.diagnostics.first?.range,
Position(line: 1, utf16index: 2)..<Position(line: 1, utf16index: 9)
)
}
func testDiagnosticUpdatedAfterFilesInSameModuleAreUpdated() async throws {
try SkipUnless.longTestsEnabled()
let project = try await SwiftPMTestProject(
files: [
"FileA.swift": "",
"FileB.swift": """
func test() {
sayHello()
}
""",
],
usePullDiagnostics: false
)
_ = try project.openDocument("FileB.swift")
let diagnosticsBeforeChangingFileA = try await project.testClient.nextDiagnosticsNotification()
XCTAssert(
diagnosticsBeforeChangingFileA.diagnostics.contains(where: { $0.message == "Cannot find 'sayHello' in scope" })
)
let updatedACode = "func sayHello() {}"
let aUri = try project.uri(for: "FileA.swift")
try updatedACode.write(to: try XCTUnwrap(aUri.fileURL), atomically: true, encoding: .utf8)
project.testClient.send(
DidChangeWatchedFilesNotification(changes: [FileEvent(uri: aUri, type: .changed)])
)
let diagnosticsAfterChangingFileA = try await project.testClient.nextDiagnosticsNotification()
XCTAssertEqual(diagnosticsAfterChangingFileA.diagnostics, [])
}
func testDiagnosticUpdatedAfterDependentModuleIsBuilt() async throws {
try SkipUnless.longTestsEnabled()
let project = try await SwiftPMTestProject(
files: [
"LibA/LibA.swift": """
public func 1️⃣sayHello() {}
""",
"LibB/LibB.swift": """
import LibA
func test() {
2️⃣sayHello()
}
""",
],
manifest: """
let package = Package(
name: "MyLibrary",
targets: [
.target(name: "LibA"),
.target(name: "LibB", dependencies: ["LibA"]),
]
)
""",
usePullDiagnostics: false
)
_ = try project.openDocument("LibB.swift")
let diagnosticsBeforeBuilding = try await project.testClient.nextDiagnosticsNotification()
XCTAssert(
diagnosticsBeforeBuilding.diagnostics.contains(where: {
#if compiler(>=6.1)
#warning("When we drop support for Swift 5.10 we no longer need to check for the Objective-C error message")
#endif
return $0.message == "No such module 'LibA'" || $0.message == "Could not build Objective-C module 'LibA'"
})
)
try await SwiftPMTestProject.build(at: project.scratchDirectory)
project.testClient.send(
DidChangeWatchedFilesNotification(
changes:
FileManager.default.findFiles(withExtension: "swiftmodule", in: project.scratchDirectory).map {
FileEvent(uri: DocumentURI($0), type: .created)
}
)
)
let diagnosticsAfterBuilding = try await project.testClient.nextDiagnosticsNotification()
XCTAssertEqual(diagnosticsAfterBuilding.diagnostics, [])
}
}
|