从 XCUITest 中的 URLSession 获取输出

getting output from URLSession in XCUITest

我正在尝试从 XCUI 测试中的 URL 中获取一个值。但是它没有输出所以我不确定除了我已经在下面的代码中尝试过之外我还应该做些什么:

import XCTest

class ExampleUITests: XCTestCase {


func testExample() {
    print("We are in XCUITest textExample right now")

    let urlString = "https://api.ipify.org/"
    guard let url = URL(string: urlString) else { return }

    URLSession.shared.dataTask(with: url) { (data, response, error) in
        if error != nil {
            print(error!.localizedDescription)
        }

        guard let data = data
            else {
                print("error found in data")
                return
        }

        print("*******")
        let outputStr  = String(data: data, encoding: String.Encoding.utf8) as String!
        print (outputStr)

        }.resume()

}

}

问题是,测试完成后返回服务器的响应。你应该在测试中添加等待网络响应。

在测试开始时添加:

let expectation = expectationWithDescription("")

在测试结束时添加:

waitForExpectationsWithTimeout(5.0) { (error) in
    if error != nil {
        XCTFail(error.localizedDescription)
    }
}

并在网络完成块中添加:

expectation.fulfill()

例如,您可以在此处 .

获得有关等待异步任务的更多信息。