mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
601 lines
26 KiB
Swift
601 lines
26 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2020 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 BuildServerIntegration
|
|
import Foundation
|
|
package import IndexStoreDB
|
|
@_spi(SourceKitLSP) import LanguageServerProtocol
|
|
@_spi(SourceKitLSP) import SKLogging
|
|
import SemanticIndex
|
|
import SwiftExtensions
|
|
@_spi(SourceKitLSP) import ToolsProtocolsSwiftExtensions
|
|
|
|
package enum TestStyle {
|
|
package static let xcTest = "XCTest"
|
|
package static let swiftTesting = "swift-testing"
|
|
}
|
|
|
|
fileprivate extension SymbolOccurrence {
|
|
/// Assuming that this is a symbol occurrence returned by the index, return whether it can constitute the definition
|
|
/// of a test case.
|
|
///
|
|
/// The primary intention for this is to filter out references to test cases and extension declarations of test cases.
|
|
/// The latter is important to filter so we don't include extension declarations for the derived `DiscoveredTests`
|
|
/// files on non-Darwin platforms.
|
|
var canBeTestDefinition: Bool {
|
|
guard roles.contains(.definition) else {
|
|
return false
|
|
}
|
|
guard symbol.kind == .class || symbol.kind == .instanceMethod else {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
}
|
|
|
|
/// Find the innermost range of a document symbol that contains the given position.
|
|
private func findInnermostSymbolRange(
|
|
containing position: Position,
|
|
documentSymbolsResponse: DocumentSymbolResponse
|
|
) -> Range<Position>? {
|
|
switch documentSymbolsResponse {
|
|
case .documentSymbols(let documentSymbols):
|
|
return findInnermostSymbolRange(containing: position, documentSymbols: documentSymbols)
|
|
case .symbolInformation(let symbolInformation):
|
|
return findInnermostSymbolRange(containing: position, symbolInformation: symbolInformation)
|
|
}
|
|
}
|
|
|
|
private func findInnermostSymbolRange(
|
|
containing position: Position,
|
|
documentSymbols: [DocumentSymbol]
|
|
) -> Range<Position>? {
|
|
for documentSymbol in documentSymbols where documentSymbol.range.contains(position) {
|
|
if let children = documentSymbol.children,
|
|
let rangeOfChild = findInnermostSymbolRange(
|
|
containing: position,
|
|
documentSymbolsResponse: .documentSymbols(children)
|
|
)
|
|
{
|
|
// If a child contains the position, prefer that because it's more specific.
|
|
return rangeOfChild
|
|
}
|
|
return documentSymbol.range
|
|
}
|
|
return nil
|
|
}
|
|
|
|
/// Return the smallest range in `symbolInformation` containing `position`.
|
|
private func findInnermostSymbolRange(
|
|
containing position: Position,
|
|
symbolInformation symbolInformationArray: [SymbolInformation]
|
|
) -> Range<Position>? {
|
|
var bestRange: Range<Position>? = nil
|
|
for symbolInformation in symbolInformationArray where symbolInformation.location.range.contains(position) {
|
|
let range = symbolInformation.location.range
|
|
if bestRange == nil || (bestRange!.lowerBound < range.lowerBound && range.upperBound < bestRange!.upperBound) {
|
|
bestRange = range
|
|
}
|
|
}
|
|
return bestRange
|
|
}
|
|
|
|
extension SourceKitLSPServer {
|
|
/// Converts a flat list of test symbol occurrences to a hierarchical `TestItem` array, inferring the hierarchical
|
|
/// structure from `childOf` relations between the symbol occurrences.
|
|
///
|
|
/// `resolvePositions` resolves the position of a test to a `Location` that is effectively a range. This allows us to
|
|
/// provide ranges for the test cases in source code instead of only the test's location that we get from the index.
|
|
private func testItems(
|
|
for testSymbolOccurrences: [SymbolOccurrence],
|
|
index: CheckedIndex?,
|
|
resolveLocation: (DocumentURI, Position) -> Location
|
|
) -> [AnnotatedTestItem] {
|
|
// Arrange tests by the USR they are contained in. This allows us to emit test methods as children of test classes.
|
|
// `occurrencesByParent[nil]` are the root test symbols that aren't a child of another test symbol.
|
|
var occurrencesByParent: [String?: [SymbolOccurrence]] = [:]
|
|
|
|
var testSymbolUsrs = Set(testSymbolOccurrences.map(\.symbol.usr))
|
|
|
|
// Gather any extension declarations that contains tests and add them to `occurrencesByParent` so we can properly
|
|
// arrange their test items as the extension's children.
|
|
for testSymbolOccurrence in testSymbolOccurrences {
|
|
for parentSymbol in testSymbolOccurrence.relations.filter({ $0.roles.contains(.childOf) }).map(\.symbol) {
|
|
guard parentSymbol.kind == .extension else {
|
|
continue
|
|
}
|
|
guard let definition = index?.primaryDefinitionOrDeclarationOccurrence(ofUSR: parentSymbol.usr) else {
|
|
logger.fault("Unable to find primary definition of extension '\(parentSymbol.usr)' containing tests")
|
|
continue
|
|
}
|
|
testSymbolUsrs.insert(parentSymbol.usr)
|
|
occurrencesByParent[nil, default: []].append(definition)
|
|
}
|
|
}
|
|
|
|
for testSymbolOccurrence in testSymbolOccurrences {
|
|
let childOfUsrs = testSymbolOccurrence.relations
|
|
.filter { $0.roles.contains(.childOf) }.map(\.symbol.usr).filter { testSymbolUsrs.contains($0) }
|
|
if childOfUsrs.count > 1 {
|
|
logger.fault(
|
|
"Test symbol \(testSymbolOccurrence.symbol.usr) is child or multiple symbols: \(childOfUsrs.joined(separator: ", "))"
|
|
)
|
|
}
|
|
occurrencesByParent[childOfUsrs.sorted().first, default: []].append(testSymbolOccurrence)
|
|
}
|
|
|
|
/// Returns a test item for the given `testSymbolOccurrence`.
|
|
///
|
|
/// Also includes test items for all tests that are children of this test.
|
|
///
|
|
/// `context` is used to build the test's ID. It is an array containing the names of all parent symbols. These will
|
|
/// be joined with the test symbol's name using `/` to form the test ID. The test ID can be used to run an
|
|
/// individual test.
|
|
func testItem(
|
|
for testSymbolOccurrence: SymbolOccurrence,
|
|
documentManager: DocumentManager,
|
|
context: [String]
|
|
) -> AnnotatedTestItem {
|
|
let symbolPosition: Position
|
|
if let snapshot = try? documentManager.latestSnapshot(
|
|
testSymbolOccurrence.location.documentUri
|
|
) {
|
|
symbolPosition = snapshot.position(of: testSymbolOccurrence.location)
|
|
} else {
|
|
// Technically, we always need to convert UTF-8 columns to UTF-16 columns, which requires reading the file.
|
|
// In practice, they are almost always the same.
|
|
// We chose to avoid hitting the file system even if it means that we might report an incorrect column.
|
|
symbolPosition = Position(
|
|
line: testSymbolOccurrence.location.line - 1, // 1-based -> 0-based
|
|
utf16index: testSymbolOccurrence.location.utf8Column - 1
|
|
)
|
|
}
|
|
let id = (context + [testSymbolOccurrence.symbol.name]).joined(separator: "/")
|
|
let location = resolveLocation(testSymbolOccurrence.location.documentUri, symbolPosition)
|
|
|
|
let children =
|
|
occurrencesByParent[testSymbolOccurrence.symbol.usr, default: []]
|
|
.sorted()
|
|
.map {
|
|
testItem(for: $0, documentManager: documentManager, context: context + [testSymbolOccurrence.symbol.name])
|
|
}
|
|
return AnnotatedTestItem(
|
|
testItem: TestItem(
|
|
id: id,
|
|
label: testSymbolOccurrence.symbol.name,
|
|
disabled: false,
|
|
style: TestStyle.xcTest,
|
|
location: location,
|
|
children: children.map(\.testItem),
|
|
tags: []
|
|
),
|
|
isExtension: testSymbolOccurrence.symbol.kind == .extension
|
|
)
|
|
}
|
|
|
|
let documentManager = self.documentManager
|
|
return occurrencesByParent[nil, default: []]
|
|
.sorted()
|
|
.map { testItem(for: $0, documentManager: documentManager, context: []) }
|
|
}
|
|
|
|
/// Return all the tests in the given workspace.
|
|
///
|
|
/// This merges tests from the semantic index, the syntactic index and in-memory file states.
|
|
///
|
|
/// The returned list of tests is not sorted. It should be sorted before being returned to the editor.
|
|
private func tests(in workspace: Workspace) async -> [AnnotatedTestItem] {
|
|
// If files have recently been added to the workspace (which is communicated by a `workspace/didChangeWatchedFiles`
|
|
// notification, wait these changes to be reflected in the build server so we can include the updated files in the
|
|
// tests.
|
|
await workspace.buildServerManager.waitForUpToDateBuildGraph()
|
|
|
|
// Gather all tests classes and test methods. We include test from different sources:
|
|
// - For all files that have been not been modified since they were last indexed in the semantic index, include
|
|
// XCTests from the semantic index.
|
|
// - For all files that have been modified since the last semantic index but that don't have any in-memory
|
|
// modifications (ie. modifications that the user has made in the editor but not saved), include XCTests from
|
|
// the syntactic test index
|
|
// - For all files that don't have any in-memory modifications, include swift-testing tests from the syntactic test
|
|
// index.
|
|
// - All files that have in-memory modifications are syntactically scanned for tests here.
|
|
let index = await workspace.index(checkedFor: .inMemoryModifiedFiles(documentManager))
|
|
|
|
// TODO: Remove this workaround once https://github.com/swiftlang/swift/issues/75600 is fixed
|
|
func documentManagerHasInMemoryModifications(_ uri: DocumentURI) -> Bool {
|
|
return documentManager.fileHasInMemoryModifications(uri)
|
|
}
|
|
|
|
let snapshotsWithInMemoryState = documentManager.openDocuments.filter { uri in
|
|
// Use the index to check for in-memory modifications so we can re-use its cache. If no index exits, ask the
|
|
// document manager directly.
|
|
if let index {
|
|
return index.fileHasInMemoryModifications(uri)
|
|
} else {
|
|
return documentManagerHasInMemoryModifications(uri)
|
|
}
|
|
}.compactMap { uri in
|
|
orLog("Getting snapshot of open document") {
|
|
try documentManager.latestSnapshot(uri)
|
|
}
|
|
}
|
|
|
|
let testsFromFilesWithInMemoryState = await snapshotsWithInMemoryState.concurrentMap {
|
|
(snapshot) -> [AnnotatedTestItem] in
|
|
// When secondary language services can provide tests, we need to query them for tests as well. For now there is
|
|
// too much overhead associated with calling `documentTestsWithoutMergingExtensions` for language services that
|
|
// don't have any test discovery functionality.
|
|
return await orLog("Getting document tests for \(snapshot.uri)") {
|
|
try await self.documentTestsWithoutMergingExtensions(
|
|
DocumentTestsRequest(textDocument: TextDocumentIdentifier(snapshot.uri)),
|
|
workspace: workspace,
|
|
languageService: self.primaryLanguageService(for: snapshot.uri, snapshot.language, in: workspace)
|
|
)
|
|
} ?? []
|
|
}.flatMap { $0 }
|
|
|
|
let semanticTestSymbolOccurrences = index?.unitTests().filter { return $0.canBeTestDefinition } ?? []
|
|
|
|
let testsFromSyntacticIndex = await workspace.syntacticIndex.tests()
|
|
let testsFromSemanticIndex = testItems(
|
|
for: semanticTestSymbolOccurrences,
|
|
index: index,
|
|
resolveLocation: { uri, position in Location(uri: uri, range: Range(position)) }
|
|
)
|
|
let filesWithTestsFromSemanticIndex = Set(testsFromSemanticIndex.map(\.testItem.location.uri))
|
|
|
|
let indexOnlyDiscardingDeletedFiles = await workspace.index(checkedFor: .deletedFiles)
|
|
|
|
let syntacticTestsToInclude =
|
|
testsFromSyntacticIndex
|
|
.compactMap { (item) -> AnnotatedTestItem? in
|
|
let testItem = item.testItem
|
|
if testItem.style == TestStyle.swiftTesting {
|
|
// Swift-testing tests aren't part of the semantic index. Always include them.
|
|
return item
|
|
}
|
|
if filesWithTestsFromSemanticIndex.contains(testItem.location.uri) {
|
|
// If we have an semantic tests from this file, then the semantic index is up-to-date for this file. We thus
|
|
// don't need to include results from the syntactic index.
|
|
return nil
|
|
}
|
|
if snapshotsWithInMemoryState.contains(where: { $0.uri == testItem.location.uri }) {
|
|
// If the file has been modified in the editor, the syntactic index (which indexes on-disk files) is no longer
|
|
// up-to-date. Include the tests from `testsFromFilesWithInMemoryState`.
|
|
return nil
|
|
}
|
|
if index?.hasAnyUpToDateUnit(for: testItem.location.uri) ?? false {
|
|
// We don't have a test for this file in the semantic index but an up-to-date unit file. This means that the
|
|
// index is up-to-date and has more knowledge that identifies a `TestItem` as not actually being a test, eg.
|
|
// because it starts with `test` but doesn't appear in a class inheriting from `XCTestCase`.
|
|
return nil
|
|
}
|
|
// Filter out any test items that we know aren't actually tests based on the semantic index.
|
|
// This might call `symbols(inFilePath:)` multiple times if there are multiple top-level test items (ie.
|
|
// XCTestCase subclasses, swift-testing handled above) for the same file. In practice test files usually contain
|
|
// a single XCTestCase subclass, so caching doesn't make sense here.
|
|
// Also, this is only called for files containing test cases but for which the semantic index is out-of-date.
|
|
if let filtered = testItem.filterUsing(
|
|
semanticSymbols: indexOnlyDiscardingDeletedFiles?.symbols(inFilePath: testItem.location.uri.pseudoPath)
|
|
) {
|
|
return AnnotatedTestItem(testItem: filtered, isExtension: item.isExtension)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// We don't need to sort the tests here because they will get sorted by `workspaceTests` request handler
|
|
return testsFromSemanticIndex + syntacticTestsToInclude + testsFromFilesWithInMemoryState
|
|
}
|
|
|
|
func workspaceTests(_ req: WorkspaceTestsRequest) async throws -> [TestItem] {
|
|
return await self.workspaces
|
|
.concurrentMap { await self.tests(in: $0).prefixTestsWithModuleName(workspace: $0) }
|
|
.flatMap { $0 }
|
|
.sorted { $0.testItem.location < $1.testItem.location }
|
|
.mergingTestsInExtensions()
|
|
.deduplicatingIds()
|
|
}
|
|
|
|
func documentTests(
|
|
_ req: DocumentTestsRequest,
|
|
workspace: Workspace,
|
|
languageService: any LanguageService
|
|
) async throws -> [TestItem] {
|
|
return try await documentTestsWithoutMergingExtensions(req, workspace: workspace, languageService: languageService)
|
|
.prefixTestsWithModuleName(workspace: workspace)
|
|
.mergingTestsInExtensions()
|
|
.deduplicatingIds()
|
|
}
|
|
|
|
private func documentTestsWithoutMergingExtensions(
|
|
_ req: DocumentTestsRequest,
|
|
workspace: Workspace,
|
|
languageService: any LanguageService
|
|
) async throws -> [AnnotatedTestItem] {
|
|
let snapshot = try self.documentManager.latestSnapshot(req.textDocument.uri)
|
|
let mainFileUri = await workspace.buildServerManager.mainFile(
|
|
for: req.textDocument.uri,
|
|
language: snapshot.language
|
|
)
|
|
|
|
let syntacticTests = try await languageService.syntacticDocumentTests(for: req.textDocument.uri, in: workspace)
|
|
|
|
// We `syntacticDocumentTests` returns `nil`, it indicates that it doesn't support syntactic test discovery.
|
|
// In that case, the semantic index is the only source of tests we have and we thus want to show tests from the
|
|
// semantic index, even if they are out-of-date. The alternative would be showing now tests after an edit to a file.
|
|
let indexCheckLevel: IndexCheckLevel =
|
|
syntacticTests == nil ? .deletedFiles : .inMemoryModifiedFiles(documentManager)
|
|
|
|
if let index = await workspace.index(checkedFor: indexCheckLevel) {
|
|
var syntacticSwiftTestingTests: [AnnotatedTestItem] {
|
|
syntacticTests?.filter { $0.testItem.style == TestStyle.swiftTesting } ?? []
|
|
}
|
|
|
|
let testSymbols =
|
|
index.unitTests(referencedByMainFiles: [mainFileUri.pseudoPath])
|
|
.filter { $0.canBeTestDefinition }
|
|
|
|
if !testSymbols.isEmpty {
|
|
let documentSymbols = await orLog("Getting document symbols for test ranges") {
|
|
try await languageService.documentSymbol(DocumentSymbolRequest(textDocument: req.textDocument))
|
|
}
|
|
|
|
// We have test symbols from the semantic index. Return them but also include the syntactically discovered
|
|
// swift-testing tests, which aren't part of the semantic index.
|
|
return testItems(
|
|
for: testSymbols,
|
|
index: index,
|
|
resolveLocation: { uri, position in
|
|
if uri == snapshot.uri, let documentSymbols,
|
|
let range = findInnermostSymbolRange(containing: position, documentSymbolsResponse: documentSymbols)
|
|
{
|
|
return Location(uri: uri, range: range)
|
|
}
|
|
return Location(uri: uri, range: Range(position))
|
|
}
|
|
) + syntacticSwiftTestingTests
|
|
}
|
|
if index.hasAnyUpToDateUnit(for: mainFileUri) {
|
|
// The semantic index is up-to-date and doesn't contain any tests. We don't need to do a syntactic fallback for
|
|
// XCTest. We do still need to return swift-testing tests which don't have a semantic index.
|
|
return syntacticSwiftTestingTests
|
|
}
|
|
}
|
|
// We don't have any up-to-date semantic index entries for this file. Syntactically look for tests.
|
|
return syntacticTests ?? []
|
|
}
|
|
}
|
|
|
|
extension TestItem {
|
|
/// Use out-of-date semantic information to filter syntactic symbols.
|
|
///
|
|
/// If the syntactic index found a test item, check if the semantic index knows about a symbol with that name. If it
|
|
/// does and that item is not marked as a test symbol, we can reasonably assume that this item still looks like a test
|
|
/// but is semantically known to not be a test. It will thus get filtered out.
|
|
///
|
|
/// `semanticSymbols` should be all the symbols in the source file that this `TestItem` occurs in, retrieved using
|
|
/// `symbols(inFilePath:)` from the index.
|
|
fileprivate func filterUsing(semanticSymbols: [Symbol]?) -> TestItem? {
|
|
guard let semanticSymbols else {
|
|
return self
|
|
}
|
|
// We only check if we know of any symbol with the test item's name in this file. We could try to incorporate
|
|
// structure here (ie. look for a method within a class) but that makes the index lookup more difficult and in
|
|
// practice it is very unlikely that a test file will have two symbols with the same name, one of which is marked
|
|
// as a unit test while the other one is not.
|
|
let semanticSymbolsWithName = semanticSymbols.filter { $0.name == self.label }
|
|
if !semanticSymbolsWithName.isEmpty,
|
|
semanticSymbolsWithName.allSatisfy({ !$0.properties.contains(.unitTest) })
|
|
{
|
|
return nil
|
|
}
|
|
var test = self
|
|
test.children = test.children.compactMap { $0.filterUsing(semanticSymbols: semanticSymbols) }
|
|
return test
|
|
}
|
|
}
|
|
|
|
extension AnnotatedTestItem {
|
|
/// Use out-of-date semantic information to filter syntactic symbols.
|
|
///
|
|
/// Delegates to the `TestItem`'s `filterUsing(semanticSymbols:)` method to perform the filtering.
|
|
package func filterUsing(semanticSymbols: [Symbol]?) -> AnnotatedTestItem? {
|
|
guard let testItem = self.testItem.filterUsing(semanticSymbols: semanticSymbols) else {
|
|
return nil
|
|
}
|
|
var test = self
|
|
test.testItem = testItem
|
|
return test
|
|
}
|
|
}
|
|
|
|
fileprivate extension [AnnotatedTestItem] {
|
|
/// When the test scanners discover tests in extensions they are captured in their own parent `TestItem`, not the
|
|
/// `TestItem` generated from the class/struct's definition. This is largely because of the syntatic nature of the
|
|
/// test scanners as they are today, which only know about tests within the context of the current file. Extensions
|
|
/// defined in separate files must be organized in their own `TestItem` since at the time of their creation there
|
|
/// isn't enough information to connect them back to the tests defined in the main type definition.
|
|
///
|
|
/// This is a more syntatic than semantic view of the `TestItem` hierarchy than the end user likely wants.
|
|
/// If we think of the enclosing class or struct as the test suite, then extensions on that class or struct should be
|
|
/// additions to that suite, just like extensions on types are, from the user's perspective, transparently added to
|
|
/// their type.
|
|
///
|
|
/// This method walks the `AnnotatedTestItem` tree produced by the test scanners and merges in the tests defined in
|
|
/// extensions into the final `TestItem`s that represent the type definition.
|
|
///
|
|
/// This causes extensions to be merged into their type's definition if the type's definition exists in the list of
|
|
/// test items. If the type's definition is not a test item in this collection, the first extension of that type will
|
|
/// be used as the primary test location.
|
|
///
|
|
/// For example if there are two files
|
|
///
|
|
/// FileA.swift
|
|
/// ```swift
|
|
/// @Suite struct MyTests {
|
|
/// @Test func oneIsTwo {}
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// FileB.swift
|
|
/// ```swift
|
|
/// extension MyTests {
|
|
/// @Test func twoIsThree() {}
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// Then `workspace/tests` will return
|
|
/// - `MyTests` (FileA.swift:1)
|
|
/// - `oneIsTwo`
|
|
/// - `twoIsThree`
|
|
///
|
|
/// And `textDocument/tests` for FileB.swift will return
|
|
/// - `MyTests` (FileB.swift:1)
|
|
/// - `twoIsThree`
|
|
///
|
|
/// A node's parent is identified by the node's ID with the last component dropped.
|
|
func mergingTestsInExtensions() -> [TestItem] {
|
|
var itemDict: [String: AnnotatedTestItem] = [:]
|
|
for item in self {
|
|
let id = item.testItem.id
|
|
if var rootItem = itemDict[id] {
|
|
// If we've encountered an extension first, and this is the
|
|
// type declaration, then use the type declaration TestItem
|
|
// as the root item.
|
|
if rootItem.isExtension && !item.isExtension {
|
|
var newItem = item
|
|
newItem.testItem.children += rootItem.testItem.children
|
|
rootItem = newItem
|
|
} else {
|
|
rootItem.testItem.children += item.testItem.children
|
|
}
|
|
|
|
// If this item shares an ID with a sibling and both are leaf
|
|
// test items, store it by its disambiguated id to ensure we
|
|
// don't overwrite the existing element.
|
|
if rootItem.testItem.children.isEmpty && item.testItem.children.isEmpty {
|
|
itemDict[item.testItem.ambiguousTestDifferentiator] = item
|
|
} else {
|
|
itemDict[id] = rootItem
|
|
}
|
|
} else {
|
|
itemDict[id] = item
|
|
}
|
|
}
|
|
|
|
if itemDict.isEmpty {
|
|
return []
|
|
}
|
|
|
|
var mergedIds = Set<String>()
|
|
for item in self {
|
|
let id = item.testItem.id
|
|
let parentID = id.components(separatedBy: "/").dropLast().joined(separator: "/")
|
|
// If the parent exists, add the current item to its children and remove it from the root
|
|
if var parent = itemDict[parentID] {
|
|
parent.testItem.children.append(item.testItem)
|
|
mergedIds.insert(parent.testItem.id)
|
|
itemDict[parent.testItem.id] = parent
|
|
itemDict[id] = nil
|
|
}
|
|
}
|
|
|
|
// Sort the tests by location, prioritizing TestItems not in extensions.
|
|
let sortedItems = itemDict.values
|
|
.sorted { ($0.isExtension != $1.isExtension) ? !$0.isExtension : ($0.testItem.location < $1.testItem.location) }
|
|
|
|
let result = sortedItems.map {
|
|
guard !$0.testItem.children.isEmpty, mergedIds.contains($0.testItem.id) else {
|
|
return $0.testItem
|
|
}
|
|
var newItem = $0.testItem
|
|
newItem.children = newItem.children
|
|
.map { AnnotatedTestItem(testItem: $0, isExtension: false) }
|
|
.mergingTestsInExtensions()
|
|
return newItem
|
|
}
|
|
return result
|
|
}
|
|
|
|
func prefixTestsWithModuleName(workspace: Workspace) async -> Self {
|
|
return await self.asyncMap({
|
|
return AnnotatedTestItem(
|
|
testItem: await $0.testItem.prefixIDWithModuleName(workspace: workspace),
|
|
isExtension: $0.isExtension
|
|
)
|
|
})
|
|
}
|
|
}
|
|
|
|
fileprivate extension [TestItem] {
|
|
/// If multiple testItems share the same ID we add more context to make it unique.
|
|
/// Two tests can share the same ID when two swift testing tests accept
|
|
/// arguments of different types, i.e:
|
|
/// ```
|
|
/// @Test(arguments: [1,2,3]) func foo(_ x: Int) {}
|
|
/// @Test(arguments: ["a", "b", "c"]) func foo(_ x: String) {}
|
|
/// ```
|
|
///
|
|
/// or when tests are in separate files but don't conflict because they are marked
|
|
/// private, i.e:
|
|
/// ```
|
|
/// File1.swift: @Test private func foo() {}
|
|
/// File2.swift: @Test private func foo() {}
|
|
/// ```
|
|
///
|
|
/// If we encounter one of these cases, we need to deduplicate the ID
|
|
/// by appending `/filename:filename:lineNumber`.
|
|
func deduplicatingIds() -> [TestItem] {
|
|
var idCounts: [String: Int] = [:]
|
|
for element in self where element.children.isEmpty {
|
|
idCounts[element.id, default: 0] += 1
|
|
}
|
|
|
|
return self.map {
|
|
var newItem = $0
|
|
newItem.children = newItem.children.deduplicatingIds()
|
|
if idCounts[newItem.id, default: 0] > 1 {
|
|
newItem.id = newItem.ambiguousTestDifferentiator
|
|
}
|
|
return newItem
|
|
}
|
|
}
|
|
}
|
|
|
|
extension TestItem {
|
|
/// A fully qualified name to disambiguate identical TestItem IDs.
|
|
/// This matches the IDs produced by `swift test list` when there are
|
|
/// tests that cannot be disambiguated by their simple ID.
|
|
fileprivate var ambiguousTestDifferentiator: String {
|
|
let filename = self.location.uri.arbitrarySchemeURL.lastPathComponent
|
|
let position = location.range.lowerBound
|
|
// Lines and columns start at 1.
|
|
// swift-testing tests start from _after_ the @ symbol in @Test, so we need to add an extra column.
|
|
// see https://github.com/swiftlang/swift-testing/blob/cca6de2be617aded98ecdecb0b3b3a81eec013f3/Sources/TestingMacros/Support/AttributeDiscovery.swift#L153
|
|
let columnOffset = self.style == TestStyle.swiftTesting ? 2 : 1
|
|
return "\(self.id)/\(filename):\(position.line + 1):\(position.utf16index + columnOffset)"
|
|
}
|
|
|
|
fileprivate func prefixIDWithModuleName(workspace: Workspace) async -> TestItem {
|
|
guard let canonicalTarget = await workspace.buildServerManager.canonicalTarget(for: self.location.uri),
|
|
let moduleName = await workspace.buildServerManager.moduleName(for: self.location.uri, in: canonicalTarget)
|
|
else {
|
|
return self
|
|
}
|
|
|
|
var newTest = self
|
|
newTest.id = "\(moduleName).\(newTest.id)"
|
|
newTest.children = await newTest.children.asyncMap({ await $0.prefixIDWithModuleName(workspace: workspace) })
|
|
return newTest
|
|
}
|
|
}
|