2019-12-19 17:32:49 +00:00
|
|
|
|
/*
|
2023-04-06 09:44:16 +00:00
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2019-12-19 17:32:49 +00:00
|
|
|
|
*
|
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-12-01 18:28:57 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import XCTest
|
|
|
|
|
|
|
|
|
|
|
|
final class DemosViewControllerUITests: UITestCase {
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingTailLoading_thatTailLoadingDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Tail Loading")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingSearchAutocomplete_thatSearchAutocompleteDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Search Autocomplete")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingMixedData_thatMixedDataDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Mixed Data")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingNestedAdapter_thatNestedAdapterDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Nested Adapter")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingEmptyView_thatEmptyViewDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Empty View")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingSingleSectionController_thatSingleSectionControllerScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Single Section Controller")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingStoryboard_thatStoryboardDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Storyboard")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingSingleSectionStoryboard_thatSingleSectionStoryboardDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Single Section Storyboard")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingWorkingRange_thatWorkingRangeDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Working Range")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingDiffAlgorithm_thatDiffAlgorithmDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Diff Algorithm")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingSupplementaryViews_thatSupplementaryViewsDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Supplementary Views")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingSelfSizingCells_thatSelfSizingCellsDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Self-sizing cells")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
func test_whenSelectingDisplayDelegate_thatDisplayDelegateDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Display delegate")
|
|
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2023-10-14 05:50:38 +00:00
|
|
|
|
func test_whenSelectingObjcDemo_thatObjcDemoDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Objc Demo")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test_whenSelectingObjcGeneratedModelDemo_thatObjcGeneratedModelDemoDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Objc Generated Model Demo")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test_whenSelectingCalendarDemo_thatCalendarDemoDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Calendar (auto diffing)")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test_whenSelectingDependencyInjection_thatDependencyInjectionDemoDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Dependency Injection")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func test_whenSelectingRecorderCells_thatReorderCellsDemoDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Reorder Cells")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-06-28 17:28:37 +00:00
|
|
|
|
func test_whenSelectingFeedView_thatFeedViewDetailScreenIsPresented() {
|
|
|
|
|
|
enterAndAssertScreen(withTitle: "Feed View")
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
|
private func enterAndAssertScreen(withTitle title: String) {
|
2025-06-28 17:28:37 +00:00
|
|
|
|
let app = XCUIApplication()
|
|
|
|
|
|
app.activate()
|
|
|
|
|
|
|
|
|
|
|
|
let cell = app.collectionViews.cells.staticTexts[title]
|
|
|
|
|
|
scrollToElement(cell)
|
|
|
|
|
|
XCTAssertTrue(cell.exists, "Couldn’t find demo named “\(title)”")
|
|
|
|
|
|
cell.tap()
|
|
|
|
|
|
|
|
|
|
|
|
let exactBar = app.navigationBars[title]
|
|
|
|
|
|
let compactBar = app.navigationBars[title.replacingOccurrences(of: " ", with: "")]
|
|
|
|
|
|
|
2026-01-27 06:07:24 +00:00
|
|
|
|
waitToAppear(element: exactBar, timeout: 5)
|
2025-06-28 17:28:37 +00:00
|
|
|
|
|
|
|
|
|
|
if !exactBar.exists {
|
2026-01-27 06:07:24 +00:00
|
|
|
|
waitToAppear(element: compactBar, timeout: 5)
|
2016-12-01 18:28:57 +00:00
|
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
|
2025-06-28 17:28:37 +00:00
|
|
|
|
XCTAssertTrue(
|
|
|
|
|
|
exactBar.exists || compactBar.exists,
|
|
|
|
|
|
"Expected a navigation bar titled “\(title)” (or its compact form) to appear"
|
|
|
|
|
|
)
|
2016-12-01 18:28:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|