Files
qt-creator/tests/system/suite_APTW/tst_APTW03/test.py

140 lines
7.2 KiB
Python
Raw Normal View History

############################################################################
#
# Copyright (C) 2016 The Qt Company Ltd.
# Contact: https://www.qt.io/licensing/
#
# This file is part of Qt Creator.
#
# 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.
#
# GNU General Public License Usage
# Alternatively, this file may be used under the terms of the GNU
# General Public License version 3 as published by the Free Software
# Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
# included in the packaging of this file. Please review the following
# information to ensure the GNU General Public License requirements will
# be met: https://www.gnu.org/licenses/gpl-3.0.html.
#
############################################################################
source("../../shared/qtcreator.py")
def handleInsertVirtualFunctions(expected, toAdd):
def __checkVirtualFunction(treeView, classIndex, isCheckedF, child):
item = "%s.%s" % (str(classIndex.text), str(child.text))
test.log("Checking '%s'." % item)
mouseClick(waitForObjectItem(treeView, item.replace("_", "\\_")))
test.verify(waitFor("isCheckedF(child)", 1000), "Function must be checked after clicking")
treeView = waitForObject("{container={title='Functions to insert:' type='QGroupBox' unnamed='1'"
" visible='1'} type='QTreeView' unnamed='1' visible='1'}")
model = treeView.model()
classIndices = dumpIndices(model, treeView.rootIndex())
found = set()
isChecked = lambda ch: model.data(ch, Qt.CheckStateRole).toInt() == Qt.Checked
for classIndex in classIndices:
if model.hasChildren(classIndex):
for child in dumpIndices(model, classIndex):
for curr in expected:
if str(child.text).startswith(curr):
if test.verify(isChecked(child), "Verifying: '%s' is checked." % curr):
found.add(curr)
else:
__checkVirtualFunction(treeView, classIndex, isChecked, child)
for curr in toAdd:
if str(child.text).startswith(curr):
__checkVirtualFunction(treeView, classIndex, isChecked, child)
test.verify(len(set(expected).difference(found)) == 0,
"Verifying whether all expected functions have been found.")
selectFromCombo("{container={title='Insertion options:' type='QGroupBox' unnamed='1' "
" visible='1'} occurrence='2' type='QComboBox' unnamed='1' visible='1'}",
"Insert definitions in implementation file")
clickButton("{text='OK' type='QPushButton' unnamed='1' visible='1'}")
def checkSimpleCppLib(projectName, static):
projectName, className = createNewCPPLib(tempDir(), projectName, "MyClass",
Targets.desktopTargetClasses(),
static)
for kit, config in iterateBuildConfigs("Release"):
verifyBuildConfig(kit, config, False, True)
invokeMenuItem('Build', 'Build Project "%s"' % projectName)
waitForCompile(10000)
checkCompile()
def addReturn(editor, toFunction, returnValue):
placeCursorToLine(editor, toFunction, True)
type(editor, "<Down>")
type(editor, "<Return>")
type(editor, "return %s;" % returnValue)
def main():
startQC()
if not startedWithoutPluginError():
return
checkSimpleCppLib("SampleApp1", False)
checkSimpleCppLib("SampleApp2", True)
pluginTargets = (Targets.DESKTOP_5_6_1_DEFAULT, Targets.DESKTOP_5_10_1_DEFAULT)
projectName, className = createNewQtPlugin(tempDir(), "SampleApp3", "MyPlugin", pluginTargets)
virtualFunctionsAdded = False
for kit, config in iterateBuildConfigs("Debug"):
verifyBuildConfig(kit, config, True, True)
invokeMenuItem('Build', 'Build Project "%s"' % projectName)
waitForCompile(10000)
if not virtualFunctionsAdded:
checkLastBuild(True, False)
if not openDocument("%s.Sources.%s\.cpp" % (projectName, className.lower())):
test.fatal("Could not open %s.cpp - continuing." % className.lower())
continue
editor = getEditorForFileSuffix("%s.cpp" % className.lower())
initialContent = str(editor.plainText)
test.verify("QObject *%s::create(" % className in initialContent,
"Verifying whether pure virtual function has been added to the source file.")
if not openDocument("%s.Headers.%s\.h" % (projectName, className.lower())):
test.fatal("Could not open %s.h - continuing." % className.lower())
continue
editor = getEditorForFileSuffix("%s.h" % className.lower())
initialContent = str(editor.plainText)
test.verify(re.search("QObject \*create.*;", initialContent, re.MULTILINE),
"Verifying whether create() declaration has been added to the header.")
placeCursorToLine(editor, "class %s.*" % className, True)
snooze(4) # avoid timing issue with the parser
invokeContextMenuItem(editor, "Refactor", "Insert Virtual Functions of Base Classes")
handleInsertVirtualFunctions(["create(const QString &, const QString &) = 0 : QObject *"],
["event(QEvent *) : bool"])
waitFor("'event' in str(editor.plainText)", 2000)
modifiedContent = str(editor.plainText)
test.verify(re.search("bool event\(QEvent \*event\);", modifiedContent, re.MULTILINE),
"Verifying whether event() declaration has been added to the header.")
if not openDocument("%s.Sources.%s\.cpp" % (projectName, className.lower())):
test.fatal("Could not open %s.cpp - continuing." % className.lower())
continue
editor = getEditorForFileSuffix("%s.cpp" % className.lower())
modifiedContent = str(editor.plainText)
test.verify("bool %s::event(QEvent *event)" % className in modifiedContent,
"Verifying whether event() definition has been added to the source file.")
# add return to not run into build issues of missing return values
addReturn(editor, "bool %s::event.*" % className, "true")
addReturn(editor, "QObject \*%s::create.*" % className, "0")
placeCursorToLine(editor, 'static_assert\(false, .*', True)
invokeContextMenuItem(editor, "Toggle Comment Selection")
virtualFunctionsAdded = True
invokeMenuItem('File', 'Save All')
invokeMenuItem('Build', 'Rebuild Project "%s"' % projectName)
waitForCompile(10000)
checkCompile()
invokeMenuItem("File", "Exit")