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
|
// This source file is part of the Swift.org open source project
//
// Copyright 2019-2020 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 Swift project authors
import XCTest
// The Swift package has llbuildSwift as module
#if SWIFT_PACKAGE
import llbuild
import llbuildSwift
#else
import llbuild
#endif
import llbuildTestSupport
// Command that always fails.
class FailureCommand: ExternalCommand {
func getSignature(_ command: Command) -> [UInt8] {
return []
}
func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface) -> Bool {
return false
}
}
protocol ExpectationCommand: AnyObject {
func isFulfilled() -> Bool
}
// Command that expects to be executed.
class BasicCommand: ExternalCommand, ExpectationCommand {
private var executed = false
var completedTime: DispatchTime?
func getSignature(_ command: Command) -> [UInt8] {
return []
}
func start(_ command: Command, _ commandInterface: BuildSystemCommandInterface) {}
func provideValue(_ command: Command, _ commandInterface: BuildSystemCommandInterface, _ buildValue: BuildValue, _ inputID: UInt) {}
func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface) -> Bool {
executed = true
completedTime = DispatchTime.now()
return true
}
func isFulfilled() -> Bool {
return executed
}
}
// Command that expects to be executed after dependencies have executed.
class DependentCommand: BasicCommand {
private var expectedValues: Set<UInt> = []
private let dependencyNames: [String]
private let discoveredDependencyNames: [String]
init(dependencyNames: [String] = [], discoveredDependencyNames: [String] = []) {
self.dependencyNames = dependencyNames
self.discoveredDependencyNames = discoveredDependencyNames
}
override func start(_ command: Command, _ commandInterface: BuildSystemCommandInterface) {
super.start(command, commandInterface)
for (index, name) in dependencyNames.enumerated() {
let key = BuildKey.CustomTask(name: name, taskData: "")
let inputID = UInt(index)
expectedValues.insert(inputID)
commandInterface.commandNeedsInput(key: key, inputID: inputID)
}
}
override func provideValue(_ command: Command, _ commandInterface: BuildSystemCommandInterface, _ buildValue: BuildValue, _ inputID: UInt) {
super.provideValue(command, commandInterface, buildValue, inputID)
expectedValues.remove(inputID)
}
override func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface) -> Bool {
let result = super.execute(command, commandInterface)
discoveredDependencyNames.forEach { name in
let key = BuildKey.CustomTask(name: name, taskData: "")
commandInterface.commandDiscoveredDependency(key: key)
}
return result
}
override func isFulfilled() -> Bool {
super.isFulfilled() && expectedValues.isEmpty
}
}
/// Command that is executed without blocking the execution lanes.
class DetachedCommand: BasicCommand, ExternalDetachedCommand {
var shouldExecuteDetached: Bool { true }
var startedTime: DispatchTime?
var isCancelled = false
private let sema = DispatchSemaphore(value: 0)
func cancelDetached(_ command: Command) {
isCancelled = true
sema.signal()
}
func executeDetached(
_ command: Command,
_ commandInterface: BuildSystemCommandInterface,
_ jobContext: JobContext,
_ resultFn: @escaping (CommandResult, BuildValue?) -> ()
) {
startedTime = DispatchTime.now()
DispatchQueue(label: "detached").async {
_ = self.sema.wait(timeout: .now() + 1)
let result = super.execute(command, commandInterface) ? CommandResult.succeeded : CommandResult.failed
resultFn(result, nil)
}
}
}
/// Command that blocks execution for 1 second.
class DelayedCommand: BasicCommand {
override func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface) -> Bool {
sleep(1)
return super.execute(command, commandInterface)
}
}
/// Invokes a block when executed.
class CustomBlockCommand: BasicCommand {
let block: () -> ()
init(_ block: @escaping () -> ()) {
self.block = block
}
override func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface) -> Bool {
defer {
block()
}
return super.execute(command, commandInterface)
}
}
final class TestTool: Tool {
var expectedCommands: [String: ExternalCommand]
init(expectedCommands: [String: ExternalCommand]) {
self.expectedCommands = expectedCommands
}
func createCommand(_ name: String) -> ExternalCommand? {
guard let command = expectedCommands[name] else {
XCTFail("Command \(name) not expected.")
return nil
}
return command
}
func createCustomCommand(_ key: BuildKey.CustomTask) -> ExternalCommand? {
guard let command = expectedCommands[key.name] else {
XCTFail("Command \(key.name) not expected.")
return nil
}
return command
}
}
final class TestBuildSystemDelegate: BuildSystemDelegate {
let tool: Tool
init(tool: Tool) {
self.tool = tool
}
var fs: FileSystem?
func lookupTool(_ name: String) -> Tool? {
return tool
}
func hadCommandFailure() {}
func handleDiagnostic(_ diagnostic: Diagnostic) {}
func commandStatusChanged(_ command: Command, kind: CommandStatusKind) {}
func commandPreparing(_ command: Command) {}
func commandStarted(_ command: Command) {}
func shouldCommandStart(_ command: Command) -> Bool {
return true
}
func commandFinished(_ command: Command, result: CommandResult) {}
func commandFoundDiscoveredDependency(_ command: Command, path: String, kind: DiscoveredDependencyKind) {}
func commandHadError(_ command: Command, message: String) {}
func commandHadNote(_ command: Command, message: String) {}
func commandHadWarning(_ command: Command, message: String) {}
func commandCannotBuildOutputDueToMissingInputs(_ command: Command, output: BuildKey, inputs: [BuildKey]) {}
func cannotBuildNodeDueToMultipleProducers(output: BuildKey, commands: [Command]) {}
func commandProcessStarted(_ command: Command, process: ProcessHandle) {}
func commandProcessHadError(_ command: Command, process: ProcessHandle, message: String) {}
func commandProcessHadOutput(_ command: Command, process: ProcessHandle, data: [UInt8]) {}
func commandProcessFinished(_ command: Command, process: ProcessHandle, result: CommandExtendedResult) {}
func cycleDetected(rules: [BuildKey]) {}
func shouldResolveCycle(rules: [BuildKey], candidate: BuildKey, action: CycleAction) -> Bool {
return false
}
}
class TestBuildSystem {
let delegate: BuildSystemDelegate
let buildSystem: BuildSystem
convenience init(
buildFile: String,
databaseFile: String,
expectedCommands: [String: ExternalCommand],
schedulerLanes: UInt32 = 0
) {
self.init(
buildFile: buildFile,
databaseFile: databaseFile,
tool: TestTool(expectedCommands: expectedCommands),
schedulerLanes: schedulerLanes
)
}
init(
buildFile: String,
databaseFile: String,
tool: Tool,
schedulerLanes: UInt32 = 0
) {
delegate = TestBuildSystemDelegate(tool: tool)
buildSystem = BuildSystem(buildFile: buildFile, databaseFile: databaseFile, delegate: delegate, schedulerLanes: schedulerLanes)
}
func run(target: String) {
XCTAssertTrue(buildSystem.build(target: target))
}
func runNotSuccessful(target: String) {
XCTAssertFalse(buildSystem.build(target: target))
}
}
class BuildSystemEngineTests: XCTestCase {
let basicBuildManifest = """
client:
name: basic
version: 0
file-system: default
tools:
testtool: {}
targets:
all: ["<all>"]
commands:
maincommand:
tool: testtool
inputs: []
outputs: ["<all>"]
"""
func testCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let expectedCommands = [
"maincommand": BasicCommand()
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) did not execute")
}
}
func testDynamicCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let expectedCommands = [
"maincommand": DependentCommand(dependencyNames: ["dependency1"]),
"dependency1": BasicCommand()
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) is not fulfilled")
}
}
func testSerialTransitiveDynamicCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let expectedCommands = [
"maincommand": DependentCommand(dependencyNames: ["dependency1"]),
"dependency1": DependentCommand(dependencyNames: ["dependency2"]),
"dependency2": DependentCommand(dependencyNames: ["dependency3"]),
"dependency3": BasicCommand(),
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) is not fulfilled")
}
}
func testParallelTransitiveDynamicCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let expectedCommands = [
"maincommand": DependentCommand(dependencyNames: ["dependency1", "dependency2", "dependency3"]),
"dependency1": BasicCommand(),
"dependency2": BasicCommand(),
"dependency3": BasicCommand(),
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) is not fulfilled")
}
}
func testDiscoveredDependenciesCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let expectedCommands = [
"maincommand": DependentCommand(discoveredDependencyNames: ["discoveredDependency1"]),
"discoveredDependency1": BasicCommand(),
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) is not fulfilled")
}
}
func testEnhancedCommand() throws {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
// Enhanced command that returns a custom build value
class EnhancedCommand: ExternalCommand, ProducesCustomBuildValue {
private var executed = false
func getSignature(_ command: Command) -> [UInt8] {
return []
}
func start(_ command: Command, _ commandInterface: BuildSystemCommandInterface) {}
func provideValue(_ command: Command, _ commandInterface: BuildSystemCommandInterface, _ buildValue: BuildValue, _ inputID: UInt) {}
func execute(_ command: Command, _ commandInterface: BuildSystemCommandInterface, _ jobContext: JobContext) -> BuildValue {
executed = true
let fileInfo = BuildValueFileInfo(device: 1, inode: 2, mode: 3, size: 4, modTime: BuildValueFileTimestamp())
return BuildValue.SuccessfulCommand(outputInfos: [fileInfo])
}
func isResultValid(_ command: Command, _ buildValue: BuildValue) -> Bool {
guard let value = buildValue as? BuildValue.SuccessfulCommand else {
return false
}
return value.outputInfos.count == 1 && value.outputInfos[0] == BuildValueFileInfo(device: 1, inode: 2, mode: 3, size: 4, modTime: BuildValueFileTimestamp())
}
func wasExecuted() -> Bool {
return executed
}
func reset() {
executed = false
}
}
let expectedCommands = [
"maincommand": EnhancedCommand()
]
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.wasExecuted(), "\(name) did not execute")
}
// reset commands
for (_, command) in expectedCommands {
command.reset()
}
// run subsequent build
buildSystem.run(target: "all")
// check that the commands weren't executed
for (name, command) in expectedCommands {
XCTAssert(!command.wasExecuted(), "\(name) executed on incremental build")
}
// Validate that the custom build value was collected by checking the
// database contents.
let db = try BuildDB(path: databaseFile, clientSchemaVersion: 9)
guard let maincommandResult = try db.lookupRuleResult(buildKey: BuildKey.Command(name: "maincommand")) else {
return XCTFail("Unable to load command value from db")
}
let fileInfo = BuildValueFileInfo(device: 1, inode: 2, mode: 3, size: 4, modTime: BuildValueFileTimestamp())
XCTAssertEqual(maincommandResult.value, BuildValue.SuccessfulCommand(outputInfos: [fileInfo]))
}
func testDetachedCommand() {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let delayedCmd = DelayedCommand()
let detachedCmd1 = DetachedCommand()
let detachedCmd2 = DetachedCommand()
let detachedCmd3 = DetachedCommand()
let basicCmd = BasicCommand()
// The commands will get scheduled in reverse command-name order.
let expectedCommands = [
"maincommand": DependentCommand(dependencyNames: [
"5-delayed",
"4-detached", "3-detached", "2-detached",
"1-basic",
]),
"5-delayed": delayedCmd,
"4-detached": detachedCmd1,
"3-detached": detachedCmd2,
"2-detached": detachedCmd3,
"1-basic": basicCmd,
]
// Using only one execution lane.
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
expectedCommands: expectedCommands,
schedulerLanes: 1
)
buildSystem.run(target: "all")
for (name, command) in expectedCommands {
XCTAssert(command.isFulfilled(), "\(name) did not execute")
}
// Verify that the detached commands were not blocked waiting for the execution lane to open.
XCTAssert(detachedCmd1.startedTime! < delayedCmd.completedTime!)
XCTAssert(detachedCmd2.startedTime! < delayedCmd.completedTime!)
XCTAssert(detachedCmd3.startedTime! < delayedCmd.completedTime!)
// Verify that the detached commands did not block the execution lane.
XCTAssert(Double(basicCmd.completedTime!.uptimeNanoseconds - delayedCmd.completedTime!.uptimeNanoseconds) / Double(NSEC_PER_SEC) < 0.5)
}
func testCancelDetachedCommand() throws {
let buildFile = makeTemporaryFile(basicBuildManifest)
let databaseFile = makeTemporaryFile()
let detachedCmd1 = DetachedCommand()
let detachedCmd2 = DetachedCommand()
let tool = TestTool(expectedCommands: [
"maincommand": DependentCommand(dependencyNames: ["1-detached", "2-detached", "3-block"]),
"1-detached": detachedCmd1,
"2-detached": detachedCmd2,
])
// Using only one execution lane.
let buildSystem = TestBuildSystem(
buildFile: buildFile,
databaseFile: databaseFile,
tool: tool,
schedulerLanes: 1
)
let blockCmd = CustomBlockCommand({
buildSystem.buildSystem.cancel()
})
tool.expectedCommands["3-block"] = blockCmd
buildSystem.runNotSuccessful(target: "all")
XCTAssert(detachedCmd1.isCancelled)
XCTAssert(detachedCmd2.isCancelled)
// Verify that the detached commands cancelled and finished early.
XCTAssert(Double(detachedCmd1.completedTime!.uptimeNanoseconds - blockCmd.completedTime!.uptimeNanoseconds) / Double(NSEC_PER_SEC) < 0.5)
XCTAssert(Double(detachedCmd2.completedTime!.uptimeNanoseconds - blockCmd.completedTime!.uptimeNanoseconds) / Double(NSEC_PER_SEC) < 0.5)
}
}
|