tests/qml: add test for 'About Jami' button on welcome page

GitLab: #1484
Change-Id: I4f8f577c2039ef4a2fc9e4ed731d540e26563b61
This commit is contained in:
François-Simon Fauteux-Chapleau
2024-01-05 11:24:43 -05:00
parent a4300308dc
commit f1f521973b
2 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
/*
* Copyright (C) 2021-2024 Savoir-faire Linux Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import QtQuick
import QtTest
import "../../../src/app/"
import "../../../src/app/mainview/components"
WelcomePage {
id: uut
width: 800
height: 600
// The appWindow, viewManager and viewCoordinator properties
// are required in order for the "aboutJami" button to work.
property Item appWindow: uut
property ViewManager viewManager: ViewManager {
}
property ViewCoordinator viewCoordinator: ViewCoordinator {
viewManager: uut.viewManager
}
TestCase {
name: "Open 'About Jami' popup"
function test_openAboutPopup() {
compare(viewManager.viewCount(), 0)
var aboutJamiButton = findChild(uut, "aboutJami")
aboutJamiButton.clicked()
compare(viewManager.viewCount(), 1)
var aboutJamiPopup = viewManager.getView("AboutPopUp")
verify(aboutJamiPopup !== null)
compare(aboutJamiPopup.visible, true)
}
}
}