mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 01:52:44 +02:00
73 lines
3.0 KiB
Swift
73 lines
3.0 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 RiotSwiftUI
|
|
import XCTest
|
|
|
|
final class ComposerLinkActionUITests: MockScreenTestCase {
|
|
func testCreate() {
|
|
app.goToScreenWithIdentifier(MockComposerLinkActionScreenState.create.title, shouldUseSlowTyping: true)
|
|
XCTAssertFalse(app.buttons[VectorL10n.remove].exists)
|
|
XCTAssertTrue(app.buttons[VectorL10n.cancel].exists)
|
|
let saveButton = app.buttons[VectorL10n.save]
|
|
XCTAssertTrue(saveButton.exists)
|
|
XCTAssertFalse(saveButton.isEnabled)
|
|
XCTAssertFalse(app.textFields["textTextField"].exists)
|
|
let linkTextField = app.textFields["linkTextField"]
|
|
XCTAssertTrue(linkTextField.exists)
|
|
linkTextField.tap()
|
|
linkTextField.clearAndTypeText("element.io")
|
|
XCTAssertTrue(saveButton.isEnabled)
|
|
}
|
|
|
|
func testCreateWithText() {
|
|
app.goToScreenWithIdentifier(MockComposerLinkActionScreenState.createWithText.title, shouldUseSlowTyping: true)
|
|
XCTAssertFalse(app.buttons[VectorL10n.remove].exists)
|
|
XCTAssertTrue(app.buttons[VectorL10n.cancel].exists)
|
|
let saveButton = app.buttons[VectorL10n.save]
|
|
XCTAssertTrue(saveButton.exists)
|
|
XCTAssertFalse(saveButton.isEnabled)
|
|
let textTextField = app.textFields["textTextField"]
|
|
XCTAssertTrue(textTextField.exists)
|
|
let linkTextField = app.textFields["linkTextField"]
|
|
XCTAssertTrue(linkTextField.exists)
|
|
linkTextField.tap()
|
|
linkTextField.typeText("element.io")
|
|
XCTAssertFalse(saveButton.isEnabled)
|
|
textTextField.tap()
|
|
textTextField.typeText("test")
|
|
XCTAssertTrue(saveButton.isEnabled)
|
|
}
|
|
|
|
func testEdit() {
|
|
app.goToScreenWithIdentifier(MockComposerLinkActionScreenState.edit.title, shouldUseSlowTyping: true)
|
|
XCTAssertTrue(app.buttons[VectorL10n.remove].exists)
|
|
XCTAssertTrue(app.buttons[VectorL10n.cancel].exists)
|
|
let saveButton = app.buttons[VectorL10n.save]
|
|
XCTAssertTrue(saveButton.exists)
|
|
XCTAssertFalse(saveButton.isEnabled)
|
|
XCTAssertFalse(app.textFields["textTextField"].exists)
|
|
let linkTextField = app.textFields["linkTextField"]
|
|
XCTAssertTrue(linkTextField.exists)
|
|
let value = linkTextField.value as? String
|
|
XCTAssertEqual(value, "https://element.io")
|
|
linkTextField.clearAndTypeText("")
|
|
XCTAssertFalse(saveButton.isEnabled)
|
|
linkTextField.clearAndTypeText("matrix.org")
|
|
XCTAssertTrue(saveButton.isEnabled)
|
|
}
|
|
}
|