forked from qt-creator/qt-creator
		
	Project template was changed in
b18e084fc0
Change-Id: I4959c15a452cf713cad86af10b81376b59b816b0
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
############################################################################
 | 
						|
#
 | 
						|
# 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")
 | 
						|
source("../../shared/suites_qtta.py")
 | 
						|
 | 
						|
# entry of test
 | 
						|
def main():
 | 
						|
    startApplication("qtcreator" + SettingsPath)
 | 
						|
    if not startedWithoutPluginError():
 | 
						|
        return
 | 
						|
    # create qt quick application
 | 
						|
    createNewQtQuickApplication(tempDir(), "SampleApp")
 | 
						|
    # create syntax error in qml file
 | 
						|
    openDocument("SampleApp.Resources.qml\.qrc./.main\\.qml")
 | 
						|
    if not appendToLine(waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget"), "TextEdit {", "SyntaxError"):
 | 
						|
        invokeMenuItem("File", "Exit")
 | 
						|
        return
 | 
						|
    # save all to invoke qml parsing
 | 
						|
    invokeMenuItem("File", "Save All")
 | 
						|
    # open issues list view
 | 
						|
    ensureChecked(waitForObject(":Qt Creator_Issues_Core::Internal::OutputPaneToggleButton"))
 | 
						|
    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")
 |