blob: 40cc3606607a26ea07a9741e932b77b3004017e8 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.2
import QtTest 1.0
import QtQuick.Controls 1.2
TestCase {
id: testcase
name: "Tests_Menu"
when: windowShown
width: 300; height: 300
property var itemsText: [ "apple", "banana", "clementine", "dragon fruit" ]
property var menu
property var menuItem
SignalSpy {
id: menuSpy
target: testcase.menu
signalName: "__selectedIndexChanged"
}
SignalSpy {
id: menuItemSpy
target: testcase.menuItem
signalName: "triggered"
}
SignalSpy {
id: aboutToShowSpy
target: testcase.menu
signalName: "aboutToShow"
}
SignalSpy {
id: aboutToHideSpy
target: testcase.menu
signalName: "aboutToHide"
}
Component {
id: creationComponent
Menu {
MenuItem { text: "apple" }
MenuItem { text: "banana" }
MenuItem { text: "clementine" }
MenuItem { text: "dragon fruit" }
}
}
function init() {
menu = creationComponent.createObject(testcase)
}
function cleanup() {
menuSpy.clear()
menuItemSpy.clear()
aboutToShowSpy.clear()
aboutToHideSpy.clear()
if (menu !== 0)
menu.destroy()
}
function test_creation() {
compare(menu.items.length, testcase.itemsText.length)
for (var i = 0; i < menu.items.length; i++)
compare(menu.items[i].text, testcase.itemsText[i])
}
Component {
id: modelCreationComponent
Menu {
id: modelMenu
Instantiator {
model: itemsText
MenuItem {
text: modelData
}
onObjectAdded: modelMenu.insertItem(index, object)
}
}
}
function test_modelCreation() {
var menu = modelCreationComponent.createObject(testcase)
compare(menu.items.length, testcase.itemsText.length)
for (var i = 0; i < menu.items.length; i++)
compare(menu.items[i].text, testcase.itemsText[i])
menu.destroy()
}
function test_trigger() {
menuItem = menu.items[2]
menuItem.trigger()
compare(menuItemSpy.count, 1)
compare(menuSpy.count, 1)
compare(menu.__selectedIndex, 2)
}
function test_check() {
for (var i = 0; i < menu.items.length; i++)
menu.items[i].checkable = true
menuItem = menu.items[2]
compare(menuItem.checkable, true)
compare(menuItem.checked, false)
menuItem.trigger()
for (i = 0; i < menu.items.length; i++)
compare(menu.items[i].checked, i === 2)
menuItem = menu.items[3]
compare(menuItem.checkable, true)
compare(menuItem.checked, false)
menuItem.trigger()
for (i = 0; i < menu.items.length; i++)
compare(menu.items[i].checked, i === 2 || i === 3)
compare(menuItemSpy.count, 2)
compare(menuSpy.count, 2)
compare(menu.__selectedIndex, 3)
}
ExclusiveGroup { id: eg }
function test_exclusive() {
for (var i = 0; i < menu.items.length; i++) {
menu.items[i].checkable = true
menu.items[i].exclusiveGroup = eg
}
menuItem = menu.items[2]
compare(menuItem.checkable, true)
compare(menuItem.checked, false)
menuItem.trigger()
for (i = 0; i < menu.items.length; i++)
compare(menu.items[i].checked, i === 2)
menuItem = menu.items[3]
compare(menuItem.checkable, true)
compare(menuItem.checked, false)
menuItem.trigger()
for (i = 0; i < menu.items.length; i++)
compare(menu.items[i].checked, i === 3)
compare(menuItemSpy.count, 2)
compare(menuSpy.count, 2)
compare(menu.__selectedIndex, 3)
}
function test___selectedIndex() {
for (var i = 0; i < menu.items.length; i++)
menu.items[i].checkable = true
menu.__selectedIndex = 3
compare(menu.__selectedIndex, 3)
verify(!menu.items[menu.__selectedIndex].checked)
menu.items[2].trigger()
compare(menu.__selectedIndex, 2)
verify(menu.items[menu.__selectedIndex].checked)
}
function test_dynamicItems() {
menu.clear()
compare(menu.items.length, 0)
var n = 6
var separatorIdx = 4
var submenuIdx = 5
for (var i = 0; i < n; ++i) {
if (i === separatorIdx)
var item = menu.addSeparator()
else if (i === submenuIdx)
item = menu.addMenu("Submenu")
else
item = menu.addItem("Item " + i)
}
compare(menu.items.length, n)
for (i = 0; i < n; ++i) {
item = menu.items[i]
compare(item.type, i === submenuIdx ? MenuItemType.Menu :
i === separatorIdx ? MenuItemType.Separator :
MenuItemType.Item)
if (i === submenuIdx)
compare(item.title, "Submenu")
else if (i !== separatorIdx)
compare(item.text, "Item " + i)
}
}
function test_popupSignals() {
if (Qt.platform.os === "osx") {
// On Mac the popup() function blocks. The signals are still
// emitted by the QPA plugin and the relayed by QQuickMenu1.
return;
}
menu.__popup(Qt.rect(50, 50, 20, 20))
wait(100) // Give it a chance to actually pop-up
compare(aboutToShowSpy.count, 1)
compare(aboutToHideSpy.count, 0)
aboutToShowSpy.clear()
menu.__dismissMenu()
compare(aboutToShowSpy.count, 0)
compare(aboutToHideSpy.count, 1)
}
}