element-ios/RiotTests/EmojiStoreTests.swift
Doug 66a2d9f5ea
Stop using an ephemeral web browser session on SSO (#6464)
Rename the bundle name to Element for the SSO alert.

* Fix unit tests after bundle name change.

* Update slather for bundle name change.
2022-07-27 12:13:31 +01:00

60 lines
1.8 KiB
Swift
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Copyright 2021 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 XCTest
@testable import Element
class EmojiStoreTests: XCTestCase {
func testFinds💯WhenSearchingForHundred() {
find("hundred", expect: "💯")
}
func testFinds💯WhenSearchingFor100() {
find("100", expect: "💯")
}
func testFinds2WhenSearchingForTwo() {
find("two", expect: "2")
}
func testFinds2WhenSearchingFor2() {
find("2", expect: "2")
}
// MARK: - Private
private func find(_ searchText: String, expect emoji: String) {
loadEmojiStore { emojiStore in
let emojis = emojiStore.findEmojiItemsSortedByCategory(with: searchText).flatMap { $0.emojis.map { $0.value } }
XCTAssert(emojis.contains(emoji), "Search text \"\(searchText)\" should find \"\(emoji)\" but only found \(emojis)")
}
}
private func loadEmojiStore(_ completion: @escaping (EmojiStore) -> Void) {
EmojiMartService().getEmojiCategories { response in
switch response {
case .success(let categories):
let store = EmojiStore()
store.set(categories)
completion(store)
case .failure(let error):
XCTFail("Failed to load emojis: \(error)")
}
}
}
}