Files
sourcekit-lsp/Tests/SourceKitLSPTests/ReferencesTests.swift
2025-10-31 14:11:11 -07:00

49 lines
1.5 KiB
Swift
Raw Permalink 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
//
//===----------------------------------------------------------------------===//
@_spi(SourceKitLSP) import LanguageServerProtocol
import SKLogging
import SKTestSupport
import XCTest
/// Tests that test the overall state of the SourceKit-LSP server, that's not really specific to any language
final class ReferencesTests: SourceKitLSPTestCase {
func testReferencesInMacro() async throws {
let project = try await IndexedSingleSwiftFileTestProject(
"""
import Observation
@available(macOS 14.0, *)
1⃣@Observable
class 2⃣Foo {
var x: Int = 2
}
"""
)
let response = try await project.testClient.send(
ReferencesRequest(
textDocument: TextDocumentIdentifier(project.fileURI),
position: project.positions["2"],
context: ReferencesContext(includeDeclaration: true)
)
)
XCTAssertEqual(
response,
[
Location(uri: project.fileURI, range: Range(project.positions["1"])),
Location(uri: project.fileURI, range: Range(project.positions["2"])),
]
)
}
}