2024-01-29 14:55:11 +02:00
|
|
|
//
|
2024-09-06 16:34:30 +03:00
|
|
|
// Copyright 2022-2024 New Vector Ltd.
|
2024-01-29 14:55:11 +02:00
|
|
|
//
|
2024-09-06 16:34:30 +03:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Please see LICENSE in the repository root for full details.
|
2024-01-29 14:55:11 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
import Combine
|
|
|
|
import XCTest
|
|
|
|
|
|
|
|
@testable import ElementX
|
|
|
|
|
|
|
|
@MainActor
|
|
|
|
class GlobalSearchScreenViewModelTests: XCTestCase {
|
|
|
|
var viewModel: GlobalSearchScreenViewModelProtocol!
|
|
|
|
var context: GlobalSearchScreenViewModelType.Context!
|
|
|
|
var cancellables = Set<AnyCancellable>()
|
|
|
|
|
|
|
|
override func setUpWithError() throws {
|
|
|
|
cancellables.removeAll()
|
2024-02-28 18:38:13 +02:00
|
|
|
viewModel = GlobalSearchScreenViewModel(roomSummaryProvider: RoomSummaryProviderMock(.init(state: .loaded(.mockRooms))),
|
2024-10-02 17:41:08 +01:00
|
|
|
mediaProvider: MediaProviderMock(configuration: .init()))
|
2024-01-29 14:55:11 +02:00
|
|
|
context = viewModel.context
|
|
|
|
}
|
|
|
|
|
|
|
|
func testSearching() async throws {
|
|
|
|
let defered = deferFulfillment(context.$viewState) { state in
|
|
|
|
state.rooms.count == 1
|
|
|
|
}
|
|
|
|
|
|
|
|
context.searchQuery = "Second"
|
|
|
|
|
|
|
|
try await defered.fulfill()
|
|
|
|
}
|
|
|
|
|
|
|
|
func testRoomSelection() {
|
|
|
|
let expectation = expectation(description: "Wait for confirmation")
|
|
|
|
|
|
|
|
viewModel.actions
|
|
|
|
.sink { action in
|
|
|
|
switch action {
|
|
|
|
case .select(let roomID):
|
|
|
|
XCTAssertEqual(roomID, "2")
|
|
|
|
expectation.fulfill()
|
|
|
|
default:
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.store(in: &cancellables)
|
|
|
|
|
|
|
|
context.send(viewAction: .select(roomID: "2"))
|
|
|
|
|
|
|
|
waitForExpectations(timeout: 5.0)
|
|
|
|
}
|
|
|
|
}
|