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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
//===--------------- IntegrationTests.swift - Swift Integration Tests -----===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 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 XCTest
import TSCBasic
#if os(macOS)
internal func bundleRoot() throws -> AbsolutePath {
for bundle in Bundle.allBundles where bundle.bundlePath.hasSuffix(".xctest") {
return try AbsolutePath(validating: bundle.bundlePath).parentDirectory
}
fatalError()
}
private let packageDirectory = try! AbsolutePath(validating: #file).parentDirectory.parentDirectory.parentDirectory
// The "default" here means lit.py will be invoked as an executable, while otherwise let's use
// python 3 explicitly.
private let pythonExec = ProcessEnv.vars.keys.contains("SWIFT_DRIVER_INTEGRATION_TESTS_USE_PYTHON_DEFAULT") ? "" : "python3"
func makeDriverSymlinks(
in tempDir: AbsolutePath,
with swiftBuildDir: AbsolutePath? = nil
) throws -> (swift: AbsolutePath, swiftc: AbsolutePath) {
let binDir = try bundleRoot()
let driver = binDir.appending(component: "swift-driver")
let tempBinDir = tempDir.appending(components: "bin")
try makeDirectories(tempBinDir)
let swift = tempBinDir.appending(component: "swift")
try localFileSystem.createSymbolicLink(swift, pointingAt: driver, relative: false)
let swiftc = tempBinDir.appending(components: "swiftc")
try localFileSystem.createSymbolicLink(swiftc, pointingAt: driver, relative: false)
let swiftHelp = binDir.appending(component: "swift-help")
let swiftHelpSimlink = tempBinDir.appending(component: "swift-help")
try localFileSystem.createSymbolicLink(swiftHelpSimlink, pointingAt: swiftHelp, relative: false)
// If we've been given a build dir, link in its lib folder so we can find its
// resource directory.
if let swiftBuildDir = swiftBuildDir {
let libDir = swiftBuildDir.appending(component: "lib")
let tempLibDir = tempDir.appending(component: "lib" )
try localFileSystem.createSymbolicLink(tempLibDir, pointingAt: libDir, relative: false)
}
return (swift: swift, swiftc: swiftc)
}
func printCommand(args: [String], extraEnv: [String: String]) {
print("$", terminator: "")
if !extraEnv.isEmpty {
print(" env", terminator: "")
for (key, value) in extraEnv {
print(" \(key)=\(value.spm_shellEscaped())", terminator: "")
}
}
for arg in args {
print(" ", arg.spm_shellEscaped(), separator: "", terminator: "")
}
print()
}
#endif
final class IntegrationTests: IntegrationTestCase {
// FIXME: This is failing on CI right now.
func _testSelfHosting() throws {
#if os(macOS)
try withTemporaryDirectory() { path in
let (swift: _, swiftc: compiler) = try makeDriverSymlinks(in: path)
let buildPath = path.appending(component: "build")
let args = [
"swift", "build", "--package-path", packageDirectory.pathString,
"--scratch-path", buildPath.pathString
]
let extraEnv = [ "SWIFT_EXEC": compiler.pathString]
printCommand(args: args, extraEnv: extraEnv)
let result = try TSCBasic.Process.checkNonZeroExit(
arguments: args,
environment: ProcessEnv.vars.merging(extraEnv) { $1 }
)
XCTAssertTrue(localFileSystem.isExecutableFile(try AbsolutePath(validating: "debug/swift-driver", relativeTo: buildPath)), result)
}
#endif
}
// These next few tests run lit test suites from a Swift working copy using
// swift-driver in front of that working copy's Swift compiler. To enable
// these tests, you must:
//
// 1. Set SWIFT_DRIVER_ENABLE_INTEGRATION_TESTS, as instructed elsewhere.
//
// 2. Clone Swift and its dependencies and run build-script with your favorite
// command-line options.
//
// 3. Set SWIFT_DRIVER_LIT_DIR to the path to the directory containing the
// lit.site.cfg file to use, e.g. "/path/to/swiftdev/build/
// Ninja-RelWithDebInfoAssert/swift-macosx-x86_64/test-macosx-x86_64".
//
// 4. Open the console to see the results.
//
// If you don't set SWIFT_DRIVER_LIT_DIR, the tests will simply pass without
// doing anything. If you do set it to something nonexistent or incorrect,
// they will fail.
func testLitDriverTests() throws {
guard ProcessEnv.vars.keys.contains("SWIFT_DRIVER_ENABLE_FAILING_INTEGRATION_TESTS") else {
throw XCTSkip("Not all Driver tests supported")
}
try runLitTests(suite: "test", "Driver")
}
func testLitDriverValidationTests() throws {
guard ProcessEnv.vars.keys.contains("SWIFT_DRIVER_ENABLE_FAILING_INTEGRATION_TESTS") else {
throw XCTSkip("Not all Driver validation-tests supported")
}
try runLitTests(suite: "validation-test", "Driver")
}
func testLitInterpreterTests() throws {
guard ProcessEnv.vars.keys.contains("SWIFT_DRIVER_ENABLE_FAILING_INTEGRATION_TESTS") else {
throw XCTSkip("Interpreter tests unsupported")
}
try self.runLitTests(suite: "test", "Interpreter")
}
func testLitStdlibTests() throws {
guard ProcessEnv.vars.keys.contains("SWIFT_DRIVER_ENABLE_FAILING_INTEGRATION_TESTS") else {
throw XCTSkip("stdlib tests unsupported")
}
try self.runLitTests(suite: "test", "stdlib")
}
func testLitSymbolGraphFrontendTest() throws {
try runLitTests(suite: "test", "SymbolGraph", "EmitWhileBuilding.swift")
}
func runLitTests(suite: String...) throws {
#if os(macOS)
try withTemporaryDirectory() { tempDir in
guard
let litConfigPathString = ProcessEnv.vars["SWIFT_DRIVER_LIT_DIR"]
else {
print("Skipping lit tests because SWIFT_DRIVER_LIT_DIR is not set")
return
}
/// The root directory, where build/, llvm-project/, and swift/ live.
let swiftRootDir = packageDirectory.parentDirectory
// SWIFT_DRIVER_LIT_DIR may be relative or absolute. If it's
// relative, it's relative to the parent directory of the package. If
// you've cloned this package into a Swift compiler working directory,
// that means it'll be the directory with build/, llvm/, swift/, and
// swift-driver/ in it.
let litConfigDir = try AbsolutePath(
validating: litConfigPathString,
relativeTo: swiftRootDir
)
/// The site config file to use.
let litConfigFile = litConfigDir.appending(component: "lit.site.cfg")
/// The e.g. swift-macosx-x86_64 directory.
let swiftBuildDir = litConfigDir.parentDirectory
/// The path to the real frontend (swift) we should use.
let swiftFile = swiftBuildDir.appending(components: "bin", "swift")
/// The path to the real frontend (swift-frontend) we should use.
let frontendFile = swiftBuildDir.appending(components: "bin", "swift-frontend")
/// The path to lit.py.
let litFile = swiftRootDir.appending(components: "llvm-project", "llvm", "utils", "lit",
"lit.py")
/// The path to the test suite we want to run.
let testDir = suite.reduce(swiftRootDir.appending(component: "swift")) {
$0.appending(component: $1)
}
for path in [litFile, litConfigFile, swiftFile, frontendFile, testDir] {
guard localFileSystem.exists(path) else {
XCTFail("Lit tests enabled, but path doesn't exist: \(path)")
return
}
}
// Make dummy swift and swiftc files with an appropriately-positioned
// resource directory.
let (swift: swift, swiftc: swiftc) =
try makeDriverSymlinks(in: tempDir, with: swiftBuildDir)
let args = [
litFile.pathString, "-svi", "--time-tests",
"--param", "copy_env=SWIFT_DRIVER_SWIFT_EXEC",
"--param", "copy_env=SWIFT_DRIVER_SWIFT_FRONTEND_EXEC",
"--param", "swift_site_config=\(litConfigFile.pathString)",
"--param", "swift_driver",
testDir.pathString
]
let commandArgs = pythonExec.isEmpty ? args : [pythonExec] + args
let extraEnv = [
"SWIFT": swift.pathString,
"SWIFTC": swiftc.pathString,
"SWIFT_FORCE_TEST_NEW_DRIVER": "1",
"SWIFT_DRIVER_SWIFT_EXEC": swiftFile.pathString,
"SWIFT_DRIVER_SWIFT_FRONTEND_EXEC": frontendFile.pathString,
"LC_ALL": "en_US.UTF-8"
]
printCommand(args: commandArgs, extraEnv: extraEnv)
let process = TSCBasic.Process(
arguments: commandArgs,
environment: ProcessEnv.vars.merging(extraEnv) { $1 },
outputRedirection: .none
)
try process.launch()
let result = try process.waitUntilExit()
XCTAssertEqual(result.exitStatus, .terminated(code: EXIT_SUCCESS))
}
#endif
}
}
/// A helper class for optionally running integration tests.
open class IntegrationTestCase: XCTestCase {
#if os(macOS)
override open class var defaultTestSuite: XCTestSuite {
if ProcessEnv.vars.keys.contains("SWIFT_DRIVER_ENABLE_INTEGRATION_TESTS") {
return super.defaultTestSuite
}
return XCTestSuite(name: String(describing: type(of: self)))
}
#endif
}
|