Generated mocks

OfflineTests fixes
This commit is contained in:
Lukas Korba 2024-12-05 12:07:42 +01:00
parent 92bd2e6f5a
commit 05002a8a8f
9 changed files with 28 additions and 28 deletions

View File

@ -47,7 +47,7 @@ class SendViewController: UIViewController {
walletBirthday: DemoAppConfig.defaultBirthdayHeight,
for: .existingWallet,
name: "",
keySource: nil
keySource: ""
) { result in
loggerProxy.debug("Prepare result: \(result)")
}

View File

@ -72,7 +72,7 @@ class SyncBlocksListViewController: UIViewController {
walletBirthday: synchronizerData.birthday,
for: .existingWallet,
name: "",
keySource: nil
keySource: ""
)
}

View File

@ -104,7 +104,7 @@ class SyncBlocksViewController: UIViewController {
walletBirthday: DemoAppConfig.defaultBirthdayHeight,
for: .existingWallet,
name: "",
keySource: nil
keySource: ""
)
} catch {
loggerProxy.error(error.toZcashError().message)

View File

@ -101,7 +101,7 @@ class ClosureSynchronizerOfflineTests: XCTestCase {
}
func testPrepareSucceed() throws {
synchronizerMock.prepareWithWalletBirthdayForClosure = { receivedSeed, receivedWalletBirthday, _ in
synchronizerMock.prepareWithWalletBirthdayForNameKeySourceClosure = { receivedSeed, receivedWalletBirthday, _, _, _ in
XCTAssertEqual(receivedSeed, self.data.seed)
XCTAssertEqual(receivedWalletBirthday, self.data.birthday)
return .success
@ -109,7 +109,7 @@ class ClosureSynchronizerOfflineTests: XCTestCase {
let expectation = XCTestExpectation()
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet) { result in
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet, name: "", keySource: "") { result in
switch result {
case let .success(status):
XCTAssertEqual(status, .success)
@ -123,13 +123,13 @@ class ClosureSynchronizerOfflineTests: XCTestCase {
}
func testPrepareThrowsError() throws {
synchronizerMock.prepareWithWalletBirthdayForClosure = { _, _, _ in
synchronizerMock.prepareWithWalletBirthdayForNameKeySourceClosure = { _, _, _, _, _ in
throw "Some error"
}
let expectation = XCTestExpectation()
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet) { result in
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet, name: "", keySource: "") { result in
switch result {
case .success:
XCTFail("Error should be thrown.")

View File

@ -101,7 +101,7 @@ class CombineSynchronizerOfflineTests: XCTestCase {
}
func testPrepareSucceed() throws {
synchronizerMock.prepareWithWalletBirthdayForClosure = { receivedSeed, receivedWalletBirthday, _ in
synchronizerMock.prepareWithWalletBirthdayForNameKeySourceClosure = { receivedSeed, receivedWalletBirthday, _, _, _ in
XCTAssertEqual(receivedSeed, self.data.seed)
XCTAssertEqual(receivedWalletBirthday, self.data.birthday)
return .success
@ -109,7 +109,7 @@ class CombineSynchronizerOfflineTests: XCTestCase {
let expectation = XCTestExpectation()
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet)
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet, name: "", keySource: "")
.sink(
receiveCompletion: { result in
switch result {
@ -129,13 +129,13 @@ class CombineSynchronizerOfflineTests: XCTestCase {
}
func testPrepareThrowsError() throws {
synchronizerMock.prepareWithWalletBirthdayForClosure = { _, _, _ in
synchronizerMock.prepareWithWalletBirthdayForNameKeySourceClosure = { _, _, _, _, _ in
throw "Some error"
}
let expectation = XCTestExpectation()
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet)
synchronizer.prepare(with: data.seed, walletBirthday: data.birthday, for: .newWallet, name: "", keySource: "")
.sink(
receiveCompletion: { result in
switch result {

View File

@ -274,7 +274,7 @@ class SynchronizerOfflineTests: ZcashTestCase {
let synchronizer = SDKSynchronizer(initializer: initializer)
do {
_ = try await synchronizer.prepare(with: Environment.seedBytes, walletBirthday: 123000, for: .newWallet)
_ = try await synchronizer.prepare(with: Environment.seedBytes, walletBirthday: 123000, for: .newWallet, name: "", keySource: "")
XCTFail("Failure of prepare is expected.")
} catch {
if let error = error as? ZcashError, case let .initializerCantUpdateURLWithAlias(failedURL) = error {

View File

@ -55,7 +55,7 @@ class WalletTests: ZcashTestCase {
let synchronizer = SDKSynchronizer(initializer: wallet)
do {
guard case .success = try await synchronizer.prepare(with: seedData.bytes, walletBirthday: 663194, for: .newWallet) else {
guard case .success = try await synchronizer.prepare(with: seedData.bytes, walletBirthday: 663194, for: .newWallet, name: "", keySource: "") else {
XCTFail("Failed to initDataDb. Expected `.success` got: `.seedRequired`")
return
}

View File

@ -1350,25 +1350,25 @@ class SynchronizerMock: Synchronizer {
// MARK: - prepare
var prepareWithWalletBirthdayForThrowableError: Error?
var prepareWithWalletBirthdayForCallsCount = 0
var prepareWithWalletBirthdayForCalled: Bool {
return prepareWithWalletBirthdayForCallsCount > 0
var prepareWithWalletBirthdayForNameKeySourceThrowableError: Error?
var prepareWithWalletBirthdayForNameKeySourceCallsCount = 0
var prepareWithWalletBirthdayForNameKeySourceCalled: Bool {
return prepareWithWalletBirthdayForNameKeySourceCallsCount > 0
}
var prepareWithWalletBirthdayForReceivedArguments: (seed: [UInt8]?, walletBirthday: BlockHeight, walletMode: WalletInitMode)?
var prepareWithWalletBirthdayForReturnValue: Initializer.InitializationResult!
var prepareWithWalletBirthdayForClosure: (([UInt8]?, BlockHeight, WalletInitMode) async throws -> Initializer.InitializationResult)?
var prepareWithWalletBirthdayForNameKeySourceReceivedArguments: (seed: [UInt8]?, walletBirthday: BlockHeight, walletMode: WalletInitMode, name: String, keySource: String?)?
var prepareWithWalletBirthdayForNameKeySourceReturnValue: Initializer.InitializationResult!
var prepareWithWalletBirthdayForNameKeySourceClosure: (([UInt8]?, BlockHeight, WalletInitMode, String, String?) async throws -> Initializer.InitializationResult)?
func prepare(with seed: [UInt8]?, walletBirthday: BlockHeight, for walletMode: WalletInitMode) async throws -> Initializer.InitializationResult {
if let error = prepareWithWalletBirthdayForThrowableError {
func prepare(with seed: [UInt8]?, walletBirthday: BlockHeight, for walletMode: WalletInitMode, name: String, keySource: String?) async throws -> Initializer.InitializationResult {
if let error = prepareWithWalletBirthdayForNameKeySourceThrowableError {
throw error
}
prepareWithWalletBirthdayForCallsCount += 1
prepareWithWalletBirthdayForReceivedArguments = (seed: seed, walletBirthday: walletBirthday, walletMode: walletMode)
if let closure = prepareWithWalletBirthdayForClosure {
return try await closure(seed, walletBirthday, walletMode)
prepareWithWalletBirthdayForNameKeySourceCallsCount += 1
prepareWithWalletBirthdayForNameKeySourceReceivedArguments = (seed: seed, walletBirthday: walletBirthday, walletMode: walletMode, name: name, keySource: keySource)
if let closure = prepareWithWalletBirthdayForNameKeySourceClosure {
return try await closure(seed, walletBirthday, walletMode, name, keySource)
} else {
return prepareWithWalletBirthdayForReturnValue
return prepareWithWalletBirthdayForNameKeySourceReturnValue
}
}

View File

@ -111,7 +111,7 @@ class TestCoordinator {
}
func prepare(seed: [UInt8]) async throws -> Initializer.InitializationResult {
return try await synchronizer.prepare(with: seed, walletBirthday: self.birthday, for: .newWallet)
return try await synchronizer.prepare(with: seed, walletBirthday: self.birthday, for: .newWallet, name: "", keySource: "")
}
func stop() async throws {