2016-01-15 14:55:33 +01:00
|
|
|
# Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-05-15 13:17:33 +02:00
|
|
|
|
2012-02-16 15:07:31 +01:00
|
|
|
source("../../shared/qtcreator.py")
|
|
|
|
|
source("../../shared/suites_qtta.py")
|
|
|
|
|
|
|
|
|
|
# entry of test
|
|
|
|
|
def main():
|
2018-08-22 14:37:34 +02:00
|
|
|
startQC()
|
2013-02-22 14:31:39 +01:00
|
|
|
if not startedWithoutPluginError():
|
|
|
|
|
return
|
2012-02-16 15:07:31 +01:00
|
|
|
# create qt quick application
|
|
|
|
|
createNewQtQuickApplication(tempDir(), "SampleApp")
|
|
|
|
|
# create syntax error in qml file
|
2023-02-22 15:19:56 +01:00
|
|
|
openDocument("SampleApp.appSampleApp.Main\\.qml")
|
2017-09-15 16:29:26 +02:00
|
|
|
if not appendToLine(waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget"), "Window {", "SyntaxError"):
|
2012-02-16 15:07:31 +01:00
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
|
return
|
|
|
|
|
# save all to invoke qml parsing
|
|
|
|
|
invokeMenuItem("File", "Save All")
|
|
|
|
|
# open issues list view
|
2012-09-11 16:32:14 +02:00
|
|
|
ensureChecked(waitForObject(":Qt Creator_Issues_Core::Internal::OutputPaneToggleButton"))
|
2012-02-16 15:07:31 +01:00
|
|
|
issuesView = waitForObject(":Qt Creator.Issues_QListView")
|
|
|
|
|
# verify that error is properly reported
|
|
|
|
|
test.verify(checkSyntaxError(issuesView, ["Unexpected token"], True),
|
|
|
|
|
"Verifying QML syntax error while parsing simple qt quick application.")
|
|
|
|
|
# exit qt creator
|
|
|
|
|
invokeMenuItem("File", "Exit")
|