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.
25 lines
879 B
Swift
25 lines
879 B
Swift
2 years ago
|
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
import SessionUtilitiesKit
|
||
|
|
||
|
class MockCrypto: Mock<CryptoType>, CryptoType {
|
||
|
func size(_ size: Crypto.Size) -> Int {
|
||
|
return accept(funcName: "size(\(size.id))", args: size.args) as! Int
|
||
|
}
|
||
|
|
||
|
func perform(_ action: Crypto.Action) throws -> Array<UInt8> {
|
||
|
return try accept(funcName: "perform(\(action.id))", args: action.args) as? Array<UInt8> ?? {
|
||
|
throw CryptoError.failedToGenerateOutput
|
||
|
}()
|
||
|
}
|
||
|
|
||
|
func verify(_ verification: Crypto.Verification) -> Bool {
|
||
|
return accept(funcName: "verify(\(verification.id))", args: verification.args) as! Bool
|
||
|
}
|
||
|
|
||
|
func generate(_ keyPairType: Crypto.KeyPairType) -> KeyPair? {
|
||
|
return accept(funcName: "generate(\(keyPairType.id))", args: keyPairType.args) as? KeyPair
|
||
|
}
|
||
|
}
|