* Add signposts to performance tests. - Update flow to include support for the migration screen. * If the welcome screen shows, click on the button. * Ensure a clean simulator each run. * Add accessibility identifier for migration screen if required. * Handle walking into the room and back out again. * use iphone 14 pro to match what's used in xcode. * Remove ApplicationTests as duplicated in LoginTests. We measure app startup time in LoginTests as part of the flow - we may as well avoid spending 60s doing only that measurement in ApplicationTests * Sleep 10s, the ui is otherwise showing up in random order. * Revert "Remove ApplicationTests as duplicated in LoginTests." This reverts commit 8670710315bcd0d6c3c3046f534b32b4c728b837. * Update script to parse out correct values from results file. * Allow cancellation of password prompt in any order. * Remove test timeout, performance tests will always take a while. * Adjust parsing further * Remove ApplicationTests. * Move to a more elegant way to wait for something to disappear. * Linting. * Fix unit tests. --------- Co-authored-by: Doug <douglase@element.io> Co-authored-by: Doug <6060466+pixlwave@users.noreply.github.com>
136 lines
5.1 KiB
Swift
136 lines
5.1 KiB
Swift
//
|
|
// Copyright 2022 New Vector Ltd
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import Combine
|
|
import XCTest
|
|
|
|
@testable import ElementX
|
|
|
|
@MainActor
|
|
class HomeScreenViewModelTests: XCTestCase {
|
|
var viewModel: HomeScreenViewModelProtocol!
|
|
var clientProxy: MockClientProxy!
|
|
|
|
var context: HomeScreenViewModelType.Context! {
|
|
viewModel.context
|
|
}
|
|
|
|
override func setUpWithError() throws {
|
|
clientProxy = MockClientProxy(userID: "@mock:client.com")
|
|
viewModel = HomeScreenViewModel(userSession: MockUserSession(clientProxy: clientProxy,
|
|
mediaProvider: MockMediaProvider()),
|
|
attributedStringBuilder: AttributedStringBuilder(permalinkBaseURL: ServiceLocator.shared.settings.permalinkBaseURL),
|
|
selectedRoomPublisher: CurrentValueSubject<String?, Never>(nil).asCurrentValuePublisher(),
|
|
appSettings: ServiceLocator.shared.settings,
|
|
analytics: ServiceLocator.shared.analytics,
|
|
userIndicatorController: ServiceLocator.shared.userIndicatorController)
|
|
}
|
|
|
|
func testSelectRoom() async throws {
|
|
let mockRoomId = "mock_room_id"
|
|
var correctResult = false
|
|
var selectedRoomId = ""
|
|
viewModel.callback = { result in
|
|
switch result {
|
|
case .presentRoom(let roomId):
|
|
correctResult = true
|
|
selectedRoomId = roomId
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
context.send(viewAction: .selectRoom(roomIdentifier: mockRoomId))
|
|
await Task.yield()
|
|
XCTAssert(correctResult)
|
|
XCTAssertEqual(mockRoomId, selectedRoomId)
|
|
}
|
|
|
|
func testTapUserAvatar() async throws {
|
|
var correctResult = false
|
|
viewModel.callback = { result in
|
|
switch result {
|
|
case .presentSettingsScreen:
|
|
correctResult = true
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
|
|
context.send(viewAction: .userMenu(action: .settings))
|
|
await Task.yield()
|
|
XCTAssert(correctResult)
|
|
}
|
|
|
|
func testLeaveRoomAlert() async throws {
|
|
let mockRoomId = "1"
|
|
clientProxy.roomForIdentifierMocks[mockRoomId] = .init(with: .init(id: mockRoomId, displayName: "Some room"))
|
|
context.send(viewAction: .leaveRoom(roomIdentifier: mockRoomId))
|
|
await context.nextViewState()
|
|
XCTAssertEqual(context.leaveRoomAlertItem?.roomId, mockRoomId)
|
|
}
|
|
|
|
func testLeaveRoomError() async throws {
|
|
let mockRoomId = "1"
|
|
let room: RoomProxyMock = .init(with: .init(id: mockRoomId, displayName: "Some room"))
|
|
room.leaveRoomClosure = { .failure(.failedLeavingRoom) }
|
|
clientProxy.roomForIdentifierMocks[mockRoomId] = room
|
|
let deferred = deferFulfillment(context.$viewState.first(), message: "viewState should be published.")
|
|
context.send(viewAction: .confirmLeaveRoom(roomIdentifier: mockRoomId))
|
|
try await deferred.fulfill()
|
|
XCTAssertNotNil(context.alertInfo)
|
|
}
|
|
|
|
func testLeaveRoomSuccess() async throws {
|
|
let mockRoomId = "1"
|
|
var correctResult = false
|
|
let expectation = expectation(description: #function)
|
|
viewModel.callback = { result in
|
|
switch result {
|
|
case .roomLeft(let roomIdentifier):
|
|
correctResult = roomIdentifier == mockRoomId
|
|
default:
|
|
break
|
|
}
|
|
expectation.fulfill()
|
|
}
|
|
let room: RoomProxyMock = .init(with: .init(id: mockRoomId, displayName: "Some room"))
|
|
room.leaveRoomClosure = { .success(()) }
|
|
clientProxy.roomForIdentifierMocks[mockRoomId] = room
|
|
context.send(viewAction: .confirmLeaveRoom(roomIdentifier: mockRoomId))
|
|
await fulfillment(of: [expectation])
|
|
XCTAssertNil(context.alertInfo)
|
|
XCTAssertTrue(correctResult)
|
|
}
|
|
|
|
func testShowRoomDetails() async throws {
|
|
let mockRoomId = "1"
|
|
var correctResult = false
|
|
viewModel.callback = { result in
|
|
switch result {
|
|
case .presentRoomDetails(let roomIdentifier):
|
|
correctResult = roomIdentifier == mockRoomId
|
|
default:
|
|
break
|
|
}
|
|
}
|
|
context.send(viewAction: .showRoomDetails(roomIdentifier: mockRoomId))
|
|
await Task.yield()
|
|
XCTAssertNil(context.alertInfo)
|
|
XCTAssertTrue(correctResult)
|
|
}
|
|
}
|