2016-01-15 14:55:33 +01:00
|
|
|
# Copyright (C) 2016 The Qt Company Ltd.
|
2022-08-19 15:59:36 +02:00
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2013-05-15 13:17:33 +02:00
|
|
|
|
2012-03-20 11:49:37 +01:00
|
|
|
source("../../shared/suites_qtta.py")
|
|
|
|
|
source("../../shared/qtcreator.py")
|
|
|
|
|
|
|
|
|
|
# entry of test
|
|
|
|
|
def main():
|
|
|
|
|
# prepare example project
|
2020-02-06 21:05:01 +01:00
|
|
|
sourceExample = os.path.join(Qt5Path.examplesPath(Targets.DESKTOP_5_14_1_DEFAULT),
|
2016-06-01 18:22:05 +02:00
|
|
|
"quick", "animation")
|
|
|
|
|
proFile = "animation.pro"
|
2012-09-27 15:05:38 +02:00
|
|
|
if not neededFilePresent(os.path.join(sourceExample, proFile)):
|
2012-03-20 11:49:37 +01:00
|
|
|
return
|
|
|
|
|
# copy example project to temp directory
|
2016-06-01 18:22:05 +02:00
|
|
|
templateDir = prepareTemplate(sourceExample, "/../shared")
|
2012-09-27 15:05:38 +02:00
|
|
|
examplePath = os.path.join(templateDir, proFile)
|
2018-08-22 14:37:34 +02:00
|
|
|
startQC()
|
2013-02-22 14:31:39 +01:00
|
|
|
if not startedWithoutPluginError():
|
|
|
|
|
return
|
2012-03-20 11:49:37 +01:00
|
|
|
# open example project
|
2016-06-01 18:22:05 +02:00
|
|
|
targets = Targets.desktopTargetClasses()
|
2013-11-26 10:53:54 +01:00
|
|
|
openQmakeProject(examplePath, targets)
|
2012-03-20 11:49:37 +01:00
|
|
|
# create syntax error
|
2016-06-01 18:22:05 +02:00
|
|
|
openDocument("animation.Resources.animation\\.qrc./animation.basics.property-animation\\.qml")
|
2012-03-20 11:49:37 +01:00
|
|
|
if not appendToLine(waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget"), "Image {", "SyntaxError"):
|
|
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
|
return
|
|
|
|
|
# save all to invoke qml parsing
|
|
|
|
|
invokeMenuItem("File", "Save All")
|
|
|
|
|
# open issues list view
|
2012-09-05 16:49:35 +02:00
|
|
|
ensureChecked(waitForObject(":Qt Creator_Issues_Core::Internal::OutputPaneToggleButton"))
|
2012-03-20 11:49:37 +01:00
|
|
|
issuesView = waitForObject(":Qt Creator.Issues_QListView")
|
|
|
|
|
# verify that error is properly reported
|
2019-02-08 08:10:13 +01:00
|
|
|
test.verify(checkSyntaxError(issuesView, ["Expected token `:'"], True),
|
2012-03-20 11:49:37 +01:00
|
|
|
"Verifying QML syntax error while parsing complex qt quick application.")
|
|
|
|
|
# exit qt creator
|
|
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
|
# no cleanup needed, as whole testing directory gets properly removed after test finished
|
|
|
|
|
|