mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 09:02:44 +02:00
76 lines
4.2 KiB
Swift
76 lines
4.2 KiB
Swift
//
|
|
// Copyright 2021 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 RiotSwiftUI
|
|
import XCTest
|
|
|
|
class OnboardingDisplayNameUITests: MockScreenTestCase {
|
|
func testEmptyTextField() {
|
|
app.goToScreenWithIdentifier(MockOnboardingDisplayNameScreenState.emptyTextField.title)
|
|
|
|
let textField = app.textFields.element
|
|
XCTAssertTrue(textField.exists, "The textfield should always be shown.")
|
|
XCTAssertEqual(textField.value as? String, VectorL10n.onboardingDisplayNamePlaceholder, "When the textfield is empty, the value should match the placeholder.")
|
|
XCTAssertEqual(textField.placeholderValue, VectorL10n.onboardingDisplayNamePlaceholder, "The textfield's placeholder should be set.")
|
|
|
|
let footer = app.staticTexts["textFieldFooter"]
|
|
XCTAssertTrue(footer.exists, "The textfield's footer should always be shown.")
|
|
XCTAssertEqual(footer.label, VectorL10n.onboardingDisplayNameHint, "The footer should display a hint when no text is set.")
|
|
|
|
let saveButton = app.buttons["saveButton"]
|
|
XCTAssertTrue(saveButton.exists, "There should be a save button.")
|
|
XCTAssertFalse(saveButton.isEnabled, "The save button should not be enabled.")
|
|
}
|
|
|
|
func testDisplayName() {
|
|
let displayName = "Test User"
|
|
app.goToScreenWithIdentifier(MockOnboardingDisplayNameScreenState.filledTextField(displayName: displayName).title)
|
|
|
|
let textField = app.textFields.element
|
|
XCTAssertTrue(textField.exists, "The textfield should always be shown.")
|
|
XCTAssertEqual(textField.value as? String, displayName, "When a name has been set, it should show in the textfield.")
|
|
XCTAssertEqual(textField.placeholderValue, VectorL10n.onboardingDisplayNamePlaceholder, "The textfield's placeholder should be set.")
|
|
|
|
let saveButton = app.buttons["saveButton"]
|
|
XCTAssertTrue(saveButton.exists, "There should be a save button.")
|
|
XCTAssertTrue(saveButton.isEnabled, "The save button should be enabled.")
|
|
|
|
let footer = app.staticTexts["textFieldFooter"]
|
|
XCTAssertTrue(footer.exists, "The textfield's footer should always be shown.")
|
|
XCTAssertEqual(footer.label, VectorL10n.onboardingDisplayNameHint, "The footer should display a hint when an acceptable name is entered.")
|
|
}
|
|
|
|
func testLongDisplayName() {
|
|
let displayName = """
|
|
Bacon ipsum dolor amet filet mignon chicken kevin andouille. Doner shoulder beef, brisket bresaola turkey jowl venison. Ham hock cow turducken, chislic venison doner short loin strip steak tri-tip jowl. Sirloin pork belly hamburger ribeye. Tail capicola alcatra short ribs turkey doner.
|
|
"""
|
|
app.goToScreenWithIdentifier(MockOnboardingDisplayNameScreenState.longDisplayName(displayName: displayName).title)
|
|
|
|
let textField = app.textFields.element
|
|
XCTAssertTrue(textField.exists, "The textfield should always be shown.")
|
|
XCTAssertEqual(textField.value as? String, displayName, "When a name has been set, it should show in the textfield.")
|
|
XCTAssertEqual(textField.placeholderValue, VectorL10n.onboardingDisplayNamePlaceholder, "The textfield's placeholder should be set.")
|
|
|
|
let footer = app.staticTexts["textFieldFooter"]
|
|
XCTAssertTrue(footer.exists, "The textfield's footer should always be shown.")
|
|
XCTAssertEqual(footer.label, VectorL10n.onboardingDisplayNameMaxLength, "The footer should display an error when the display name is too long.")
|
|
|
|
let saveButton = app.buttons["saveButton"]
|
|
XCTAssertTrue(saveButton.exists, "There should be a save button.")
|
|
XCTAssertFalse(saveButton.isEnabled, "The save button should not be enabled.")
|
|
}
|
|
}
|