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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import struct Basics.AbsolutePath
import class Basics.ObservabilitySystem
import class Build.BuildPlan
import class Build.ProductBuildDescription
import enum Build.ModuleBuildDescription
import class Build.SwiftModuleBuildDescription
import struct Basics.Triple
import enum PackageGraph.BuildTriple
import class PackageModel.Manifest
import struct PackageModel.TargetDescription
import enum PackageModel.ProductType
import struct SPMBuildCore.BuildParameters
import func SPMTestSupport.loadPackageGraph
@_spi(SwiftPMInternal)
import func SPMTestSupport.embeddedCxxInteropPackageGraph
@_spi(SwiftPMInternal)
import func SPMTestSupport.macrosPackageGraph
import func SPMTestSupport.macrosTestsPackageGraph
import func SPMTestSupport.mockBuildParameters
import func SPMTestSupport.mockBuildPlan
import func SPMTestSupport.toolsExplicitLibrariesGraph
import func SPMTestSupport.trivialPackageGraph
import struct SPMTestSupport.BuildPlanResult
import func SPMTestSupport.XCTAssertMatch
import func SPMTestSupport.XCTAssertNoDiagnostics
import class TSCBasic.InMemoryFileSystem
import XCTest
final class CrossCompilationBuildPlanTests: XCTestCase {
func testEmbeddedWasmTarget() throws {
var (graph, fs, observabilityScope) = try trivialPackageGraph()
let triple = try Triple("wasm32-unknown-none-wasm")
let linkingParameters = BuildParameters.Linking(
shouldLinkStaticSwiftStdlib: true
)
var result = try BuildPlanResult(plan: mockBuildPlan(
triple: triple,
graph: graph,
linkingParameters: linkingParameters,
fileSystem: fs,
observabilityScope: observabilityScope
))
result.checkProductsCount(2)
// There are two additional modules on non-Apple platforms, for test discovery and
// test entry point
result.checkTargetsCount(5)
let buildPath = result.plan.productsBuildPath
var appBuildDescription = try result.buildProduct(for: "app")
XCTAssertEqual(
try appBuildDescription.linkArguments(),
[
result.plan.destinationBuildParameters.toolchain.swiftCompilerPath.pathString,
"-L", buildPath.pathString,
"-o", buildPath.appending(components: "app.wasm").pathString,
"-module-name", "app", "-static-stdlib", "-emit-executable",
"@\(buildPath.appending(components: "app.product", "Objects.LinkFileList"))",
"-target", triple.tripleString,
"-g",
]
)
(graph, fs, observabilityScope) = try embeddedCxxInteropPackageGraph()
result = try BuildPlanResult(plan: mockBuildPlan(
triple: triple,
graph: graph,
linkingParameters: linkingParameters,
fileSystem: fs,
observabilityScope: observabilityScope
))
result.checkProductsCount(2)
// There are two additional modules on non-Apple platforms, for test discovery and
// test entry point
result.checkTargetsCount(5)
appBuildDescription = try result.buildProduct(for: "app")
XCTAssertEqual(
try appBuildDescription.linkArguments(),
[
result.plan.destinationBuildParameters.toolchain.swiftCompilerPath.pathString,
"-L", buildPath.pathString,
"-o", buildPath.appending(components: "app.wasm").pathString,
"-module-name", "app", "-static-stdlib", "-emit-executable",
"@\(buildPath.appending(components: "app.product", "Objects.LinkFileList"))",
"-enable-experimental-feature", "Embedded",
"-target", triple.tripleString,
"-g",
]
)
}
func testWasmTargetRelease() throws {
let (graph, fs, observabilityScope) = try trivialPackageGraph()
let result = try BuildPlanResult(plan: mockBuildPlan(
config: .release,
triple: .wasi,
graph: graph,
linkingParameters: .init(
linkerDeadStrip: true,
shouldLinkStaticSwiftStdlib: true
),
fileSystem: fs,
observabilityScope: observabilityScope
))
let buildPath = result.plan.productsBuildPath
let appBuildDescription = try result.buildProduct(for: "app")
XCTAssertEqual(
try appBuildDescription.linkArguments(),
[
result.plan.destinationBuildParameters.toolchain.swiftCompilerPath.pathString,
"-L", buildPath.pathString,
"-o", buildPath.appending(components: "app.wasm").pathString,
"-module-name", "app", "-static-stdlib", "-emit-executable",
"-Xlinker", "--gc-sections",
"@\(buildPath.appending(components: "app.product", "Objects.LinkFileList"))",
"-target", "wasm32-unknown-wasi",
"-g",
]
)
}
func testWASITarget() throws {
let pkgPath = AbsolutePath("/Pkg")
let (graph, fs, observabilityScope) = try trivialPackageGraph()
let result = try BuildPlanResult(plan: mockBuildPlan(
triple: .wasi,
graph: graph,
linkingParameters: .init(
shouldLinkStaticSwiftStdlib: true
),
fileSystem: fs,
observabilityScope: observabilityScope
))
result.checkProductsCount(2)
// There are two additional modules on non-Apple platforms, for test discovery and
// test entry point
result.checkTargetsCount(5)
let buildPath = result.plan.productsBuildPath
let lib = try XCTUnwrap(
result.allTargets(named: "lib")
.map { try $0.clang() }
.first { $0.target.buildTriple == .destination }
)
XCTAssertEqual(try lib.basicArguments(isCXX: false), [
"-target", "wasm32-unknown-wasi",
"-O0", "-DSWIFT_PACKAGE=1", "-DDEBUG=1",
"-fblocks",
"-I", pkgPath.appending(components: "Sources", "lib", "include").pathString,
"-g",
])
XCTAssertEqual(try lib.objects, [buildPath.appending(components: "lib.build", "lib.c.o")])
XCTAssertEqual(lib.moduleMap, buildPath.appending(components: "lib.build", "module.modulemap"))
let exe = try result.moduleBuildDescription(for: "app").swift().compileArguments()
XCTAssertMatch(
exe,
[
"-enable-batch-mode", "-Onone", "-enable-testing",
"-j3", "-DSWIFT_PACKAGE", "-DDEBUG", "-Xcc",
"-fmodule-map-file=\(buildPath.appending(components: "lib.build", "module.modulemap"))",
"-Xcc", "-I", "-Xcc", "\(pkgPath.appending(components: "Sources", "lib", "include"))",
"-module-cache-path", "\(buildPath.appending(components: "ModuleCache"))", .anySequence,
"-swift-version", "4", "-g", .anySequence,
]
)
let appBuildDescription = try result.buildProduct(for: "app")
XCTAssertEqual(
try appBuildDescription.linkArguments(),
[
result.plan.destinationBuildParameters.toolchain.swiftCompilerPath.pathString,
"-L", buildPath.pathString,
"-o", buildPath.appending(components: "app.wasm").pathString,
"-module-name", "app", "-static-stdlib", "-emit-executable",
"@\(buildPath.appending(components: "app.product", "Objects.LinkFileList"))",
"-target", "wasm32-unknown-wasi",
"-g",
]
)
let executablePathExtension = try appBuildDescription.binaryPath.extension
XCTAssertEqual(executablePathExtension, "wasm")
let testBuildDescription = try result.buildProduct(for: "PkgPackageTests")
XCTAssertEqual(
try testBuildDescription.linkArguments(),
[
result.plan.destinationBuildParameters.toolchain.swiftCompilerPath.pathString,
"-L", buildPath.pathString,
"-o", buildPath.appending(components: "PkgPackageTests.wasm").pathString,
"-module-name", "PkgPackageTests",
"-emit-executable",
"@\(buildPath.appending(components: "PkgPackageTests.product", "Objects.LinkFileList"))",
"-target", "wasm32-unknown-wasi",
"-g",
]
)
let testPathExtension = try testBuildDescription.binaryPath.extension
XCTAssertEqual(testPathExtension, "wasm")
}
func testMacros() throws {
let (graph, fs, scope) = try macrosPackageGraph()
let destinationTriple = Triple.arm64Linux
let toolsTriple = Triple.x86_64MacOS
let plan = try BuildPlan(
destinationBuildParameters: mockBuildParameters(
destination: .target,
shouldLinkStaticSwiftStdlib: true,
triple: destinationTriple
),
toolsBuildParameters: mockBuildParameters(
destination: .host,
triple: toolsTriple
),
graph: graph,
fileSystem: fs,
observabilityScope: scope
)
let result = try BuildPlanResult(plan: plan)
result.checkProductsCount(3)
result.checkTargetsCount(10)
XCTAssertTrue(try result.allTargets(named: "SwiftSyntax")
.map { try $0.swift() }
.contains { $0.target.buildTriple == .tools })
try result.check(buildTriple: .tools, triple: toolsTriple, for: "MMIOMacros")
try result.check(buildTriple: .destination, triple: destinationTriple, for: "MMIO")
try result.check(buildTriple: .destination, triple: destinationTriple, for: "Core")
try result.check(buildTriple: .destination, triple: destinationTriple, for: "HAL")
let macroProducts = result.allProducts(named: "MMIOMacros")
XCTAssertEqual(macroProducts.count, 1)
let macroProduct = try XCTUnwrap(macroProducts.first)
XCTAssertEqual(macroProduct.buildParameters.triple, toolsTriple)
let mmioTargets = try result.allTargets(named: "MMIO").map { try $0.swift() }
XCTAssertEqual(mmioTargets.count, 1)
let mmioTarget = try XCTUnwrap(mmioTargets.first)
let compileArguments = try mmioTarget.emitCommandLine()
XCTAssertMatch(
compileArguments,
[
"-I", .equal(mmioTarget.moduleOutputPath.parentDirectory.pathString),
.anySequence,
"-Xfrontend", "-load-plugin-executable",
// Verify that macros are located in the tools triple directory.
"-Xfrontend", .contains(toolsTriple.tripleString)
]
)
}
func testMacrosTests() throws {
let (graph, fs, scope) = try macrosTestsPackageGraph()
let destinationTriple = Triple.arm64Linux
let toolsTriple = Triple.x86_64MacOS
let plan = try BuildPlan(
destinationBuildParameters: mockBuildParameters(
destination: .target,
shouldLinkStaticSwiftStdlib: true,
triple: destinationTriple
),
toolsBuildParameters: mockBuildParameters(
destination: .host,
triple: toolsTriple
),
graph: graph,
fileSystem: fs,
observabilityScope: scope
)
let result = try BuildPlanResult(plan: plan)
result.checkProductsCount(2)
result.checkTargetsCount(16)
XCTAssertTrue(try result.allTargets(named: "SwiftSyntax")
.map { try $0.swift() }
.contains { $0.target.buildTriple == .tools })
try result.check(buildTriple: .tools, triple: toolsTriple, for: "swift-mmioPackageTests")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "swift-mmioPackageDiscoveredTests")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "MMIOMacros")
try result.check(buildTriple: .destination, triple: destinationTriple, for: "MMIO")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "MMIOMacrosTests")
let macroProducts = result.allProducts(named: "MMIOMacros")
XCTAssertEqual(macroProducts.count, 1)
let macroProduct = try XCTUnwrap(macroProducts.first)
XCTAssertEqual(macroProduct.buildParameters.triple, toolsTriple)
let mmioTargets = try result.allTargets(named: "MMIO").map { try $0.swift() }
XCTAssertEqual(mmioTargets.count, 1)
let mmioTarget = try XCTUnwrap(mmioTargets.first)
let compileArguments = try mmioTarget.emitCommandLine()
XCTAssertMatch(
compileArguments,
[
"-I", .equal(mmioTarget.moduleOutputPath.parentDirectory.pathString),
.anySequence,
"-Xfrontend", "-load-plugin-executable",
// Verify that macros are located in the tools triple directory.
"-Xfrontend", .contains(toolsTriple.tripleString)
]
)
}
func testToolsExplicitLibraries() throws {
let destinationTriple = Triple.arm64Linux
let toolsTriple = Triple.x86_64MacOS
for (linkage, productFileName) in [(ProductType.LibraryType.static, "libSwiftSyntax-tool.a"), (.dynamic, "libSwiftSyntax-tool.dylib")] {
let (graph, fs, scope) = try toolsExplicitLibrariesGraph(linkage: linkage)
let plan = try BuildPlan(
destinationBuildParameters: mockBuildParameters(
destination: .target,
shouldLinkStaticSwiftStdlib: true,
triple: destinationTriple
),
toolsBuildParameters: mockBuildParameters(
destination: .host,
triple: toolsTriple
),
graph: graph,
fileSystem: fs,
observabilityScope: scope
)
let result = try BuildPlanResult(plan: plan)
result.checkProductsCount(4)
result.checkTargetsCount(6)
XCTAssertTrue(try result.allTargets(named: "SwiftSyntax")
.map { try $0.swift() }
.contains { $0.target.buildTriple == .tools })
try result.check(buildTriple: .tools, triple: toolsTriple, for: "swift-mmioPackageTests")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "swift-mmioPackageDiscoveredTests")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "MMIOMacros")
try result.check(buildTriple: .tools, triple: toolsTriple, for: "MMIOMacrosTests")
let macroProducts = result.allProducts(named: "MMIOMacros")
XCTAssertEqual(macroProducts.count, 1)
let macroProduct = try XCTUnwrap(macroProducts.first)
XCTAssertEqual(macroProduct.buildParameters.triple, toolsTriple)
let swiftSyntaxProducts = result.allProducts(named: "SwiftSyntax")
XCTAssertEqual(swiftSyntaxProducts.count, 2)
let swiftSyntaxToolsProduct = try XCTUnwrap(swiftSyntaxProducts.first { $0.product.buildTriple == .tools })
let archiveArguments = try swiftSyntaxToolsProduct.archiveArguments()
// Verify that produced library file has a correct name
XCTAssertMatch(archiveArguments, [.contains(productFileName)])
}
}
}
extension BuildPlanResult {
func allTargets(named name: String) throws -> some Collection<ModuleBuildDescription> {
self.targetMap
.filter { $0.0.moduleName == name }
.values
}
func allProducts(named name: String) -> some Collection<ProductBuildDescription> {
self.productMap
.filter { $0.0.productName == name }
.values
}
func check(
buildTriple: BuildTriple,
triple: Triple,
for target: String,
file: StaticString = #file,
line: UInt = #line
) throws {
let targets = self.targetMap.filter {
$0.key.moduleName == target && $0.key.buildTriple == buildTriple
}
XCTAssertEqual(targets.count, 1, file: file, line: line)
let target = try XCTUnwrap(
targets.first?.value,
file: file,
line: line
).swift()
XCTAssertMatch(try target.emitCommandLine(), [.contains(triple.tripleString)], file: file, line: line)
}
}
|