mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-17 14:05:24 +02:00

Seems broken since a recent Qt upgrade. Calling a method in JamiQmlUtils works as expected. Change-Id: Ic1257a4f487560744f5ce1ea02928504ff572157
56 lines
1.5 KiB
QML
56 lines
1.5 KiB
QML
/*
|
|
* Copyright (C) 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 net.jami.Adapters 1.1
|
|
import net.jami.Models 1.1
|
|
import net.jami.Constants 1.1
|
|
import net.jami.Enums 1.1
|
|
|
|
import "../../../src/app/mainview"
|
|
import "../../../src/app/commoncomponents"
|
|
|
|
MainView {
|
|
id: uut
|
|
|
|
width: 400
|
|
height: 600
|
|
|
|
SignalSpy {
|
|
id: settingsPageRequestedSpy
|
|
|
|
target: JamiQmlUtils
|
|
signalName: "onSettingsPageRequested"
|
|
}
|
|
|
|
TestCase {
|
|
name: "Test shortcuts"
|
|
when: windowShown
|
|
|
|
function test_shortcuts() {
|
|
keyClick(Qt.Key_M, Qt.ControlModifier)
|
|
settingsPageRequestedSpy.wait(1000)
|
|
compare(settingsPageRequestedSpy.count, 1)
|
|
keyClick(Qt.Key_G, Qt.ControlModifier)
|
|
settingsPageRequestedSpy.wait(1000)
|
|
compare(settingsPageRequestedSpy.count, 2)
|
|
}
|
|
}
|
|
|
|
}
|