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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2021 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 Basics
import PackageModel
import SourceControl
import SPMTestSupport
import Workspace
import XCTest
import class Basics.AsyncProcess
typealias ProcessID = AsyncProcess.ProcessID
final class MiscellaneousTestCase: XCTestCase {
func testPrintsSelectedDependencyVersion() async throws {
// verifies the stdout contains information about
// the selected version of the package
try await fixture(name: "DependencyResolution/External/Simple") { fixturePath in
let (stdout, stderr) = try await executeSwiftBuild(fixturePath.appending("Bar"))
// package resolution output goes to stderr
XCTAssertMatch(stderr, .regex("Computed .* at 1\\.2\\.3"))
// in "swift build" build output goes to stdout
XCTAssertMatch(stdout, .contains("Compiling Foo Foo.swift"))
XCTAssertMatch(stdout, .or(.contains("Merging module Foo"),
.contains("Emitting module Foo")))
XCTAssertMatch(stdout, .contains("Compiling Bar main.swift"))
XCTAssertMatch(stdout, .or(.contains("Merging module Bar"),
.contains("Emitting module Bar")))
XCTAssertMatch(stdout, .contains("Linking Bar"))
XCTAssertMatch(stdout, .contains("Build complete!"))
}
}
func testPassExactDependenciesToBuildCommand() async throws {
// regression test to ensure that dependencies of other dependencies
// are not passed into the build-command.
try await fixture(name: "Miscellaneous/ExactDependencies") { fixturePath in
await XCTAssertBuilds(fixturePath.appending("app"))
let buildDir = fixturePath.appending(components: "app", ".build", try UserToolchain.default.targetTriple.platformBuildPathComponent, "debug")
XCTAssertFileExists(buildDir.appending("FooExec"))
XCTAssertFileExists(buildDir.appending(components: "Modules", "FooLib1.swiftmodule"))
XCTAssertFileExists(buildDir.appending(components: "Modules", "FooLib2.swiftmodule"))
}
}
func testCanBuildMoreThanTwiceWithExternalDependencies() async throws {
// running `swift build` multiple times should not fail
// subsequent executions to an unmodified source tree
// should immediately exit with exit-status: `0`
try await fixture(name: "DependencyResolution/External/Complex") { fixturePath in
await XCTAssertBuilds(fixturePath.appending("app"))
await XCTAssertBuilds(fixturePath.appending("app"))
await XCTAssertBuilds(fixturePath.appending("app"))
}
}
func testNoArgumentsExitsWithOne() async throws {
await XCTAssertThrowsCommandExecutionError(try await executeSwiftBuild("/")) { error in
// if our code crashes we'll get an exit code of 256
guard error.result.exitStatus == .terminated(code: 1) else {
return XCTFail("failed in an unexpected manner: \(error)")
}
}
}
func testCompileFailureExitsGracefully() async throws {
try await fixture(name: "Miscellaneous/CompileFails") { fixturePath in
await XCTAssertThrowsCommandExecutionError(try await executeSwiftBuild(fixturePath)) { error in
// if our code crashes we'll get an exit code of 256
guard error.result.exitStatus == .terminated(code: 1) else {
return XCTFail("failed in an unexpected manner: \(error)")
}
XCTAssertMatch(error.stdout + error.stderr, .contains("Compiling CompileFails Foo.swift"))
XCTAssertMatch(error.stdout + error.stderr, .regex(".*compile_failure.*"))
XCTAssertMatch(error.stdout + error.stderr, .regex(".*error:.*"))
}
}
}
func testPackageManagerDefineAndXArgs() async throws {
try await fixture(name: "Miscellaneous/-DSWIFT_PACKAGE") { fixturePath in
await XCTAssertBuildFails(fixturePath)
await XCTAssertBuilds(fixturePath, Xcc: ["-DEXTRA_C_DEFINE=2"], Xswiftc: ["-DEXTRA_SWIFTC_DEFINE"])
}
}
/**
Tests that modules that are rebuilt causes
any executables that link to that module to be relinked.
*/
func testInternalDependencyEdges() async throws {
try await fixture(name: "Miscellaneous/DependencyEdges/Internal") { fixturePath in
let execpath = fixturePath.appending(components: ".build", try UserToolchain.default.targetTriple.platformBuildPathComponent, "debug", "Foo").pathString
await XCTAssertBuilds(fixturePath)
var output = try await AsyncProcess.checkNonZeroExit(args: execpath)
XCTAssertEqual(output, "Hello\n")
// we need to sleep at least one second otherwise
// llbuild does not realize the file has changed
try await Task.sleep(for: .seconds(1))
try localFileSystem.writeFileContents(fixturePath.appending(components: "Bar", "Bar.swift"), bytes: "public let bar = \"Goodbye\"\n")
await XCTAssertBuilds(fixturePath)
output = try await AsyncProcess.checkNonZeroExit(args: execpath)
XCTAssertEqual(output, "Goodbye\n")
}
}
/**
Tests that modules from other packages that are rebuilt causes
any executables that link to that module in the root package.
*/
func testExternalDependencyEdges1() async throws {
try await fixture(name: "DependencyResolution/External/Complex") { fixturePath in
let execpath = fixturePath.appending(components: "app", ".build", try UserToolchain.default.targetTriple.platformBuildPathComponent, "debug", "Dealer").pathString
let packageRoot = fixturePath.appending("app")
await XCTAssertBuilds(packageRoot)
var output = try await AsyncProcess.checkNonZeroExit(args: execpath)
XCTAssertEqual(output, "♣︎K\n♣︎Q\n♣︎J\n♣︎10\n♣︎9\n♣︎8\n♣︎7\n♣︎6\n♣︎5\n♣︎4\n")
// we need to sleep at least one second otherwise
// llbuild does not realize the file has changed
try await Task.sleep(for: .seconds(1))
let path = try SwiftPM.packagePath(for: "FisherYates", packageRoot: packageRoot)
try localFileSystem.chmod(.userWritable, path: path, options: [.recursive])
try localFileSystem.writeFileContents(path.appending(components: "src", "Fisher-Yates_Shuffle.swift"), bytes: "public extension Collection{ func shuffle() -> [Iterator.Element] {return []} }\n\npublic extension MutableCollection where Index == Int { mutating func shuffleInPlace() { for (i, _) in enumerated() { self[i] = self[0] } }}\n\npublic let shuffle = true")
await XCTAssertBuilds(fixturePath.appending("app"))
output = try await AsyncProcess.checkNonZeroExit(args: execpath)
XCTAssertEqual(output, "♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n♠︎A\n")
}
}
/**
Tests that modules from other packages that are rebuilt causes
any executables for another external package to be rebuilt.
*/
func testExternalDependencyEdges2() async throws {
try await fixture(name: "Miscellaneous/DependencyEdges/External") { fixturePath in
let execpath = [fixturePath.appending(components: "root", ".build", try UserToolchain.default.targetTriple.platformBuildPathComponent, "debug", "dep2").pathString]
let packageRoot = fixturePath.appending("root")
await XCTAssertBuilds(fixturePath.appending("root"))
var output = try await AsyncProcess.checkNonZeroExit(arguments: execpath)
XCTAssertEqual(output, "Hello\n")
// we need to sleep at least one second otherwise
// llbuild does not realize the file has changed
try await Task.sleep(for: .seconds(1))
let path = try SwiftPM.packagePath(for: "dep1", packageRoot: packageRoot)
try localFileSystem.chmod(.userWritable, path: path, options: [.recursive])
try localFileSystem.writeFileContents(path.appending(components: "Foo.swift"), bytes: "public let foo = \"Goodbye\"")
await XCTAssertBuilds(fixturePath.appending("root"))
output = try await AsyncProcess.checkNonZeroExit(arguments: execpath)
XCTAssertEqual(output, "Goodbye\n")
}
}
func testSpaces() async throws {
try await fixture(name: "Miscellaneous/Spaces Fixture") { fixturePath in
await XCTAssertBuilds(fixturePath)
XCTAssertFileExists(fixturePath.appending(components: ".build", try UserToolchain.default.targetTriple.platformBuildPathComponent, "debug", "Module_Name_1.build", "Foo.swift.o"))
}
}
func testSecondBuildIsNullInModulemapGen() throws {
// This has been failing on the Swift CI sometimes, need to investigate.
#if false
// Make sure that swiftpm doesn't rebuild second time if the modulemap is being generated.
try fixture(name: "CFamilyTargets/SwiftCMixed") { fixturePath in
var output = try await executeSwiftBuild(prefix)
XCTAssertFalse(output.isEmpty, output)
output = try await executeSwiftBuild(prefix)
XCTAssertTrue(output.isEmpty, output)
}
#endif
}
func testOverridingDeploymentTargetUsingSwiftCompilerArgument() async throws {
#if !os(macOS)
try XCTSkipIf(true, "test is only supported on macOS")
#endif
try await fixture(name: "Miscellaneous/DistantFutureDeploymentTarget") { fixturePath in
let hostTriple = try UserToolchain.default.targetTriple
try await executeSwiftBuild(fixturePath, Xswiftc: ["-target", "\(hostTriple.archName)-apple-macosx41.0"])
}
}
func testPkgConfigCFamilyTargets() async throws {
try await fixture(name: "Miscellaneous/PkgConfig") { fixturePath in
let systemModule = fixturePath.appending("SystemModule")
// Create a shared library.
let input = systemModule.appending(components: "Sources", "SystemModule.c")
let triple = try UserToolchain.default.targetTriple
let output = systemModule.appending("libSystemModule\(triple.dynamicLibraryExtension)")
try systemQuietly(["clang", "-shared", input.pathString, "-o", output.pathString])
let pcFile = fixturePath.appending("libSystemModule.pc")
try localFileSystem.writeFileContents(pcFile, string: """
prefix=\(systemModule.pathString)
exec_prefix=${prefix}
libdir=${exec_prefix}
includedir=${prefix}/Sources/include
Name: SystemModule
URL: http://127.0.0.1/
Description: The one and only SystemModule
Version: 1.10.0
Cflags: -I${includedir}
Libs: -L${libdir} -lSystemModule
"""
)
let moduleUser = fixturePath.appending("SystemModuleUserClang")
let env: Environment = ["PKG_CONFIG_PATH": fixturePath.pathString]
_ = try await executeSwiftBuild(moduleUser, env: env)
XCTAssertFileExists(moduleUser.appending(components: ".build", triple.platformBuildPathComponent, "debug", "SystemModuleUserClang"))
// Clean up the build directory before re-running the build with
// different arguments.
_ = try await executeSwiftPackage(moduleUser, extraArgs: ["clean"])
_ = try await executeSwiftBuild(moduleUser, extraArgs: ["--pkg-config-path", fixturePath.pathString])
XCTAssertFileExists(moduleUser.appending(components: ".build", triple.platformBuildPathComponent, "debug", "SystemModuleUserClang"))
}
}
func testCanKillSubprocessOnSigInt() throws {
// <rdar://problem/31890371> swift-pm: Spurious? failures of MiscellaneousTestCase.testCanKillSubprocessOnSigInt on linux
#if false
try fixture(name: "DependencyResolution/External/Simple") { fixturePath in
let fakeGit = fixturePath.appending(components: "bin", "git")
let waitFile = fixturePath.appending(components: "waitfile")
try localFileSystem.createDirectory(fakeGit.parentDirectory)
// Write out fake git.
try localFileSystem.writeFileContents(fakeGit, string:
"""
#!/bin/sh
set -e
printf "$$" >> \(waitFile)
while true; do sleep 1; done
"""
)
// Make it executable.
_ = try AsyncProcess.popen(args: "chmod", "+x", fakeGit.description)
// Put fake git in PATH.
var env = ProcessInfo.processInfo.environment
let oldPath = env["PATH"]
env["PATH"] = fakeGit.parentDirectory.description
if let oldPath {
env["PATH"] = env["PATH"]! + ":" + oldPath
}
// Launch swift-build.
let app = fixturePath.appending("Bar")
let process = AsyncProcess(args: SwiftPM.Build.path.pathString, "--package-path", app.pathString, environment: env)
try process.launch()
guard waitForFile(waitFile) else {
return XCTFail("Couldn't launch the process")
}
// Interrupt the process.
process.signal(SIGINT)
let result = try process.waitUntilExit()
// We should not have exited with zero.
XCTAssert(result.exitStatus != .terminated(code: 0))
// Process and subprocesses should be dead.
let contents: String = try localFileSystem.readFileContents(waitFile)
XCTAssertFalse(try AsyncProcess.running(process.processID))
XCTAssertFalse(try AsyncProcess.running(ProcessID(contents)!))
}
#endif
}
func testReportingErrorFromGitCommand() async throws {
try await fixture(name: "Miscellaneous/MissingDependency") { fixturePath in
// This fixture has a setup that is intentionally missing a local
// dependency to induce a failure.
// Launch swift-build.
let app = fixturePath.appending("Bar")
await XCTAssertAsyncThrowsError(try await SwiftPM.Build.execute(packagePath: app)) { error in
// We should exited with a failure from the attempt to "git clone"
// something that doesn't exist.
guard case SwiftPMError.executionFailure(_, _, let stderr) = error else {
return XCTFail("invalid error \(error)")
}
XCTAssert(stderr.contains("does not exist"), "Error from git was not propagated to process output: \(stderr)")
}
}
}
func testLocalPackageUsedAsURLValidation() async throws {
try await fixture(name: "Miscellaneous/LocalPackageAsURL", createGitRepo: false) { fixturePath in
// This fixture has a setup that is trying to use a local package
// as a url that hasn't been initialized as a repo
await XCTAssertAsyncThrowsError(try await SwiftPM.Build.execute(packagePath: fixturePath.appending("Bar"))) { error in
guard case SwiftPMError.executionFailure(_, _, let stderr) = error else {
return XCTFail("invalid error \(error)")
}
XCTAssert(stderr.contains("cannot clone from local directory"), "Didn't find expected output: \(stderr)")
}
}
}
func testLTO() async throws {
#if os(macOS)
// FIXME: this test requires swift-driver to be installed
// Currently swift-ci does not build/install swift-driver before running
// swift-package-manager tests which results in this test failing.
// See the following additional discussion:
// - https://github.com/apple/swift/pull/69696
// - https://github.com/apple/swift/pull/61766
// - https://github.com/swiftlang/swift-package-manager/pull/5842#issuecomment-1301632685
try await fixture(name: "Miscellaneous/LTO/SwiftAndCTargets") { fixturePath in
/*let output =*/
try await executeSwiftBuild(
fixturePath,
extraArgs: ["--experimental-lto-mode=full", "--verbose"]
)
// FIXME: On macOS dsymutil cannot find temporary .o files? (#6890)
// Ensure warnings like the following are not present in build output
// warning: (arm64) /var/folders/ym/6l_0x8vj0b70sz_4h9d70p440000gn/T/main-e120de.o unable to open object file: No such file or directory
// XCTAssertNoMatch(output.stdout, .contains("unable to open object file"))
}
#endif
}
func testUnicode() async throws {
#if !os(Linux) && !os(Android) // TODO: - Linux has trouble with this and needs investigation.
try await fixture(name: "Miscellaneous/Unicode") { fixturePath in
// See the fixture manifest for an explanation of this string.
let complicatedString = "πשּׁµ𝄞🇺🇳🇮🇱x̱̱̱̱̱̄̄̄̄̄"
let verify = "\u{03C0}\u{0FB2C}\u{00B5}\u{1D11E}\u{1F1FA}\u{1F1F3}\u{1F1EE}\u{1F1F1}\u{0078}\u{0331}\u{0304}\u{0331}\u{0304}\u{0331}\u{0304}\u{0331}\u{0304}\u{0331}\u{0304}"
XCTAssert(
complicatedString.unicodeScalars.elementsEqual(verify.unicodeScalars),
"\(complicatedString) ≠ \(verify)")
// ••••• Set up dependency.
let dependencyName = "UnicodeDependency‐\(complicatedString)"
let dependencyOrigin = AbsolutePath(#file).parentDirectory.parentDirectory.parentDirectory
.appending("Fixtures")
.appending("Miscellaneous")
.appending(component: dependencyName)
let dependencyDestination = fixturePath.parentDirectory.appending(component: dependencyName)
try? FileManager.default.removeItem(atPath: dependencyDestination.pathString)
defer { try? FileManager.default.removeItem(atPath: dependencyDestination.pathString) }
try FileManager.default.copyItem(
atPath: dependencyOrigin.pathString,
toPath: dependencyDestination.pathString)
let dependency = GitRepository(path: dependencyDestination)
try dependency.create()
try dependency.stageEverything()
try dependency.commit()
try dependency.tag(name: "1.0.0")
// •••••
// Attempt several operations.
try await SwiftPM.Test.execute(packagePath: fixturePath)
try await SwiftPM.Run.execute([complicatedString + "‐tool"], packagePath: fixturePath)
}
#endif
}
func testTestsCanLinkAgainstExecutable() async throws {
try await fixture(name: "Miscellaneous/TestableExe") { fixturePath in
do {
let (stdout, stderr) = try await executeSwiftTest(fixturePath)
// in "swift test" build output goes to stderr
XCTAssertMatch(stderr, .contains("Linking TestableExe1"))
XCTAssertMatch(stderr, .contains("Linking TestableExe2"))
XCTAssertMatch(stderr, .contains("Linking TestableExePackageTests"))
XCTAssertMatch(stderr, .contains("Build complete!"))
// in "swift test" test output goes to stdout
XCTAssertMatch(stdout, .contains("Executed 1 test"))
XCTAssertMatch(stdout, .contains("Hello, world"))
XCTAssertMatch(stdout, .contains("Hello, planet"))
} catch {
#if os(macOS) && arch(arm64)
// Add some logging but ignore the failure for an environment being investigated.
let (stdout, stderr) = try await executeSwiftTest(fixturePath, extraArgs: ["-v"])
print("testTestsCanLinkAgainstExecutable failed")
print("ENV:\n")
for (k, v) in Environment.current.sorted(by: { $0.key < $1.key }) {
print(" \(k)=\(v)")
}
print("STDOUT:\n\(stdout)")
print("STDERR:\n\(stderr)")
#else
XCTFail("\(error)")
#endif
}
}
}
func testTestsCanLinkAgainstAsyncExecutable() async throws {
#if compiler(<5.10)
try XCTSkipIf(true, "skipping because host compiler doesn't have a fix for symbol conflicts yet")
#endif
try await fixture(name: "Miscellaneous/TestableAsyncExe") { fixturePath in
let (stdout, stderr) = try await executeSwiftTest(fixturePath)
// in "swift test" build output goes to stderr
XCTAssertMatch(stderr, .contains("Linking TestableAsyncExe1"))
XCTAssertMatch(stderr, .contains("Linking TestableAsyncExe2"))
XCTAssertMatch(stderr, .contains("Linking TestableAsyncExe3"))
XCTAssertMatch(stderr, .contains("Linking TestableAsyncExe4"))
XCTAssertMatch(stderr, .contains("Linking TestableAsyncExePackageTests"))
XCTAssertMatch(stderr, .contains("Build complete!"))
// in "swift test" test output goes to stdout
XCTAssertMatch(stdout, .contains("Executed 1 test"))
XCTAssertMatch(stdout, .contains("Hello, async world"))
XCTAssertMatch(stdout, .contains("Hello, async planet"))
XCTAssertMatch(stdout, .contains("Hello, async galaxy"))
XCTAssertMatch(stdout, .contains("Hello, async universe"))
}
}
func testExecutableTargetMismatch() async throws {
try await fixture(name: "Miscellaneous/TargetMismatch") { path in
do {
let output = try await executeSwiftBuild(path)
// in "swift build" build output goes to stdout
XCTAssertMatch(output.stdout, .contains("Compiling Sample main.swift"))
XCTAssertMatch(output.stderr, .contains("The target named 'Sample' was identified as an executable target but a non-executable product with this name already exists."))
} catch {
XCTFail("\(error)")
}
}
}
func testLibraryTriesToIncludeExecutableTarget() async throws {
try await fixture(name: "Miscellaneous/PackageWithMalformedLibraryProduct") { path in
await XCTAssertThrowsCommandExecutionError(try await executeSwiftBuild(path)) { error in
// if our code crashes we'll get an exit code of 256
guard error.result.exitStatus == .terminated(code: 1) else {
return XCTFail("failed in an unexpected manner: \(error)")
}
XCTAssertMatch(error.stdout + error.stderr, .contains("library product 'PackageWithMalformedLibraryProduct' should not contain executable targets (it has 'PackageWithMalformedLibraryProduct')"))
}
}
}
func testEditModeEndToEnd() async throws {
try await fixture(name: "Miscellaneous/Edit") { fixturePath in
let prefix = try resolveSymlinks(fixturePath)
let appPath = fixturePath.appending("App")
// prepare the dependencies as git repos
for directory in ["Foo", "Bar"] {
let path = fixturePath.appending(component: directory)
_ = try await AsyncProcess.checkNonZeroExit(args: "git", "-C", path.pathString, "init")
}
do {
// make sure it builds
let output = try await executeSwiftBuild(appPath)
// package resolution output goes to stderr
XCTAssertTrue(output.stderr.contains("Fetching \(prefix)/Foo"), output.stderr)
XCTAssertTrue(output.stderr.contains("Creating working copy for \(prefix)/Foo"), output.stderr)
// in "swift build" build output goes to stdout
XCTAssertTrue(output.stdout.contains("Build complete!"), output.stdout)
}
// put foo into edit mode
_ = try await executeSwiftPackage(appPath, extraArgs: ["edit", "Foo"])
XCTAssertDirectoryExists(appPath.appending(components: ["Packages", "Foo"]))
do {
// build again in edit mode
let output = try await executeSwiftBuild(appPath)
XCTAssertTrue(output.stdout.contains("Build complete!"))
}
do {
// take foo out of edit mode
let output = try await executeSwiftPackage(appPath, extraArgs: ["unedit", "Foo"])
// package resolution output goes to stderr
XCTAssertTrue(output.stderr.contains("Creating working copy for \(prefix)/Foo"), output.stderr)
XCTAssertNoSuchPath(appPath.appending(components: ["Packages", "Foo"]))
}
// build again in edit mode
do {
let output = try await executeSwiftBuild(appPath)
// in "swift build" build output goes to stdout
XCTAssertTrue(output.stdout.contains("Build complete!"), output.stdout)
}
}
}
func testCustomCachePath() async throws {
try await fixture(name: "Miscellaneous/Simple") { path in
let customCachePath = path.appending(components: "custom", "cache")
XCTAssertNoSuchPath(customCachePath)
try await SwiftPM.Build.execute(["--cache-path", customCachePath.pathString], packagePath: path)
XCTAssertDirectoryExists(customCachePath)
}
// `FileSystem` does not support `chmod` on Linux
#if os(macOS)
try await fixture(name: "Miscellaneous/Simple") { path in
try localFileSystem.chmod(.userUnWritable, path: path)
let customCachePath = path.appending(components: "custom", "cache")
XCTAssertNoSuchPath(customCachePath)
await XCTAssertAsyncThrowsError(try await SwiftPM.Build.execute(["--cache-path", customCachePath.pathString], packagePath: path)) { error in
guard case SwiftPMError.executionFailure(_, _, let stderr) = error else {
return XCTFail("invalid error \(error)")
}
XCTAssert(stderr.contains("error: You don’t have permission"), "expected permissions error")
}
XCTAssertNoSuchPath(customCachePath)
}
#endif
}
func testCustomConfigPath() async throws {
try await fixture(name: "Miscellaneous/Simple") { path in
let customConfigPath = path.appending(components: "custom", "config")
XCTAssertNoSuchPath(customConfigPath)
try await SwiftPM.Build.execute(["--config-path", customConfigPath.pathString], packagePath: path)
XCTAssertDirectoryExists(customConfigPath)
}
// `FileSystem` does not support `chmod` on Linux
#if os(macOS)
try await fixture(name: "Miscellaneous/Simple") { path in
try localFileSystem.chmod(.userUnWritable, path: path)
let customConfigPath = path.appending(components: "custom", "config")
XCTAssertNoSuchPath(customConfigPath)
await XCTAssertAsyncThrowsError(try await SwiftPM.Build.execute(["--config-path", customConfigPath.pathString], packagePath: path)) { error in
guard case SwiftPMError.executionFailure(_, _, let stderr) = error else {
return XCTFail("invalid error \(error)")
}
XCTAssert(stderr.contains("error: You don’t have permission"), "expected permissions error")
}
XCTAssertNoSuchPath(customConfigPath)
}
#endif
}
func testCustomSecurityPath() async throws {
try await fixture(name: "Miscellaneous/Simple") { path in
let customSecurityPath = path.appending(components: "custom", "security")
XCTAssertNoSuchPath(customSecurityPath)
try await SwiftPM.Build.execute(["--security-path", customSecurityPath.pathString], packagePath: path)
XCTAssertDirectoryExists(customSecurityPath)
}
// `FileSystem` does not support `chmod` on Linux
#if os(macOS)
try await fixture(name: "Miscellaneous/Simple") { path in
try localFileSystem.chmod(.userUnWritable, path: path)
let customSecurityPath = path.appending(components: "custom", "security")
XCTAssertNoSuchPath(customSecurityPath)
await XCTAssertAsyncThrowsError(try await SwiftPM.Build.execute(["--security-path", customSecurityPath.pathString], packagePath: path)) { error in
guard case SwiftPMError.executionFailure(_, _, let stderr) = error else {
return XCTFail("invalid error \(error)")
}
XCTAssert(stderr.contains("error: You don’t have permission"), "expected permissions error")
}
}
#endif
}
func testPluginGeneratedResources() async throws {
// Only run the test if the environment in which we're running actually supports Swift concurrency (which the plugin APIs require).
try XCTSkipIf(!UserToolchain.default.supportsSwiftConcurrency(), "skipping because test environment doesn't support concurrency")
try await fixture(name: "Miscellaneous/PluginGeneratedResources") { path in
let result = try await SwiftPM.Run.execute(packagePath: path)
XCTAssertEqual(result.stdout, "Hello, World!\n", "executable did not produce expected output")
XCTAssertTrue(result.stderr.contains("Copying best.txt\n"), "build log is missing message about copying resource file")
}
}
func testCompileCXX17CrashWithFModules() async throws {
try await fixture(name: "Miscellaneous/CXX17CompilerCrash/v5_8") { fixturePath in
await XCTAssertBuilds(fixturePath)
}
}
func testNoJSONOutputWithFlatPackageStructure() async throws {
try await fixture(name: "Miscellaneous/FlatPackage") { package in
// First build, make sure we got the `.build` directory where we expect it, and that there is no JSON output (by looking for known output).
let (stdout1, stderr1) = try await SwiftPM.Build.execute(packagePath: package)
XCTAssertDirectoryExists(package.appending(".build"))
XCTAssertNoMatch(stdout1, .contains("command_arguments"))
XCTAssertNoMatch(stderr1, .contains("command_arguments"))
// Now test, make sure we got the `.build` directory where we expect it, and that there is no JSON output (by looking for known output).
let (stdout2, stderr2) = try await SwiftPM.Test.execute(packagePath: package)
XCTAssertDirectoryExists(package.appending(".build"))
XCTAssertNoMatch(stdout2, .contains("command_arguments"))
XCTAssertNoMatch(stderr2, .contains("command_arguments"))
}
}
func testNoWarningFromRemoteDependencies() async throws {
try await fixture(name: "Miscellaneous/DependenciesWarnings") { path in
// prepare the deps as git sources
let dependency1Path = path.appending("dep1")
initGitRepo(dependency1Path, tag: "1.0.0")
let dependency2Path = path.appending("dep2")
initGitRepo(dependency2Path, tag: "1.0.0")
let appPath = path.appending("app")
let (stdout, stderr) = try await SwiftPM.Build.execute(packagePath: appPath)
XCTAssertDirectoryExists(appPath.appending(".build"))
XCTAssertMatch(stdout + stderr, .contains("'DeprecatedApp' is deprecated"))
XCTAssertNoMatch(stdout + stderr, .contains("'Deprecated1' is deprecated"))
XCTAssertNoMatch(stdout + stderr, .contains("'Deprecated2' is deprecated"))
}
}
func testNoWarningFromRemoteDependenciesWithWarningsAsErrors() async throws {
try await fixture(name: "Miscellaneous/DependenciesWarnings2") { path in
// prepare the deps as git sources
let dependency1Path = path.appending("dep1")
initGitRepo(dependency1Path, tag: "1.0.0")
let dependency2Path = path.appending("dep2")
initGitRepo(dependency2Path, tag: "1.0.0")
let appPath = path.appending("app")
let (stdout, stderr) = try await SwiftPM.Build.execute(["-Xswiftc", "-warnings-as-errors"], packagePath: appPath)
XCTAssertDirectoryExists(appPath.appending(".build"))
XCTAssertNoMatch(stdout + stderr, .contains("'Deprecated1' is deprecated"))
XCTAssertNoMatch(stdout + stderr, .contains("'Deprecated2' is deprecated"))
}
}
func testRootPackageWithConditionals() async throws {
try await fixture(name: "Miscellaneous/RootPackageWithConditionals") { path in
let (_, stderr) = try await SwiftPM.Build.execute(packagePath: path, env: ["SWIFT_DRIVER_SWIFTSCAN_LIB" : "/this/is/a/bad/path"])
let errors = stderr.components(separatedBy: .newlines).filter { !$0.contains("[logging] misuse") && !$0.isEmpty }
XCTAssertEqual(errors, [], "unexpected errors: \(errors)")
}
}
}
|