我将此代码封装在模型类中的一个函数中,该模型类对 UI 一无所知。它是这样工作的:
在你有你的地方
// Update some UI
调用完成闭包,该闭包使用参数传递给函数。
你像这样从你的控制器类调用这个函数
hkModel.selectSteps() {
[unowned self] (query, results, error) in
// update UI
}
这样,您就可以在模型类中的查询逻辑和 UIController 代码之间实现清晰的分离。
现在您可以轻松编写一个调用相同方法的单元测试:
func testSteps() {
hkModel.selectSteps() {
[unowned self] (query, results, error) in
// XCTAssert(...)
}
}
您需要做的最后一件事是尊重您的测试代码是异步调用的:
let stepExpectationEnd = expectationWithDescription("step Query")
hkModel.selectSteps() {
[unowned self] (query, results, error) in
// XCTAssert(...)
stepExpectationEnd.fulfill()
}
waitForExpectationsWithTimeout(10.0) {
(error: NSError?) in
if let error = error {
XCTFail(error.localizedDescription)
}
}
更新
因为你问:
我在测试设置中处理授权。看起来像这样:
var healthData: HealthDataManager?
override func setUp() {
super.setUp()
healthData = HealthDataManager()
XCTAssert(healthData != nil, "healthDadta must be there")
let authorizationAndAScheduleExpectation = expectationWithDescription("Wait for authorizatiion. Might be manual the first time")
healthData?.authorizeHealthKit({ (success: Bool, error: NSError?) -> Void in
print ("success: \(success) error \(error?.localizedDescription)")
// fails on iPad
XCTAssert(success, "authorization error \(error?.localizedDescription)")
self.healthData?.scheduleAll() {
(success:Bool, error:ErrorType?) -> Void in
XCTAssert(success, "scheduleAll error \(error)")
authorizationAndAScheduleExpectation.fulfill()
}
})
waitForExpectationsWithTimeout(60.0) {
error in
if let error = error {
XCTFail(error.localizedDescription)
}
}
}
第一次在模拟器中运行此代码时,您必须手动批准授权。
第一次运行后,无需人工干预即可运行测试。