62 lines
2.1 KiB
Swift
62 lines
2.1 KiB
Swift
//
|
|
// Copyright 2021-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
import RiotSwiftUI
|
|
import XCTest
|
|
|
|
class PollEditFormUITests: MockScreenTestCase {
|
|
func testInitialStateComponents() {
|
|
app.goToScreenWithIdentifier(MockPollEditFormScreenState.standard.title)
|
|
|
|
XCTAssert(app.scrollViews.firstMatch.exists)
|
|
|
|
XCTAssert(app.staticTexts["Create poll"].exists)
|
|
XCTAssert(app.staticTexts["Poll question or topic"].exists)
|
|
XCTAssert(app.staticTexts["Question or topic"].exists)
|
|
XCTAssert(app.staticTexts["Create options"].exists)
|
|
|
|
XCTAssert(app.textViews.count == 1)
|
|
|
|
XCTAssert(app.textFields.count == 2)
|
|
XCTAssert(app.staticTexts["Option 1"].exists)
|
|
XCTAssert(app.staticTexts["Option 2"].exists)
|
|
|
|
let cancelButton = app.buttons["Cancel"]
|
|
XCTAssert(cancelButton.exists)
|
|
XCTAssertTrue(cancelButton.isEnabled)
|
|
|
|
let addOptionButton = app.buttons["Add option"]
|
|
XCTAssert(addOptionButton.exists)
|
|
XCTAssertTrue(addOptionButton.isEnabled)
|
|
|
|
let createPollButton = app.buttons["Create poll"]
|
|
XCTAssert(createPollButton.exists)
|
|
XCTAssertFalse(createPollButton.isEnabled)
|
|
}
|
|
|
|
func testRemoveAddAnswerOptions() {
|
|
app.goToScreenWithIdentifier(MockPollEditFormScreenState.standard.title)
|
|
|
|
let deleteAnswerOptionButton = app.buttons["Delete answer option"].firstMatch
|
|
|
|
XCTAssert(deleteAnswerOptionButton.waitForExistence(timeout: 2.0))
|
|
deleteAnswerOptionButton.tap()
|
|
|
|
XCTAssert(deleteAnswerOptionButton.waitForExistence(timeout: 2.0))
|
|
deleteAnswerOptionButton.tap()
|
|
|
|
let addOptionButton = app.buttons["Add option"]
|
|
XCTAssert(addOptionButton.waitForExistence(timeout: 2.0))
|
|
XCTAssertTrue(addOptionButton.isEnabled)
|
|
|
|
for i in 1...3 {
|
|
addOptionButton.tap()
|
|
XCTAssert(app.staticTexts["Option \(i)"].waitForExistence(timeout: 2.0))
|
|
}
|
|
}
|
|
}
|