gpt4 book ai didi

ios - 异步服务调用的 TableView 单元测试

转载 作者:行者123 更新时间:2023-11-28 06:16:55 24 4
gpt4 key购买 nike

我正在为我的应用程序编写单元测试用例,该应用程序具有 UITableView 以及来自服务器的数据。除了 numberOfRowsInSection 之外,我已经为我的 TableView 添加了测试用例。

我正在关注以下 UITableView 测试用例的链接: Xcode 5 test UITableview with XCTest Framework

谁能建议如何为 numberOfRowsInSection 编写一个测试用例来显示来自异步服务调用的数据?任何想法或示例都会非常有帮助。

最佳答案

您可以使用 OHHTTPStubs并用 json 伪造你的数据。将带有面部数据的 json 文件添加到您的项目中(注意选择正确的目标)。然后使用下一段代码测试数据:

import XCTest
import OHHTTPStubs

class TestSomeRequest: XCTestCase {

// MARK: - Attributes
fileprivate let endpoint = "yourendpoint"
fileprivate let apiUrl = "yoururl"
fileprivate let path = "yourpath"
}


// MARK: - Setup & Tear Down
extension TestSomeRequest {
override func setUp() {
super.setUp()
stub(condition: isHost((URL(string: apiUrl)?.host)!) && isPath(path), response: {_ in
guard let path = OHPathForFile("TestDataJson.json", type(of: self)) else {
preconditionFailure("Could Not Find Test File!")
}
return OHHTTPStubsResponse(fileAtPath: path, statusCode: 200, headers: ["Content-Type": "application/json"])
})
}

override func tearDown() {
super.tearDown()
OHHTTPStubs.removeAllStubs()
}
}


// MARK: - Tests
extension TestSomeRequest {
func testNumberOfRowsInSection() {
let fetchExpectation = expectation(description: "Test Fetching")
let viewController = YourViewController()
YourDataManager.shared.fetchData(for: endpoint, success: {
XCTAssertEqual(viewController.tableView.numberOfRows(inSection: 0), expectedNumberOfRows, "Number Of Rows In Section 0 Should Match!")
fetchExpectation.fulfill()
}, failure: nil)
waitForExpectations(timeout: 60, handler: nil)
}
}

如果不想造假数据,就用这个测试方法:

func testNumberOfRowsInSection() {
let fetchExpectation = expectation(description: "Test Fetching")
let viewController = YourViewController()
YourDataManager.shared.fetchData(for: endpoint, success: {
XCTAssertEqual(viewController.tableView.numberOfRows(inSection: 0), expectedNumberOfRows, "Number Of Rows In Section 0 Should Match!")
fetchExpectation.fulfill()
}, failure: nil)
waitForExpectations(timeout: 60, handler: nil)
}

关于ios - 异步服务调用的 TableView 单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44852739/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com