mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
38 lines
1.3 KiB
Swift
38 lines
1.3 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
@_spi(SourceKitLSP) import SKLogging
|
|
import SwiftExtensions
|
|
import XCTest
|
|
|
|
/// Runs the body repeatedly once per second until it returns `true`, giving up after `timeout`.
|
|
///
|
|
/// This is useful to test some request that requires global state to be updated but will eventually converge on the
|
|
/// correct result.
|
|
///
|
|
/// `sleepInterval` is the duration to wait before re-executing the body.
|
|
package func repeatUntilExpectedResult(
|
|
timeout: Duration = defaultTimeoutDuration,
|
|
sleepInterval: Duration = .seconds(1),
|
|
_ body: () async throws -> Bool,
|
|
file: StaticString = #filePath,
|
|
line: UInt = #line
|
|
) async throws {
|
|
for _ in 0..<Int(timeout.seconds / sleepInterval.seconds) {
|
|
if try await body() {
|
|
return
|
|
}
|
|
try await Task.sleep(for: sleepInterval)
|
|
}
|
|
XCTFail("Failed to get expected result", file: file, line: line)
|
|
}
|