2016-12-01 18:28:57 +00:00
|
|
|
/**
|
|
|
|
|
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
|
|
|
|
|
|
|
|
|
|
The examples provided by Facebook are for non-commercial testing and evaluation
|
|
|
|
|
purposes only. Facebook reserves all rights not expressly granted.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
|
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2016-12-01 18:28:57 +00:00
|
|
|
private func enterAndAssertScreen(withTitle title: String) {
|
2016-12-07 14:28:29 +00:00
|
|
|
let elem = XCUIApplication().collectionViews.cells.staticTexts[title]
|
2016-12-01 18:28:57 +00:00
|
|
|
if !elem.exists {
|
2016-12-07 14:28:29 +00:00
|
|
|
XCUIApplication().collectionViews.element.swipeUp()
|
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
|
|
|
}
|
|
|
|
|
}
|