54 lines
1.5 KiB
Swift
54 lines
1.5 KiB
Swift
//
|
|
// 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<Void> {
|
|
return .value(())
|
|
}
|
|
|
|
public override func setSignedPreKey(_ signedPreKey: SignalServiceKit.SignedPreKeyRecord, for identity: OWSIdentity) -> Promise<Void> {
|
|
return Promise { $0.resolve() }
|
|
}
|
|
|
|
public override func updatePrimaryDeviceAccountAttributes() async throws -> AccountAttributes {
|
|
throw OWSGenericError("Not implemented.")
|
|
}
|
|
|
|
public override func getAccountWhoAmI() -> Promise<WhoAmIRequestFactory.Responses.WhoAmI> {
|
|
return Promise {
|
|
$0.resolve(WhoAmIRequestFactory.Responses.WhoAmI(
|
|
aci: Aci.randomForTesting(),
|
|
pni: Pni.randomForTesting(),
|
|
e164: E164("+17735550199")!,
|
|
usernameHash: nil
|
|
))
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|