mas/MasKitTests/Extensions/Bundle+JSON.swift

33 lines
1,011 B
Swift
Raw Normal View History

2019-01-06 19:26:08 +00:00
//
// Bundle+JSON.swift
// MasKitTests
//
// Created by Ben Chatelain on 1/5/19.
// Copyright © 2019 mas-cli. All rights reserved.
//
import Foundation
extension Bundle {
/// Locates a JSON response file from the test bundle.
///
/// - Parameter fileName: Name of file to locate.
/// - Returns: URL to file.
static func jsonResponse(fileName: String) -> URL? {
return Bundle(for: NetworkSessionMock.self).fileURL(fileName: fileName)
2019-01-06 19:26:08 +00:00
}
/// Builds a URL for a file in the JSON directory of the current bundle.
///
/// - Parameter fileName: Name of file to locate.
/// - Returns: URL to file.
func fileURL(fileName: String) -> URL? {
2019-01-12 00:33:41 +00:00
guard let path = self.path(forResource: fileName.fileNameWithoutExtension,
ofType: fileName.fileExtension,
inDirectory: "JSON")
2019-01-30 06:15:24 +00:00
else { fatalError("Unable to load file \(fileName)") }
2019-01-06 19:26:08 +00:00
return URL(fileURLWithPath: path)
}
}