mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* Introduce a `MediaEventsTimelineFlowCoordinator` * Update SDK API and architecture * Add a feature flag, add translations * Move the media events timeline presentation under the room flow coordinator state machine * Rename `TimelineViewState.timelineViewState` of type `TimelineState` to `timelineState` * Enabled SwiftLint's `trailing_closure` rule and fix the warnings.
45 lines
1.9 KiB
Swift
45 lines
1.9 KiB
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import Combine
|
|
import XCTest
|
|
|
|
@testable import ElementX
|
|
|
|
@MainActor
|
|
class BlockedUsersScreenViewModelTests: XCTestCase {
|
|
func testInitialState() async throws {
|
|
let clientProxy = ClientProxyMock(.init(userID: RoomMemberProxyMock.mockMe.userID))
|
|
|
|
let viewModel = BlockedUsersScreenViewModel(hideProfiles: true,
|
|
clientProxy: clientProxy,
|
|
mediaProvider: MediaProviderMock(configuration: .init()),
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController)
|
|
|
|
let deferred = deferFailure(viewModel.context.$viewState, timeout: 1) { $0.blockedUsers.contains { $0.displayName != nil } }
|
|
try await deferred.fulfill()
|
|
|
|
XCTAssertFalse(viewModel.context.viewState.blockedUsers.isEmpty)
|
|
XCTAssertFalse(clientProxy.profileForCalled)
|
|
}
|
|
|
|
func testProfiles() async throws {
|
|
let clientProxy = ClientProxyMock(.init(userID: RoomMemberProxyMock.mockMe.userID))
|
|
|
|
let viewModel = BlockedUsersScreenViewModel(hideProfiles: false,
|
|
clientProxy: clientProxy,
|
|
mediaProvider: MediaProviderMock(configuration: .init()),
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController)
|
|
|
|
let deferred = deferFulfillment(viewModel.context.$viewState) { $0.blockedUsers.contains { $0.displayName != nil } }
|
|
try await deferred.fulfill()
|
|
|
|
XCTAssertFalse(viewModel.context.viewState.blockedUsers.isEmpty)
|
|
XCTAssertTrue(clientProxy.profileForCalled)
|
|
}
|
|
}
|