所以我在网上做了一些研究,发现的最佳答案要么已过时,要么适用于 Android。任何帮助表示赞赏!
对于我上周完成的另一个项目,我必须为使用 Swift 2.3 的自定义 Heroku/PostGreSQL 后端编写大约 2 打测试用例。我所做的只是在测试开始时创建一个 asyncExpectation 变量,在完成处理程序执行后实现期望,然后在测试的底部等待它实现。
现在我将 Firebase 和 Swift 3 用于一个新项目。出于某种原因,当我取消注释下面的 asyncExpectation.fulfill()
时,没有任何内容添加到数据库中。将其注释掉后,一切正常。我应该如何使用 Firebase 和 Swift 3 测试数据存储/检索?
编辑:我应该在我的在线研究中包含这一点,我发现我可能需要使用调度,但这似乎是嵌套完成处理程序的解决方案,而我的数据库 append
方法并不完全一个completionHandler,所以我不知道如何继续。
class RooMate_v2Tests: XCTestCase {
func testCreateUser() {
let asyncExpectation = expectation(description: "createUserTestOne")
var testSuccess = false
let testUser = (email: "TESTUSER|" + String().randomString(length: 6) + "@test.com", password: String().randomString(length: 6), firstName: "jimmy", lastName: "jenkins")
FIRAuth.auth()?.createUser(withEmail: testUser.email, password: testUser.password) { (user, error) in
if error != nil {
print("Error: \(error.debugDescription)")
} else {
let userProfileInfo = ["firstName" : testUser.firstName,
"lastName" : testUser.lastName,
"email" : testUser.email,
"profilePictureURL" : "N/A"]
let backendRef = FIRDatabase.database().reference()
backendRef.child("users").child("TESTUSER|" + user!.uid).setValue(userProfileInfo)
// testSuccess = true
}
// asyncExpectation.fulfill()
}
waitForExpectations(timeout: 10) { (error) in
XCTAssertTrue(testSuccess)
}
}
}
在我看来,您的问题是您正在等待处理程序中检查 setValue 是否成功。如文档中所述,只有在超时的情况下才会调用处理程序:
A block to be invoked when a call to -waitForExpectationsWithTimeout:handler: times out or has had all associated expectations fulfilled.
我建议你检索刚刚设置的值并检查它,如下所示:
let retrievedUserProfile = backendRef.child("users").child("TESTUSER|" + user!.uid)
XCTAssertTrue(retrievedUserProfile == userProfileInfo)
我不知道这段代码是否正确,只是为了说明我的建议。
希望对你有帮助!
关于ios - Firebase 和 Swift 3 异步单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41091391/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |