如何在 XCTest 中等待 T 秒钟而不出现超时错误?

43

我想延迟一个测试的进度 T 秒,而不生成超时。

首先,我尝试了显而易见的方法:

sleep(5)
XCTAssert(<test if state is correct after this delay>)

但是那样做失败了。
接着我尝试了:
let promise = expectation(description: "Just wait 5 seconds")
waitForExpectations(timeout: 5) { (error) in
    promise.fulfill()

    XCTAssert(<test if state is correct after this delay>)
}

我的XCTAssert()现在成功了。但是waitForExpectations()因超时而失败。

根据XCTest等待函数的文档,超时始终被视为测试失败。

我有哪些选择?

3个回答

80
你可以使用XCTWaiter.wait函数。 例如:
let exp = expectation(description: "Test after 5 seconds")
let result = XCTWaiter.wait(for: [exp], timeout: 5.0)
if result == XCTWaiter.Result.timedOut {
    XCTAssert(<test if state is correct after this delay>)
} else {
    XCTFail("Delay interrupted")
}

28

如果你知道某项任务需要多长时间,只希望在等待这段时间后继续测试,你可以使用以下一行代码:

_ = XCTWaiter.wait(for: [expectation(description: "Wait for n seconds")], timeout: 2.0)

13

对我最有效的方法是:

let timeInSeconds = 2.0 // time you need for other tasks to be finished
let expectation = XCTestExpectation(description: "Your expectation")

DispatchQueue.main.asyncAfter(deadline: .now() + timeInSeconds) {
    expectation.fulfill()
}    

wait(for: [expectation], timeout: timeInSeconds + 1.0) // make sure it's more than what you used in AsyncAfter call.

//do your XCTAssertions here
XCTAssertNotNil(value)

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接