2020-08-03 17:20:51 +02:00
|
|
|
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
|
|
|
|
import Combine
|
|
|
|
import CombineExpectations
|
2020-08-31 20:57:02 +02:00
|
|
|
import ServiceLayer
|
2020-09-01 09:33:49 +02:00
|
|
|
import ServiceLayerMocks
|
|
|
|
@testable import ViewModels
|
2020-09-05 04:31:43 +02:00
|
|
|
import XCTest
|
2020-08-03 17:20:51 +02:00
|
|
|
|
|
|
|
class RootViewModelTests: XCTestCase {
|
2020-08-07 03:41:59 +02:00
|
|
|
var cancellables = Set<AnyCancellable>()
|
|
|
|
|
2020-08-03 17:20:51 +02:00
|
|
|
func testAddIdentity() throws {
|
2020-09-01 09:33:49 +02:00
|
|
|
let sut = try RootViewModel(
|
|
|
|
environment: .mock(),
|
|
|
|
registerForRemoteNotifications: { Empty().setFailureType(to: Error.self).eraseToAnyPublisher() })
|
2020-09-08 04:12:38 +02:00
|
|
|
let recorder = sut.$identification.record()
|
2020-08-03 17:20:51 +02:00
|
|
|
|
2020-08-04 22:26:09 +02:00
|
|
|
XCTAssertNil(try wait(for: recorder.next(), timeout: 1))
|
2020-08-03 17:20:51 +02:00
|
|
|
|
|
|
|
let addIdentityViewModel = sut.addIdentityViewModel()
|
|
|
|
|
2020-08-14 03:59:17 +02:00
|
|
|
addIdentityViewModel.addedIdentityID
|
2020-09-09 14:05:43 +02:00
|
|
|
.sink(receiveValue: sut.identitySelected(id:))
|
2020-08-07 03:41:59 +02:00
|
|
|
.store(in: &cancellables)
|
|
|
|
|
2020-08-03 17:20:51 +02:00
|
|
|
addIdentityViewModel.urlFieldText = "https://mastodon.social"
|
2020-08-09 13:27:38 +02:00
|
|
|
addIdentityViewModel.logInTapped()
|
2020-08-03 17:20:51 +02:00
|
|
|
|
2020-08-09 07:37:04 +02:00
|
|
|
let mainNavigationViewModel = try wait(for: recorder.next(), timeout: 1)!
|
2020-08-03 17:20:51 +02:00
|
|
|
|
2020-08-09 07:37:04 +02:00
|
|
|
XCTAssertNotNil(mainNavigationViewModel)
|
2020-08-03 17:20:51 +02:00
|
|
|
}
|
|
|
|
}
|