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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 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 Dispatch
import SwiftParser
import SwiftParserDiagnostics
import SwiftSyntax
import XCTest
import _SwiftSyntaxTestSupport
class ParserTests: ParserTestCase {
/// Run a single parse test.
static func runParseTest(fileURL: URL, checkDiagnostics: Bool) throws {
let fileContents = try Data(contentsOf: fileURL)
let parsed = fileContents.withUnsafeBytes({ buffer in
// Release builds are fine with the default maximum nesting level of 256.
// Debug builds overflow with any stack size bigger than 20-ish.
Parser.parse(source: buffer.bindMemory(to: UInt8.self), maximumNestingLevel: 20)
})
assertDataEqualWithDiff(
Data(parsed.syntaxTextBytes),
fileContents,
additionalInfo: "Failed in file \(fileURL)"
)
if !checkDiagnostics {
return
}
let diagnostics = ParseDiagnosticsGenerator.diagnostics(for: parsed)
if !diagnostics.isEmpty {
var locationAndDiagnostics: [String] = []
let locationConverter = SourceLocationConverter(fileName: fileURL.lastPathComponent, tree: parsed)
for diag in diagnostics {
let location = diag.location(converter: locationConverter)
let message = diag.message
locationAndDiagnostics.append("\(location): \(message)")
}
XCTFail(
"""
Received the following diagnostics while parsing \(fileURL)
\(locationAndDiagnostics.joined(separator: "\n"))
"""
)
}
}
/// Run parser tests on all of the Swift files in the given path, recursively.
func runParserTests(
name: String,
path: URL,
checkDiagnostics: Bool,
shouldExclude: @Sendable (URL) -> Bool = { _ in false }
) {
// nonisolated(unsafe) because [URL] is not marked Sendable on Linux.
let fileURLs = FileManager.default
.enumerator(at: path, includingPropertiesForKeys: nil)!
.compactMap({ $0 as? URL })
.filter {
$0.pathExtension == "swift"
|| $0.pathExtension == "sil"
|| $0.pathExtension == "swiftinterface"
}
print("\(name) - processing \(fileURLs.count) source files")
DispatchQueue.concurrentPerform(iterations: fileURLs.count) { fileURLIndex in
let fileURL = fileURLs[fileURLIndex]
if shouldExclude(fileURL) {
return
}
do {
try Self.runParseTest(fileURL: fileURL, checkDiagnostics: checkDiagnostics)
} catch {
XCTFail("\(name): \(fileURL) failed due to \(error)")
}
}
}
let packageDir = URL(fileURLWithPath: #filePath)
.deletingLastPathComponent()
.deletingLastPathComponent()
.deletingLastPathComponent()
func testSelfParse() throws {
// Allow skipping the self parse test in local development environments
// because it takes very long compared to all the other tests.
try XCTSkipIf(longTestsDisabled)
let currentDir =
packageDir
.appendingPathComponent("Sources")
runParserTests(
name: "Self-parse tests",
path: currentDir,
checkDiagnostics: true
)
}
/// Test all of the files in the "test" directory of the main Swift compiler.
/// This requires the Swift compiler to have been checked out into the "swift"
/// directory alongside swift-syntax.
func testSwiftTestsuite() throws {
try XCTSkipIf(longTestsDisabled)
let testDir =
packageDir
.deletingLastPathComponent()
.appendingPathComponent("swift")
.appendingPathComponent("test")
runParserTests(
name: "Swift tests",
path: testDir,
checkDiagnostics: false
)
}
/// Test all of the files in the "validation-text" directory of the main
/// Swift compiler. This requires the Swift compiler to have been checked
/// out into the "swift" directory alongside swift-syntax.
func testSwiftValidationTestsuite() throws {
try XCTSkipIf(longTestsDisabled)
let testDir =
packageDir
.deletingLastPathComponent()
.appendingPathComponent("swift")
.appendingPathComponent("validation-test")
runParserTests(
name: "Swift validation tests",
path: testDir,
checkDiagnostics: false
)
}
}
|