mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
Swift
67 lines
1.7 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import Combine
|
|
import GRDB
|
|
import SessionUtilitiesKit
|
|
|
|
extension KeyPair: Mocked {
|
|
static var mockValue: KeyPair = KeyPair(
|
|
publicKey: Data(hex: TestConstants.publicKey).bytes,
|
|
secretKey: Data(hex: TestConstants.edSecretKey).bytes
|
|
)
|
|
}
|
|
|
|
extension Database: Mocked {
|
|
static var mockValue: Database {
|
|
var result: Database!
|
|
try! DatabaseQueue().read { result = $0 }
|
|
return result!
|
|
}
|
|
}
|
|
|
|
extension Job: Mocked {
|
|
static var mockValue: Job = Job(variant: .messageSend)
|
|
}
|
|
|
|
extension Job.Variant: Mocked {
|
|
static var mockValue: Job.Variant = .messageSend
|
|
}
|
|
|
|
extension Network.RequestType: MockedGeneric {
|
|
typealias Generic = T
|
|
|
|
static func mockValue(type: T.Type) -> Network.RequestType<T> {
|
|
return Network.RequestType(id: "mock") { _ in Fail(error: MockError.mockedData).eraseToAnyPublisher() }
|
|
}
|
|
}
|
|
|
|
extension AnyPublisher: MockedGeneric where Failure == Error {
|
|
typealias Generic = Output
|
|
|
|
static func mockValue(type: Output.Type) -> AnyPublisher<Output, Error> {
|
|
return Fail(error: MockError.mockedData).eraseToAnyPublisher()
|
|
}
|
|
}
|
|
|
|
extension Array: MockedGeneric {
|
|
typealias Generic = Element
|
|
|
|
static func mockValue(type: Element.Type) -> [Element] { return [] }
|
|
}
|
|
|
|
extension Dictionary: MockedDoubleGeneric {
|
|
typealias GenericA = Key
|
|
typealias GenericB = Value
|
|
|
|
static func mockValue(typeA: Key.Type, typeB: Value.Type) -> [Key: Value] { return [:] }
|
|
}
|
|
|
|
extension URLRequest: Mocked {
|
|
static var mockValue: URLRequest = URLRequest(url: URL(fileURLWithPath: "mock"))
|
|
}
|
|
|
|
extension NoResponse: Mocked {
|
|
static var mockValue: NoResponse = NoResponse()
|
|
}
|