2013-05-15 13:17:33 +02:00
|
|
|
#############################################################################
|
|
|
|
|
##
|
2015-01-14 18:07:15 +01:00
|
|
|
## Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
## Contact: http://www.qt.io/licensing
|
2013-05-15 13:17:33 +02:00
|
|
|
##
|
|
|
|
|
## 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
|
2015-01-14 18:07:15 +01:00
|
|
|
## a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
## conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
## use the contact form at http://www.qt.io/contact-us.
|
2013-05-15 13:17:33 +02:00
|
|
|
##
|
|
|
|
|
## GNU Lesser General Public License Usage
|
|
|
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
## General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
## Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
## LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
## following information to ensure the GNU Lesser General Public License
|
|
|
|
|
## requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
2015-02-13 16:51:38 +01:00
|
|
|
## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-05-15 13:17:33 +02:00
|
|
|
##
|
2015-01-14 18:07:15 +01:00
|
|
|
## In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
## rights. These rights are described in The Qt Company LGPL Exception
|
2013-05-15 13:17:33 +02:00
|
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
##
|
|
|
|
|
#############################################################################
|
|
|
|
|
|
2012-05-10 10:53:06 +02:00
|
|
|
source("../shared/qmls.py")
|
2014-04-23 12:24:03 +02:00
|
|
|
source("../../shared/suites_qtta.py")
|
2012-04-03 14:49:47 +02:00
|
|
|
|
|
|
|
|
# go to proper line, make backup, type needed text
|
|
|
|
|
def __beginTestSuggestions__(editorArea, lineText, textToType):
|
|
|
|
|
# make source code backup to clipboard
|
2014-08-18 14:37:17 +02:00
|
|
|
type(editorArea, "<Ctrl+a>")
|
|
|
|
|
type(editorArea, "<Ctrl+c>")
|
2012-04-03 14:49:47 +02:00
|
|
|
# place cursor to proper position and start typing
|
|
|
|
|
if not placeCursorToLine(editorArea, lineText):
|
|
|
|
|
return False
|
|
|
|
|
type(editorArea, "<Return>")
|
|
|
|
|
type(editorArea, textToType)
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
# verify whether suggestions makes sense for typed textToType
|
|
|
|
|
def verifySuggestions(textToType):
|
2012-09-10 14:40:12 +02:00
|
|
|
popup = findObject(":popupFrame_Proposal_QListView")
|
2012-04-03 14:49:47 +02:00
|
|
|
model = popup.model()
|
2012-10-25 12:59:03 +02:00
|
|
|
for text in dumpItems(model):
|
2012-04-03 14:49:47 +02:00
|
|
|
test.verify(textToType.lower() in text.lower(),
|
|
|
|
|
"Checking whether suggestion '%s' makes sense for typed '%s'"
|
|
|
|
|
% (text, textToType))
|
|
|
|
|
|
|
|
|
|
# restore source code from clipboard backup
|
|
|
|
|
def __endTestSuggestions__(editorArea):
|
2014-08-18 14:37:17 +02:00
|
|
|
type(editorArea, "<Ctrl+a>")
|
|
|
|
|
type(editorArea, "<Ctrl+v>")
|
2012-04-03 14:49:47 +02:00
|
|
|
|
|
|
|
|
def testSuggestionsAuto(lineText, textToType, expectedText, keyToUseSuggestion):
|
|
|
|
|
# get editor
|
|
|
|
|
editorArea = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
|
|
|
|
|
# go to proper line, make backup, type needed text
|
|
|
|
|
if not __beginTestSuggestions__(editorArea, lineText, textToType):
|
|
|
|
|
return False
|
|
|
|
|
# check if suggestions are shown
|
2013-05-30 14:36:54 +02:00
|
|
|
if not test.verify(checkIfObjectExists(":popupFrame_Proposal_QListView"),
|
|
|
|
|
"Verifying if suggestions in automatic mode are shown."):
|
|
|
|
|
__endTestSuggestions__(editorArea)
|
|
|
|
|
return False
|
2012-04-03 14:49:47 +02:00
|
|
|
# verify proposed suggestions
|
|
|
|
|
verifySuggestions(textToType)
|
|
|
|
|
# test if suggestion can be selected with keyToUseSuggestion
|
2012-09-10 14:40:12 +02:00
|
|
|
type(findObject(":popupFrame_Proposal_QListView"), keyToUseSuggestion)
|
2012-04-03 14:49:47 +02:00
|
|
|
# get text which was written by usage of suggestion
|
|
|
|
|
typedText = str(lineUnderCursor(editorArea)).strip()
|
|
|
|
|
# verify if expected text is written
|
|
|
|
|
test.compare(typedText, expectedText,
|
|
|
|
|
"Verifying automatic suggestions usage with: " + keyToUseSuggestion + ", for text: " + textToType)
|
|
|
|
|
__endTestSuggestions__(editorArea)
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def testSuggestionsManual(lineText, textToType, expectedText):
|
|
|
|
|
# get editor
|
|
|
|
|
editorArea = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
|
|
|
|
|
# go to proper line, make backup, type needed text
|
|
|
|
|
if not __beginTestSuggestions__(editorArea, lineText, textToType):
|
|
|
|
|
return False
|
|
|
|
|
# wait if automatic popup displayed - if yes then fail, because we are in manual mode
|
2013-05-30 14:36:54 +02:00
|
|
|
if not test.verify(checkIfObjectExists(":popupFrame_Proposal_QListView", False),
|
|
|
|
|
"Verifying if suggestions in manual mode are not automatically shown"):
|
|
|
|
|
__endTestSuggestions__(editorArea)
|
|
|
|
|
return False
|
2012-04-03 14:49:47 +02:00
|
|
|
# test if suggestion can be invoked manually
|
|
|
|
|
if platform.system() == "Darwin":
|
|
|
|
|
type(editorArea, "<Meta+Space>")
|
|
|
|
|
else:
|
|
|
|
|
type(editorArea, "<Ctrl+Space>")
|
|
|
|
|
# check if suggestions are shown
|
2013-07-09 17:32:55 +02:00
|
|
|
if not test.verify(checkIfObjectExists(":popupFrame_Proposal_QListView"),
|
|
|
|
|
"Verifying if suggestions in manual mode are shown manually"):
|
|
|
|
|
__endTestSuggestions__(editorArea)
|
|
|
|
|
return False
|
2012-04-03 14:49:47 +02:00
|
|
|
# verify proposed suggestions
|
|
|
|
|
verifySuggestions(textToType)
|
|
|
|
|
# test if suggestion can be used
|
2012-09-10 14:40:12 +02:00
|
|
|
type(findObject(":popupFrame_Proposal_QListView"), "<Return>")
|
2012-04-03 14:49:47 +02:00
|
|
|
# get text which was written by usage of suggestion
|
|
|
|
|
typedText = str(lineUnderCursor(editorArea)).strip()
|
|
|
|
|
# verify if expected text is written
|
|
|
|
|
test.compare(typedText, expectedText,
|
|
|
|
|
"Verifying manual suggestions usage for text: " + textToType)
|
|
|
|
|
__endTestSuggestions__(editorArea)
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
def saveAndExit():
|
|
|
|
|
invokeMenuItem("File", "Save All")
|
|
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
|
|
|
|
|
|
def main():
|
2012-05-10 10:53:06 +02:00
|
|
|
if not startQtCreatorWithNewAppAtQMLEditor(tempDir(), "SampleApp"):
|
|
|
|
|
return
|
2012-04-03 14:49:47 +02:00
|
|
|
# test "color: " suggestion usage with Enter key
|
|
|
|
|
if not testSuggestionsAuto("Text {", "col", "color:", "<Return>"):
|
|
|
|
|
saveAndExit()
|
|
|
|
|
return
|
|
|
|
|
# test "color: " suggestion usage with Tab key
|
|
|
|
|
if not testSuggestionsAuto("Text {", "col", "color:", "<Tab>"):
|
|
|
|
|
saveAndExit()
|
|
|
|
|
return
|
|
|
|
|
# test "textChanged: " suggestion - automatic insert, because only one suggestion available
|
|
|
|
|
shortcutToSuggestions = "<Ctrl+Space>"
|
|
|
|
|
if platform.system() == "Darwin":
|
|
|
|
|
shortcutToSuggestions = "<Meta+Space>"
|
|
|
|
|
if not testSuggestionsAuto("Text {","textChan", "textChanged:", shortcutToSuggestions):
|
|
|
|
|
saveAndExit()
|
|
|
|
|
return
|
|
|
|
|
# change settings to manual insertion of suggestions
|
|
|
|
|
changeAutocompleteToManual()
|
|
|
|
|
# test manual suggestions
|
|
|
|
|
testSuggestionsManual("Text {", "col", "color:")
|
|
|
|
|
# exit qt creator
|
|
|
|
|
saveAndExit()
|