Files
sourcekit-lsp/Tests/BuildSystemIntegrationTests/FallbackBuildSettingsTests.swift
Alex Hoppen 9496b49c72 Add an experimental request to return the build settings that SourceKit-LSP uses to process a file
This can be useful to IDEs that want to perform some additional semantic processing of source files, which requires knowledge of a file’s build settings.
2025-02-26 09:12:47 -08:00

208 lines
6.8 KiB
Swift
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 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 BuildServerProtocol
@_spi(Testing) import BuildSystemIntegration
import LanguageServerProtocol
import SKOptions
import SKTestSupport
import SourceKitLSP
import TSCBasic
import XCTest
final class FallbackBuildSystemTests: XCTestCase {
func testSwift() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.swift", isDirectory: false)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .swift, options: .init(sdk: sdk)),
FileBuildSettings(
compilerArguments: ["-sdk", sdk, source.pseudoPath],
workingDirectory: nil,
language: .swift,
isFallback: true
)
)
}
func testSwiftWithCustomFlags() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.swift", isDirectory: false)
let options = SourceKitLSPOptions.FallbackBuildSystemOptions(
swiftCompilerFlags: [
"-Xfrontend",
"-debug-constraints",
],
sdk: sdk
)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .swift, options: options)?.compilerArguments,
["-Xfrontend", "-debug-constraints", "-sdk", sdk, source.pseudoPath]
)
}
func testSwiftWithCustomSDKFlag() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.swift", isDirectory: false)
let options = SourceKitLSPOptions.FallbackBuildSystemOptions(
swiftCompilerFlags: ["-sdk", "/some/custom/sdk", "-Xfrontend", "-debug-constraints"],
sdk: sdk
)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .swift, options: options)?.compilerArguments,
["-sdk", "/some/custom/sdk", "-Xfrontend", "-debug-constraints", source.pseudoPath]
)
}
func testCXX() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.cpp", isDirectory: false)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .cpp, options: .init(sdk: sdk)),
FileBuildSettings(
compilerArguments: ["-isysroot", sdk, source.pseudoPath],
workingDirectory: nil,
language: .cpp,
isFallback: true
)
)
}
func testCXXWithCustomFlags() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.cpp", isDirectory: false)
let options = SourceKitLSPOptions.FallbackBuildSystemOptions(
cxxCompilerFlags: ["-v"],
sdk: sdk
)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .cpp, options: options)?.compilerArguments,
["-v", "-isysroot", sdk, source.pseudoPath]
)
}
func testCXXWithCustomIsysroot() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.cpp", isDirectory: false)
let options = SourceKitLSPOptions.FallbackBuildSystemOptions(
cxxCompilerFlags: [
"-isysroot",
"/my/custom/sdk",
"-v",
],
sdk: sdk
)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .cpp, options: options)?.compilerArguments,
["-isysroot", "/my/custom/sdk", "-v", source.pseudoPath]
)
}
func testC() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.c", isDirectory: false)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .c, options: .init(sdk: sdk))?.compilerArguments,
["-isysroot", sdk, source.pseudoPath]
)
}
func testCWithCustomFlags() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.c", isDirectory: false)
let options = SourceKitLSPOptions.FallbackBuildSystemOptions(
cCompilerFlags: ["-v"],
sdk: sdk
)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .c, options: options)?.compilerArguments,
["-v", "-isysroot", sdk, source.pseudoPath]
)
}
func testObjC() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.m", isDirectory: false)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .objective_c, options: .init(sdk: sdk))?.compilerArguments,
["-isysroot", sdk, source.pseudoPath]
)
}
func testObjCXX() throws {
let sdk = try AbsolutePath(validating: "/my/sdk").pathString
let source = DocumentURI(filePath: "/my/source.mm", isDirectory: false)
XCTAssertEqual(
fallbackBuildSettings(for: source, language: .objective_cpp, options: .init(sdk: sdk))?.compilerArguments,
["-isysroot", sdk, source.pseudoPath]
)
}
func testUnknown() throws {
let source = DocumentURI(filePath: "/my/source.mm", isDirectory: false)
XCTAssertNil(fallbackBuildSettings(for: source, language: Language(rawValue: "unknown"), options: .init()))
}
func testFallbackBuildSettingsWhileBuildSystemIsComputingBuildSettings() async throws {
let fallbackResultsReceived = WrappedSemaphore(name: "Fallback results received")
let project = try await SwiftPMTestProject(
files: [
"Test.swift": """
let x: 1⃣String2⃣ = 1
"""
],
hooks: Hooks(
buildSystemHooks: BuildSystemHooks(
preHandleRequest: { request in
if request is TextDocumentSourceKitOptionsRequest {
fallbackResultsReceived.waitOrXCTFail()
}
}
)
)
)
let (uri, positions) = try project.openDocument("Test.swift")
let documentHighlight = try await project.testClient.send(
DocumentHighlightRequest(textDocument: TextDocumentIdentifier(uri), position: positions["1"])
)
XCTAssertEqual(documentHighlight, [DocumentHighlight(range: positions["1"]..<positions["2"], kind: .read)])
fallbackResultsReceived.signal()
try await repeatUntilExpectedResult {
let diagsAfterBuildSettings = try await project.testClient.send(
DocumentDiagnosticsRequest(textDocument: TextDocumentIdentifier(uri))
)
return diagsAfterBuildSettings.fullReport?.items.map(\.message) == [
"Cannot convert value of type 'Int' to specified type 'String'"
]
}
}
}