2022-06-06 12:38:07 +03:00
|
|
|
//
|
2022-08-11 08:54:24 +01:00
|
|
|
// Copyright 2022 New Vector Ltd
|
2022-06-06 12:38:07 +03:00
|
|
|
//
|
|
|
|
// 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
|
2022-07-06 14:49:05 +01:00
|
|
|
import XCTest
|
2022-06-06 12:38:07 +03:00
|
|
|
|
|
|
|
class BugReportUITests: XCTestCase {
|
|
|
|
func testInitialStateComponents() {
|
|
|
|
let app = Application.launch()
|
2022-06-21 20:28:42 +03:00
|
|
|
app.goToScreenWithIdentifier(.bugReport)
|
2022-06-06 12:38:07 +03:00
|
|
|
|
2022-06-29 18:32:14 +03:00
|
|
|
verifyInitialStateComponents(in: app)
|
|
|
|
|
2022-06-06 12:38:07 +03:00
|
|
|
XCTAssertFalse(app.images["screenshotImage"].exists)
|
|
|
|
XCTAssertFalse(app.buttons["removeScreenshotButton"].exists)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testToggleSendingLogs() {
|
|
|
|
let app = Application.launch()
|
2022-06-21 20:28:42 +03:00
|
|
|
app.goToScreenWithIdentifier(.bugReport)
|
2022-06-06 12:38:07 +03:00
|
|
|
|
|
|
|
app.switches["sendLogsToggle"].tap()
|
|
|
|
|
|
|
|
let sendingLogsToggle = app.switches["sendLogsToggle"]
|
|
|
|
XCTAssert(sendingLogsToggle.exists)
|
|
|
|
XCTAssertFalse(sendingLogsToggle.isOn)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testReportText() {
|
|
|
|
let app = Application.launch()
|
2022-06-21 20:28:42 +03:00
|
|
|
app.goToScreenWithIdentifier(.bugReport)
|
2022-06-06 12:38:07 +03:00
|
|
|
|
|
|
|
// type 4 chars
|
|
|
|
app.textViews["reportTextView"].tap()
|
|
|
|
app.textViews["reportTextView"].typeText("Test")
|
|
|
|
XCTAssertFalse(app.buttons["sendButton"].isEnabled)
|
|
|
|
|
|
|
|
// type one more char and see the button enabled
|
|
|
|
app.textViews["reportTextView"].tap()
|
|
|
|
app.textViews["reportTextView"].typeText("-")
|
|
|
|
XCTAssert(app.buttons["sendButton"].isEnabled)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testInitialStateComponentsWithScreenshot() {
|
|
|
|
let app = Application.launch()
|
2022-06-21 20:28:42 +03:00
|
|
|
app.goToScreenWithIdentifier(.bugReportWithScreenshot)
|
2022-06-06 12:38:07 +03:00
|
|
|
|
2022-06-29 18:32:14 +03:00
|
|
|
verifyInitialStateComponents(in: app)
|
|
|
|
|
|
|
|
XCTAssert(app.images["screenshotImage"].exists)
|
|
|
|
XCTAssert(app.buttons["removeScreenshotButton"].exists)
|
|
|
|
}
|
2022-06-06 12:38:07 +03:00
|
|
|
|
2022-06-29 18:32:14 +03:00
|
|
|
func verifyInitialStateComponents(in app: XCUIApplication) {
|
|
|
|
XCTAssert(app.navigationBars[ElementL10n.titleActivityBugReport].exists)
|
|
|
|
let descLabel = app.staticTexts["reportBugDescription"]
|
|
|
|
XCTAssert(descLabel.exists)
|
|
|
|
XCTAssertEqual(descLabel.label, ElementL10n.sendBugReportDescription)
|
|
|
|
let sendLogsDescLabel = app.staticTexts["sendLogsDescription"]
|
|
|
|
XCTAssert(sendLogsDescLabel.exists)
|
|
|
|
XCTAssertEqual(sendLogsDescLabel.label, ElementL10n.sendBugReportLogsDescription)
|
2022-06-06 12:38:07 +03:00
|
|
|
XCTAssert(app.textViews["reportTextView"].exists)
|
2022-06-29 18:32:14 +03:00
|
|
|
let sendLogsToggle = app.switches["sendLogsToggle"]
|
|
|
|
XCTAssert(sendLogsToggle.exists)
|
|
|
|
XCTAssert(sendLogsToggle.isOn)
|
|
|
|
let sendLogsLabel = app.staticTexts["sendLogsText"]
|
|
|
|
XCTAssert(sendLogsLabel.exists)
|
|
|
|
XCTAssertEqual(sendLogsLabel.label, ElementL10n.sendBugReportIncludeLogs)
|
2022-06-06 12:38:07 +03:00
|
|
|
let sendButton = app.buttons["sendButton"]
|
|
|
|
XCTAssert(sendButton.exists)
|
2022-06-29 18:32:14 +03:00
|
|
|
XCTAssertEqual(sendButton.label, ElementL10n.actionSend)
|
2022-06-06 12:38:07 +03:00
|
|
|
XCTAssertFalse(sendButton.isEnabled)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extension XCUIElement {
|
|
|
|
var isOn: Bool {
|
|
|
|
(value as? String) == "1"
|
|
|
|
}
|
|
|
|
}
|