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 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
|
//===----------------------------------------------------------------------===//
//
// 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 Build
import LSPTestSupport
import LanguageServerProtocol
import PackageModel
@_spi(Testing) import SKCore
@_spi(Testing) import SKSwiftPMWorkspace
import SKTestSupport
import SourceKitLSP
import TSCBasic
import XCTest
import struct PackageModel.BuildFlags
#if canImport(SPMBuildCore)
@preconcurrency import SPMBuildCore
#endif
fileprivate extension SwiftPMBuildSystem {
func buildSettings(for uri: DocumentURI, language: Language) async throws -> FileBuildSettings? {
guard let target = self.configuredTargets(for: uri).only else {
return nil
}
return try await buildSettings(for: uri, in: target, language: language)
}
}
final class SwiftPMBuildSystemTests: XCTestCase {
func testNoPackage() async throws {
let fs = InMemoryFileSystem()
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": ""
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
await assertThrowsError(
try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
)
}
}
func testUnparsablePackage() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let pack
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
let buildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
await assertThrowsError(try await buildSystem.generateBuildGraph(allowFileSystemWrites: false))
}
}
func testNoToolchain() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
await assertThrowsError(
try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: ToolchainRegistry(toolchains: []),
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
)
}
}
func testBasicSwiftArgs() async throws {
try await SkipUnless.swiftpmStoresModulesInSubdirectory()
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "lib", "a.swift")
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
let build = buildPath(root: packageRoot, platform: hostTriple.platformBuildPathComponent)
assertEqual(await swiftpmBuildSystem.buildPath, build)
assertNotNil(await swiftpmBuildSystem.indexStorePath)
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain("-module-name", "lib", arguments: arguments)
assertArgumentsContain("-emit-dependencies", arguments: arguments)
assertArgumentsContain("-emit-module", arguments: arguments)
assertArgumentsContain("-emit-module-path", arguments: arguments)
assertArgumentsContain("-incremental", arguments: arguments)
assertArgumentsContain("-parse-as-library", arguments: arguments)
assertArgumentsContain("-c", arguments: arguments)
assertArgumentsContain("-target", arguments: arguments) // Only one!
#if os(macOS)
let versionString = PackageModel.Platform.macOS.oldestSupportedVersion.versionString
assertArgumentsContain(
"-target",
hostTriple.tripleString(forPlatformVersion: versionString),
arguments: arguments
)
assertArgumentsContain("-sdk", arguments: arguments)
assertArgumentsContain("-F", arguments: arguments, allowMultiple: true)
#else
assertArgumentsContain("-target", hostTriple.tripleString, arguments: arguments)
#endif
assertArgumentsContain("-I", build.appending(component: "Modules").pathString, arguments: arguments)
assertArgumentsContain(aswift.pathString, arguments: arguments)
}
}
func testCompilerArgumentsForFileThatContainsPlusCharacterURLEncoded() async throws {
try await withTestScratchDir { tempDir in
try localFileSystem.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Sources/lib/a+something.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: localFileSystem,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aPlusSomething = packageRoot.appending(components: "Sources", "lib", "a+something.swift")
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
let build = buildPath(root: packageRoot, platform: hostTriple.platformBuildPathComponent)
assertEqual(await swiftpmBuildSystem.buildPath, build)
assertNotNil(await swiftpmBuildSystem.indexStorePath)
let arguments = try await unwrap(
swiftpmBuildSystem.buildSettings(
for: DocumentURI(URL(string: "file://\(aPlusSomething.asURL.path.replacing("+", with: "%2B"))")!),
language: .swift
)
)
.compilerArguments
// Check that we have both source files in the compiler arguments, which means that we didn't compute the compiler
// arguments for a+something.swift using substitute arguments from a.swift.
XCTAssert(
arguments.contains(aPlusSomething.pathString),
"Compiler arguments do not contain a+something.swift: \(arguments)"
)
XCTAssert(
arguments.contains(packageRoot.appending(components: "Sources", "lib", "a.swift").pathString),
"Compiler arguments do not contain a.swift: \(arguments)"
)
}
}
func testBuildSetup() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
let options = SourceKitLSPOptions.SwiftPMOptions(
configuration: .release,
scratchPath: packageRoot.appending(component: "non_default_build_path").pathString,
cCompilerFlags: ["-m32"],
swiftCompilerFlags: ["-typecheck"]
)
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(swiftPM: options),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "lib", "a.swift")
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
let build = buildPath(root: packageRoot, options: options, platform: hostTriple.platformBuildPathComponent)
assertEqual(await swiftpmBuildSystem.buildPath, build)
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain("-typecheck", arguments: arguments)
assertArgumentsContain("-Xcc", "-m32", arguments: arguments)
assertArgumentsContain("-O", arguments: arguments)
}
}
func testManifestArgs() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let source = try resolveSymlinks(packageRoot.appending(component: "Package.swift"))
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: source.asURI, language: .swift))
.compilerArguments
assertArgumentsContain("-swift-version", "4.2", arguments: arguments)
assertArgumentsContain(source.pathString, arguments: arguments)
}
}
func testMultiFileSwift() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Sources/lib/b.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "lib", "a.swift")
let bswift = packageRoot.appending(components: "Sources", "lib", "b.swift")
let argumentsA = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain(aswift.pathString, arguments: argumentsA)
assertArgumentsContain(bswift.pathString, arguments: argumentsA)
let argumentsB = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain(aswift.pathString, arguments: argumentsB)
assertArgumentsContain(bswift.pathString, arguments: argumentsB)
}
}
func testMultiTargetSwift() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/libA/a.swift": "",
"pkg/Sources/libB/b.swift": "",
"pkg/Sources/libC/include/libC.h": "",
"pkg/Sources/libC/libC.c": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [
.target(name: "libA", dependencies: ["libB", "libC"]),
.target(name: "libB"),
.target(name: "libC"),
]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "libA", "a.swift")
let bswift = packageRoot.appending(components: "Sources", "libB", "b.swift")
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain(aswift.pathString, arguments: arguments)
assertArgumentsDoNotContain(bswift.pathString, arguments: arguments)
// Temporary conditional to work around revlock between SourceKit-LSP and SwiftPM
// as a result of fix for SR-12050. Can be removed when that fix has been merged.
if arguments.joined(separator: " ").contains("-Xcc -I -Xcc") {
assertArgumentsContain(
"-Xcc",
"-I",
"-Xcc",
packageRoot.appending(components: "Sources", "libC", "include").pathString,
arguments: arguments
)
} else {
assertArgumentsContain(
"-I",
packageRoot.appending(components: "Sources", "libC", "include").pathString,
arguments: arguments
)
}
let argumentsB = try await unwrap(swiftpmBuildSystem.buildSettings(for: bswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain(bswift.pathString, arguments: argumentsB)
assertArgumentsDoNotContain(aswift.pathString, arguments: argumentsB)
assertArgumentsDoNotContain(
"-I",
packageRoot.appending(components: "Sources", "libC", "include").pathString,
arguments: argumentsB
)
}
}
func testUnknownFile() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/libA/a.swift": "",
"pkg/Sources/libB/b.swift": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "libA")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "libA", "a.swift")
let bswift = packageRoot.appending(components: "Sources", "libB", "b.swift")
assertNotNil(try await swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
assertNil(try await swiftpmBuildSystem.buildSettings(for: bswift.asURI, language: .swift))
assertNil(
try await swiftpmBuildSystem.buildSettings(
for: DocumentURI(URL(string: "https://www.apple.com")!),
language: .swift
)
)
}
}
func testBasicCXXArgs() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.cpp": "",
"pkg/Sources/lib/b.cpp": "",
"pkg/Sources/lib/include/a.h": "",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")],
cxxLanguageStandard: .cxx14
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let acxx = packageRoot.appending(components: "Sources", "lib", "a.cpp")
let bcxx = packageRoot.appending(components: "Sources", "lib", "b.cpp")
let header = packageRoot.appending(components: "Sources", "lib", "include", "a.h")
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
let build = buildPath(root: packageRoot, platform: hostTriple.platformBuildPathComponent)
assertEqual(await swiftpmBuildSystem.buildPath, build)
assertNotNil(await swiftpmBuildSystem.indexStorePath)
for file in [acxx, header] {
let args = try await unwrap(swiftpmBuildSystem.buildSettings(for: file.asURI, language: .cpp)).compilerArguments
assertArgumentsContain("-std=c++14", arguments: args)
assertArgumentsDoNotContain("-arch", arguments: args)
assertArgumentsContain("-target", arguments: args) // Only one!
#if os(macOS)
let versionString = PackageModel.Platform.macOS.oldestSupportedVersion.versionString
assertArgumentsContain(
"-target",
hostTriple.tripleString(forPlatformVersion: versionString),
arguments: args
)
assertArgumentsContain("-isysroot", arguments: args)
assertArgumentsContain("-F", arguments: args, allowMultiple: true)
#else
assertArgumentsContain("-target", hostTriple.tripleString, arguments: args)
#endif
assertArgumentsContain(
"-I",
packageRoot.appending(components: "Sources", "lib", "include").pathString,
arguments: args
)
assertArgumentsDoNotContain("-I", build.pathString, arguments: args)
assertArgumentsDoNotContain(bcxx.pathString, arguments: args)
URL(fileURLWithPath: build.appending(components: "lib.build", "a.cpp.d").pathString)
.withUnsafeFileSystemRepresentation {
assertArgumentsContain("-MD", "-MT", "dependencies", "-MF", String(cString: $0!), arguments: args)
}
URL(fileURLWithPath: file.pathString).withUnsafeFileSystemRepresentation {
assertArgumentsContain("-c", String(cString: $0!), arguments: args)
}
URL(fileURLWithPath: build.appending(components: "lib.build", "a.cpp.o").pathString)
.withUnsafeFileSystemRepresentation {
assertArgumentsContain("-o", String(cString: $0!), arguments: args)
}
}
}
}
func testDeploymentTargetSwift() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Package.swift": """
// swift-tools-version:5.0
import PackageDescription
let package = Package(name: "a",
platforms: [.macOS(.v10_13)],
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: ToolchainRegistry.forTesting,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "lib", "a.swift")
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain("-target", arguments: arguments) // Only one!
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
#if os(macOS)
assertArgumentsContain(
"-target",
hostTriple.tripleString(forPlatformVersion: "10.13"),
arguments: arguments
)
#else
assertArgumentsContain("-target", hostTriple.tripleString, arguments: arguments)
#endif
}
}
func testSymlinkInWorkspaceSwift() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg_real/Sources/lib/a.swift": "",
"pkg_real/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
try FileManager.default.createSymbolicLink(
at: URL(fileURLWithPath: packageRoot.pathString),
withDestinationURL: URL(fileURLWithPath: tempDir.appending(component: "pkg_real").pathString)
)
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift1 = packageRoot.appending(components: "Sources", "lib", "a.swift")
let aswift2 =
tempDir
.appending(component: "pkg_real")
.appending(components: "Sources", "lib", "a.swift")
let manifest = packageRoot.appending(components: "Package.swift")
let arguments1 = try await swiftpmBuildSystem.buildSettings(for: aswift1.asURI, language: .swift)?
.compilerArguments
let arguments2 = try await swiftpmBuildSystem.buildSettings(for: aswift2.asURI, language: .swift)?
.compilerArguments
XCTAssertNotNil(arguments1)
XCTAssertNotNil(arguments2)
XCTAssertEqual(arguments1, arguments2)
assertArgumentsDoNotContain(aswift1.pathString, arguments: arguments1 ?? [])
assertArgumentsContain(try resolveSymlinks(aswift1).pathString, arguments: arguments1 ?? [])
let argsManifest = try await swiftpmBuildSystem.buildSettings(for: manifest.asURI, language: .swift)?
.compilerArguments
XCTAssertNotNil(argsManifest)
assertArgumentsDoNotContain(manifest.pathString, arguments: argsManifest ?? [])
assertArgumentsContain(try resolveSymlinks(manifest).pathString, arguments: argsManifest ?? [])
}
}
func testSymlinkInWorkspaceCXX() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg_real/Sources/lib/a.cpp": "",
"pkg_real/Sources/lib/b.cpp": "",
"pkg_real/Sources/lib/include/a.h": "",
"pkg_real/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")],
cxxLanguageStandard: .cxx14
)
""",
]
)
let acpp = ["Sources", "lib", "a.cpp"]
let ah = ["Sources", "lib", "include", "a.h"]
let realRoot = tempDir.appending(component: "pkg_real")
let symlinkRoot = tempDir.appending(component: "pkg")
try FileManager.default.createSymbolicLink(
at: URL(fileURLWithPath: symlinkRoot.pathString),
withDestinationURL: URL(fileURLWithPath: tempDir.appending(component: "pkg_real").pathString)
)
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: symlinkRoot,
toolchainRegistry: ToolchainRegistry.forTesting,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
for file in [acpp, ah] {
let args = try unwrap(
await swiftpmBuildSystem.buildSettings(for: symlinkRoot.appending(components: file).asURI, language: .cpp)?
.compilerArguments
)
assertArgumentsContain(realRoot.appending(components: file).pathString, arguments: args)
assertArgumentsDoNotContain(symlinkRoot.appending(components: file).pathString, arguments: args)
}
}
}
func testSwiftDerivedSources() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/a.swift": "",
"pkg/Sources/lib/a.txt": "",
"pkg/Package.swift": """
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib", resources: [.copy("a.txt")])]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(component: "pkg"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Sources", "lib", "a.swift")
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
assertArgumentsContain(aswift.pathString, arguments: arguments)
XCTAssertNotNil(
arguments.firstIndex(where: {
$0.hasSuffix(".swift") && $0.contains("DerivedSources")
}),
"missing resource_bundle_accessor.swift from \(arguments)"
)
}
}
func testNestedInvalidPackageSwift() async throws {
let fs = InMemoryFileSystem()
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Sources/lib/Package.swift": "// not a valid package",
"pkg/Package.swift": """
// swift-tools-version:4.2
import PackageDescription
let package = Package(
name: "a",
targets: [.target(name: "lib")]
)
""",
]
)
let packageRoot = try resolveSymlinks(tempDir.appending(components: "pkg", "Sources", "lib"))
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
assertEqual(await swiftpmBuildSystem.projectRoot, try resolveSymlinks(tempDir.appending(component: "pkg")))
}
}
func testPluginArgs() async throws {
let fs = localFileSystem
try await withTestScratchDir { tempDir in
try fs.createFiles(
root: tempDir,
files: [
"pkg/Plugins/MyPlugin/a.swift": "",
"pkg/Sources/lib/lib.swift": "",
"pkg/Package.swift": """
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "a",
targets: [
.target(name: "lib"),
.plugin(name: "MyPlugin", capability: .buildTool)
]
)
""",
]
)
let packageRoot = tempDir.appending(component: "pkg")
let tr = ToolchainRegistry.forTesting
let swiftpmBuildSystem = try await SwiftPMBuildSystem(
workspacePath: packageRoot,
toolchainRegistry: tr,
fileSystem: fs,
options: SourceKitLSPOptions(),
testHooks: SwiftPMTestHooks()
)
try await swiftpmBuildSystem.generateBuildGraph(allowFileSystemWrites: false)
let aswift = packageRoot.appending(components: "Plugins", "MyPlugin", "a.swift")
let hostTriple = await swiftpmBuildSystem.destinationBuildParameters.triple
let build = buildPath(root: packageRoot, platform: hostTriple.platformBuildPathComponent)
assertEqual(await swiftpmBuildSystem.buildPath, build)
assertNotNil(await swiftpmBuildSystem.indexStorePath)
let arguments = try await unwrap(swiftpmBuildSystem.buildSettings(for: aswift.asURI, language: .swift))
.compilerArguments
// Plugins get compiled with the same compiler arguments as the package manifest
assertArgumentsContain("-package-description-version", "5.7.0", arguments: arguments)
assertArgumentsContain(aswift.pathString, arguments: arguments)
}
}
func testBuildMacro() async throws {
try await SkipUnless.canBuildMacroUsingSwiftSyntaxFromSourceKitLSPBuild()
// This test is just a dummy to show how to create a `SwiftPMTestProject` that builds a macro using the SwiftSyntax
// modules that were already built during the build of SourceKit-LSP.
// It should be removed once we have a real test that tests macros (like macro expansion).
let project = try await SwiftPMTestProject(
files: [
"MyMacros/MyMacros.swift": #"""
import SwiftCompilerPlugin
import SwiftSyntax
import SwiftSyntaxBuilder
import SwiftSyntaxMacros
public struct StringifyMacro: ExpressionMacro {
public static func expansion(
of node: some FreestandingMacroExpansionSyntax,
in context: some MacroExpansionContext
) -> ExprSyntax {
guard let argument = node.argumentList.first?.expression else {
fatalError("compiler bug: the macro does not have any arguments")
}
return "(\(argument), \(literal: argument.description))"
}
}
@main
struct MyMacroPlugin: CompilerPlugin {
let providingMacros: [Macro.Type] = [
StringifyMacro.self,
]
}
"""#,
"MyMacroClient/MyMacroClient.swift": """
@freestanding(expression)
public macro stringify<T>(_ value: T) -> (T, String) = #externalMacro(module: "MyMacros", type: "StringifyMacro")
func test() {
#stringify(1 + 2)
}
""",
],
manifest: SwiftPMTestProject.macroPackageManifest
)
try await SwiftPMTestProject.build(at: project.scratchDirectory)
}
}
private func assertArgumentsDoNotContain(
_ pattern: String...,
arguments: [String],
file: StaticString = #filePath,
line: UInt = #line
) {
if let index = arguments.firstIndex(of: pattern) {
XCTFail(
"not-pattern \(pattern) unexpectedly found at \(index) in arguments \(arguments)",
file: file,
line: line
)
return
}
}
private func assertArgumentsContain(
_ pattern: String...,
arguments: [String],
allowMultiple: Bool = false,
file: StaticString = #filePath,
line: UInt = #line
) {
guard let index = arguments.firstIndex(of: pattern) else {
XCTFail("pattern \(pattern) not found in arguments \(arguments)", file: file, line: line)
return
}
if !allowMultiple, let index2 = arguments[(index + 1)...].firstIndex(of: pattern) {
XCTFail(
"pattern \(pattern) found twice (\(index), \(index2)) in \(arguments)",
file: file,
line: line
)
}
}
private func buildPath(
root: AbsolutePath,
options: SourceKitLSPOptions.SwiftPMOptions = SourceKitLSPOptions.SwiftPMOptions(),
platform: String
) -> AbsolutePath {
let buildPath = AbsolutePath(validatingOrNil: options.scratchPath) ?? root.appending(component: ".build")
return buildPath.appending(components: platform, "\(options.configuration ?? .debug)")
}
|