mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
60 lines
1.9 KiB
Swift
60 lines
1.9 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2020 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 class Foundation.Bundle
|
|
|
|
final class swiftInspectTests: XCTestCase {
|
|
func testExample() throws {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct
|
|
// results.
|
|
|
|
// Some of the APIs that we use below are available in macOS 10.13 and above.
|
|
guard #available(macOS 10.13, *) else {
|
|
return
|
|
}
|
|
|
|
let fooBinary = productsDirectory.appendingPathComponent("swift-inspect")
|
|
|
|
let process = Process()
|
|
process.executableURL = fooBinary
|
|
|
|
let pipe = Pipe()
|
|
process.standardOutput = pipe
|
|
|
|
try process.run()
|
|
process.waitUntilExit()
|
|
|
|
let data = pipe.fileHandleForReading.readDataToEndOfFile()
|
|
let output = String(data: data, encoding: .utf8)
|
|
|
|
XCTAssertEqual(output, "Hello, world!\n")
|
|
}
|
|
|
|
/// Returns path to the built products directory.
|
|
var productsDirectory: URL {
|
|
#if os(macOS)
|
|
for bundle in Bundle.allBundles where bundle.bundlePath.hasSuffix(".xctest") {
|
|
return bundle.bundleURL.deletingLastPathComponent()
|
|
}
|
|
fatalError("couldn't find the products directory")
|
|
#else
|
|
return Bundle.main.bundleURL
|
|
#endif
|
|
}
|
|
|
|
static var allTests = [
|
|
("testExample", testExample),
|
|
]
|
|
}
|