metatext-app-ios-iphone-ipad/HTTP/Sources/Stubbing/StubbingURLProtocol.swift

70 lines
1.9 KiB
Swift
Raw Normal View History

// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
2020-08-31 03:40:58 +02:00
import HTTP
2020-11-09 07:22:20 +01:00
public final class StubbingURLProtocol: URLProtocol {
2020-08-31 03:40:58 +02:00
private static var targetsForURLs = [URL: Target]()
2020-09-07 06:56:18 +02:00
private static var stubsForURLs = [URL: HTTPStub]()
2020-08-31 12:21:01 +02:00
override public class func canInit(with task: URLSessionTask) -> Bool {
true
}
2020-08-31 12:21:01 +02:00
override public class func canInit(with request: URLRequest) -> Bool {
true
}
2020-08-31 12:21:01 +02:00
override public class func canonicalRequest(for request: URLRequest) -> URLRequest {
request
}
2020-08-31 12:21:01 +02:00
override public func startLoading() {
guard
let url = request.url,
2020-09-07 06:56:18 +02:00
let stub = Self.stubsForURLs[url]
?? Self.stub(request: request, target: Self.targetsForURLs[url]) else {
2020-09-01 09:33:49 +02:00
return
}
switch stub {
case let .success((response, data)):
2020-09-07 06:56:18 +02:00
client?.urlProtocol(self, didReceive: response, cacheStoragePolicy: .notAllowed)
client?.urlProtocol(self, didLoad: data)
case let .failure(error):
client?.urlProtocol(self, didFailWithError: error)
}
2020-09-07 06:56:18 +02:00
client?.urlProtocolDidFinishLoading(self)
}
2020-08-31 12:21:01 +02:00
override public func stopLoading() {}
}
2020-09-07 06:56:18 +02:00
public extension StubbingURLProtocol {
static func setStub(_ stub: HTTPStub, forURL url: URL) {
stubsForURLs[url] = stub
}
}
2020-08-31 12:21:01 +02:00
private extension StubbingURLProtocol {
class func stub(
request: URLRequest,
target: Target? = nil,
userInfo: [String: Any] = [:]) -> HTTPStub? {
guard let url = request.url else {
return nil
}
return (target as? Stubbing)?.stub(url: url)
}
}
2020-08-31 03:40:58 +02:00
extension StubbingURLProtocol: TargetProcessing {
2020-08-31 12:21:01 +02:00
public static func process(target: Target) {
2020-09-23 09:04:37 +02:00
if let url = target.urlRequest().url {
2020-08-31 03:40:58 +02:00
targetsForURLs[url] = target
}
}
}