1

我正在尝试使用 OHHTTPStubs 和 Quick/Nimble 测试 Alamofire 请求存根响应。但是 Alamofire 不处理响应,因此我无法测试结果。

我目前的测试代码是:

OHHTTPStubs.stubRequestsPassingTest({$0.URL!.host == "authenticate.com"}, withStubResponse: { (request: NSURLRequest) -> OHHTTPStubsResponse in
                let obj = ["status": "ok", "data": "something"]
                return OHHTTPStubsResponse(JSONObject: obj, statusCode:200, headers:nil)
            })

            let gitdoRepository: GitdoRepository = GitdoRepository()
            waitUntil(timeout: 2, action: { (done) -> Void in
                gitdoRepository.authenticate("http://authenticate.com", completion: { (error) -> () in
                    expect(error).toNot(beNil())
                })
                NSThread.sleepForTimeInterval(2)
                done()
            })

我在存根闭包中添加了一个断点,以确保 Alamofire 执行请求并调用闭包。然而,客户端的响应闭包永远不会被调用,因此测试不会成功运行。这是验证方法:

func authenticate(authenticationUrl: String, completion: (error: OauthError?) -> ()) {
    Alamofire.request(.POST, authenticationUrl).responseJSON { (request: NSURLRequest?, response: NSHTTPURLResponse?, object: AnyObject?, error: NSError?) -> Void in
        if let error = error {
            completion(error: .HTTPError(error))
        }
        else if let object = object {
            if let oauth = self.oauthParser(object) {
                self.oauth = oauth
                completion(error: nil)
            }
            else {
                completion(error: .UnparseableCredentials)
            }
        }
        else {
            completion(error: .ResponseWithoutCredentials)
        }
    }
}

我对 Alamofire 做错了什么吗?提前致谢

4

1 回答 1

1

我有同样的问题。在挠了两天的头之后,我想我找到了解决方案。您不能expect(self.error).toNot(beNil())在完成块中调用它,而是在您的请求代码之后调用它。像这样:

gitdoRepository.authenticate("http://authenticate.com", completion: { (error) -> () in
                self.error = error
            })
expect(self.error).toEventuallyNot(beNil(), timeout: 3)

当然,您必须声明“错误”变量。请尝试一下,让我知道这是否有效。

于 2015-10-14T20:35:43.287 回答