mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-11 13:59:13 +00:00

* Refine focus behavior * Begin draft mode * Add alert on poll form * Add poll ended asset * Add fallback text for ended poll event * Cleanup * Fix assets * Remove poll feature flags * Fix UI tests * Fix ui tests * Refine discard poll alert * Remove unused import * Rename hasDraftContent -> hasContent * Restore createPoll-2 ref screenshots
70 lines
2.2 KiB
Swift
70 lines
2.2 KiB
Swift
//
|
|
// Copyright 2022 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 ElementX
|
|
import XCTest
|
|
|
|
@MainActor
|
|
class CreatePollScreenUITests: XCTestCase {
|
|
func testEmptyScreen() async throws {
|
|
let app = Application.launch(.createPoll)
|
|
try await app.assertScreenshot(.createPoll)
|
|
}
|
|
|
|
func testFilledPoll() async throws {
|
|
let app = Application.launch(.createPoll)
|
|
let questionTextField = app.textFields[A11yIdentifiers.createPollScreen.question]
|
|
questionTextField.tap()
|
|
questionTextField.typeText("Do you like polls?")
|
|
|
|
let option1TextField = app.textFields[A11yIdentifiers.createPollScreen.optionID(0)]
|
|
option1TextField.tap()
|
|
option1TextField.typeText("Yes")
|
|
|
|
let option2TextField = app.textFields[A11yIdentifiers.createPollScreen.optionID(1)]
|
|
option2TextField.tap()
|
|
option2TextField.typeText("No\n")
|
|
|
|
let createButton = app.buttons[A11yIdentifiers.createPollScreen.create]
|
|
XCTAssertTrue(createButton.isEnabled)
|
|
|
|
try await app.assertScreenshot(.createPoll, step: 1)
|
|
}
|
|
|
|
func testMaxOptions() async throws {
|
|
let app = Application.launch(.createPoll)
|
|
let createButton = app.buttons[A11yIdentifiers.createPollScreen.create]
|
|
let addOption = app.buttons[A11yIdentifiers.createPollScreen.addOption]
|
|
|
|
for _ in 1...18 {
|
|
if !addOption.exists {
|
|
app.swipeUp()
|
|
}
|
|
addOption.tap()
|
|
}
|
|
|
|
if app.keyboards.count > 0 {
|
|
app.typeText("\n")
|
|
}
|
|
app.swipeUp()
|
|
|
|
XCTAssertFalse(addOption.exists)
|
|
XCTAssertFalse(createButton.isEnabled)
|
|
|
|
try await app.assertScreenshot(.createPoll, step: 2)
|
|
}
|
|
}
|