mirror of
https://github.com/savoirfairelinux/jami-client-qt.git
synced 2026-01-04 11:03:06 +08:00
recordbox: fix focus policy on record box
The focus policy was broken and this patch fix also the tests due to an incorrect conversationModel. Change-Id: I9e7f76b0dff80548d3b92296f22bdd7b848ee931
This commit is contained in:
56
tests/qml/src/tst_RecordBox.qml
Normal file
56
tests/qml/src/tst_RecordBox.qml
Normal file
@@ -0,0 +1,56 @@
|
||||
/*
|
||||
* Copyright (C) 2023 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 QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
|
||||
import QtTest
|
||||
|
||||
import "../../../src/app/"
|
||||
import "../../../src/app/mainview/components"
|
||||
|
||||
ColumnLayout {
|
||||
id: root
|
||||
|
||||
spacing: 0
|
||||
width: 300
|
||||
height: 300
|
||||
|
||||
RecordBox {
|
||||
id: uut
|
||||
|
||||
TestCase {
|
||||
name: "Take picture"
|
||||
when: windowShown
|
||||
|
||||
function test_takePicture() {
|
||||
// Open the recorder and take a picture
|
||||
uut.openRecorder(true)
|
||||
|
||||
compare(uut.state, RecordBox.States.INIT)
|
||||
|
||||
var screenshotBtn = findChild(uut, "screenshotBtn")
|
||||
screenshotBtn.clicked()
|
||||
|
||||
compare(uut.state, RecordBox.States.REC_SUCCESS)
|
||||
|
||||
uut.closeRecorder()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user