mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 03:53:09 +00:00
40 lines
1.3 KiB
Swift
40 lines
1.3 KiB
Swift
//
|
|
// NetworkSessionMockFromFile.swift
|
|
// MasKitTests
|
|
//
|
|
// Created by Ben Chatelain on 2019-01-05.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import MasKit
|
|
|
|
/// Mock NetworkSession for testing with saved JSON response payload files.
|
|
class NetworkSessionMockFromFile: NetworkSessionMock {
|
|
/// Path to response payload file relative to test bundle.
|
|
private let responseFile: String
|
|
|
|
/// Initializes a mock URL session with a file for the response.
|
|
///
|
|
/// - Parameter responseFile: Name of file containing JSON response body.
|
|
init(responseFile: String) {
|
|
self.responseFile = responseFile
|
|
}
|
|
|
|
/// Loads data from a file.
|
|
///
|
|
/// - Parameters:
|
|
/// - url: unused
|
|
/// - completionHandler: Closure which is delivered either data or an error.
|
|
@objc override func loadData(from _: URL, completionHandler: @escaping (Data?, Error?) -> Void) {
|
|
guard let fileURL = Bundle.url(for: responseFile)
|
|
else { fatalError("Unable to load file \(responseFile)") }
|
|
|
|
do {
|
|
let data = try Data(contentsOf: fileURL, options: .mappedIfSafe)
|
|
completionHandler(data, nil)
|
|
} catch {
|
|
print("Error opening file: \(error)")
|
|
completionHandler(nil, error)
|
|
}
|
|
}
|
|
}
|