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")
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
private func enterAndAssertScreen(withTitle title: String) {
|
2023-10-14 05:50:38 +00:00
|
|
|
XCUIApplication().activate()
|
2016-12-07 14:28:29 +00:00
|
|
|
let elem = XCUIApplication().collectionViews.cells.staticTexts[title]
|
2023-10-14 05:50:38 +00:00
|
|
|
|
|
|
|
|
var numberOfTries = 0
|
|
|
|
|
while !elem.isHittable {
|
2016-12-07 14:28:29 +00:00
|
|
|
XCUIApplication().collectionViews.element.swipeUp()
|
2023-10-14 05:50:38 +00:00
|
|
|
numberOfTries += 1
|
|
|
|
|
if numberOfTries >= 10 {
|
|
|
|
|
break
|
|
|
|
|
}
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|
2017-05-16 14:30:08 +00:00
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
XCTAssertTrue(elem.exists)
|
2017-05-16 14:30:08 +00:00
|
|
|
elem.tap()
|
2016-12-07 14:28:29 +00:00
|
|
|
XCTAssertTrue(XCUIApplication().navigationBars[title].exists)
|
2016-12-01 18:28:57 +00:00
|
|
|
}
|
|
|
|
|
}
|