// // Copyright 2019 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only // import Foundation import LibSignalClient #if TESTABLE_BUILD @objc public class FakeAccountServiceClient: AccountServiceClient { @objc public override init() {} // MARK: - Public public override func getPreKeysCount(for identity: OWSIdentity) -> Promise<(ecCount: Int, pqCount: Int)> { return Promise { $0.resolve((ecCount: 0, pqCount: 0)) } } public override func setPreKeys( for identity: OWSIdentity, signedPreKeyRecord: SignalServiceKit.SignedPreKeyRecord?, preKeyRecords: [SignalServiceKit.PreKeyRecord]?, pqLastResortPreKeyRecord: KyberPreKeyRecord?, pqPreKeyRecords: [KyberPreKeyRecord]?, auth: ChatServiceAuth ) -> Promise { return .value(()) } public override func setSignedPreKey(_ signedPreKey: SignalServiceKit.SignedPreKeyRecord, for identity: OWSIdentity) -> Promise { return Promise { $0.resolve() } } public override func updatePrimaryDeviceAccountAttributes() async throws -> AccountAttributes { throw OWSGenericError("Not implemented.") } public override func getAccountWhoAmI() -> Promise { return Promise { $0.resolve(WhoAmIRequestFactory.Responses.WhoAmI( aci: Aci.randomForTesting(), pni: Pni.randomForTesting(), e164: E164("+17735550199")!, usernameHash: nil )) } } } #endif