2013-05-15 13:17:33 +02:00
|
|
|
#############################################################################
|
|
|
|
|
##
|
2014-01-07 13:27:11 +01:00
|
|
|
## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2013-05-15 13:17:33 +02:00
|
|
|
## Contact: http://www.qt-project.org/legal
|
|
|
|
|
##
|
|
|
|
|
## 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 Digia. For licensing terms and
|
|
|
|
|
## conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
## use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
|
##
|
|
|
|
|
## GNU Lesser General Public License Usage
|
|
|
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
## General Public License version 2.1 as published by the Free Software
|
|
|
|
|
## Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
## packaging of this file. Please review the following information to
|
|
|
|
|
## ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
##
|
|
|
|
|
## In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
## rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
##
|
|
|
|
|
#############################################################################
|
|
|
|
|
|
2012-09-18 12:48:40 +02:00
|
|
|
source("../../shared/qtcreator.py")
|
|
|
|
|
source("../../shared/suites_qtta.py")
|
|
|
|
|
|
|
|
|
|
webPageContentLoadedValue = 0
|
|
|
|
|
gettingStartedText = getQmlItem("Text", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Getting Started'")
|
|
|
|
|
|
|
|
|
|
# wait until help gets loaded
|
2013-08-08 11:26:13 +02:00
|
|
|
def webPageContentLoaded(*args):
|
2012-09-18 12:48:40 +02:00
|
|
|
global webPageContentLoadedValue
|
2013-08-08 11:26:13 +02:00
|
|
|
objectClass = str(args[0].metaObject().className())
|
2012-09-18 12:48:40 +02:00
|
|
|
if objectClass in ("QWebPage", "Help::Internal::HelpViewer"):
|
|
|
|
|
webPageContentLoadedValue += 1
|
|
|
|
|
|
2013-08-08 11:26:13 +02:00
|
|
|
def clickItemVerifyHelpCombo(qmlItem, expectedHelpComboRegex, testDetails):
|
2012-09-18 12:48:40 +02:00
|
|
|
global gettingStartedText
|
|
|
|
|
webPageContentLoadedValue = 0
|
|
|
|
|
mouseClick(waitForObject(qmlItem), 5, 5, 0, Qt.LeftButton)
|
|
|
|
|
waitFor("webPageContentLoadedValue == 4", 5000)
|
2013-08-08 11:26:13 +02:00
|
|
|
foundText = str(waitForObject(":Qt Creator_HelpSelector_QComboBox").currentText)
|
|
|
|
|
if not test.verify(re.match(expectedHelpComboRegex, foundText), testDetails):
|
|
|
|
|
test.log("Found %s" % foundText)
|
2012-09-18 12:48:40 +02:00
|
|
|
# select "Welcome" page from left toolbar again
|
|
|
|
|
switchViewTo(ViewConstants.WELCOME)
|
|
|
|
|
test.verify(checkIfObjectExists(gettingStartedText),
|
|
|
|
|
"Verifying: Getting Started topic is being displayed.")
|
|
|
|
|
|
|
|
|
|
def main():
|
2013-10-31 16:59:10 +01:00
|
|
|
test.log("Welcome mode is not scriptable at the moment")
|
|
|
|
|
return
|
2012-09-18 12:48:40 +02:00
|
|
|
global webPageContentLoadedValue, gettingStartedText
|
|
|
|
|
# open Qt Creator
|
|
|
|
|
startApplication("qtcreator" + SettingsPath)
|
2013-02-22 14:31:39 +01:00
|
|
|
if not startedWithoutPluginError():
|
|
|
|
|
return
|
2012-09-18 12:48:40 +02:00
|
|
|
installLazySignalHandler(":QWebPage","loadFinished(bool)", "webPageContentLoaded")
|
2014-05-19 16:53:51 +02:00
|
|
|
installLazySignalHandler(":Qt Creator_Help::Internal::HelpViewer", "loadFinished(bool)",
|
2012-09-18 12:48:40 +02:00
|
|
|
"webPageContentLoaded")
|
|
|
|
|
setAlwaysStartFullHelp()
|
2013-06-17 17:04:27 +02:00
|
|
|
addCurrentCreatorDocumentation()
|
2012-09-18 12:48:40 +02:00
|
|
|
if not test.verify(checkIfObjectExists(gettingStartedText),
|
|
|
|
|
"Verifying: Qt Creator displays Welcome Page with Getting Started."):
|
|
|
|
|
mouseClick(waitForObject(getQmlItem("LinkedText", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Getting Started'")), 5, 5, 0, Qt.LeftButton)
|
|
|
|
|
qmlItem = getQmlItem("LinkedText", ":Qt Creator_QDeclarativeView", False, "text='User Guide'")
|
2013-08-08 11:26:13 +02:00
|
|
|
expectedText = "(QtCreator : Qt Creator Manual)|(Qt Creator Manual [|] QtCreator)"
|
2012-09-18 12:48:40 +02:00
|
|
|
testDetails = "Verifying: Help with Creator Documentation is being opened."
|
|
|
|
|
# select "User Guide" topic
|
|
|
|
|
clickItemVerifyHelpCombo(qmlItem, expectedText, testDetails)
|
|
|
|
|
# check "Online Community" link
|
|
|
|
|
test.verify(checkIfObjectExists(getQmlItem("LinkedText", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Online Community'")),
|
|
|
|
|
"Verifying: Link to Qt forums exists.")
|
|
|
|
|
test.verify(checkIfObjectExists(getQmlItem("LinkedText", ":Qt Creator_QDeclarativeView", False,
|
2012-10-11 19:40:31 +02:00
|
|
|
"text='Blogs'")),
|
|
|
|
|
"Verifying: Link to Planet Qt exists.")
|
2012-09-18 12:48:40 +02:00
|
|
|
qmlItem = getQmlItem("Text", ":Qt Creator_QDeclarativeView", False, "text='IDE Overview'")
|
2013-08-08 11:26:13 +02:00
|
|
|
expectedText = "(QtCreator : IDE Overview)|(IDE Overview [|] QtCreator)"
|
2012-09-18 12:48:40 +02:00
|
|
|
testDetails = "Verifying: Help with IDE Overview topic is being opened."
|
|
|
|
|
# select "IDE Overview"
|
|
|
|
|
clickItemVerifyHelpCombo(qmlItem, expectedText, testDetails)
|
|
|
|
|
qmlItem = getQmlItem("Text", ":Qt Creator_QDeclarativeView", False, "text='User Interface'")
|
2013-08-08 11:26:13 +02:00
|
|
|
expectedText = "(QtCreator : User Interface)|(User Interface [|]) QtCreator"
|
2012-09-18 12:48:40 +02:00
|
|
|
testDetails = "Verifying: Help with User Interface topic is being opened."
|
|
|
|
|
# select "User interface"
|
|
|
|
|
clickItemVerifyHelpCombo(qmlItem, expectedText, testDetails)
|
|
|
|
|
# select "Building and Running an Example Application"
|
|
|
|
|
webPageContentLoadedValue = 0
|
|
|
|
|
mouseClick(waitForObject(getQmlItem("Text", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Building and Running an Example Application'")),
|
|
|
|
|
5, 5, 0, Qt.LeftButton)
|
|
|
|
|
waitFor("webPageContentLoadedValue == 4", 5000)
|
2013-08-08 11:26:13 +02:00
|
|
|
checkPattern = ("(QtCreator : Building and Running an Example( Application)?)"
|
|
|
|
|
"|(Building and Running an Example( Application)? [|] QtCreator)")
|
2012-09-18 12:48:40 +02:00
|
|
|
checkText = str(waitForObject(":Qt Creator_HelpSelector_QComboBox").currentText)
|
|
|
|
|
if not test.verify(re.search(checkPattern, checkText),
|
|
|
|
|
"Verifying: Building and Running an Example is opened."):
|
|
|
|
|
test.fail("Pattern does not match: '%s', text found in QComboBox is: "
|
|
|
|
|
"'%s'" % (checkPattern, checkText))
|
|
|
|
|
# select "Welcome" page from left toolbar again
|
|
|
|
|
switchViewTo(ViewConstants.WELCOME)
|
|
|
|
|
test.verify(checkIfObjectExists(gettingStartedText),
|
|
|
|
|
"Verifying: Getting Started topic is being displayed.")
|
|
|
|
|
# select "Start Developing"
|
|
|
|
|
mouseClick(waitForObject(getQmlItem("Text", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Start Developing'")), 5, 5, 0, Qt.LeftButton)
|
|
|
|
|
test.verify(checkIfObjectExists(getQmlItem("Text", ":Qt Creator_QDeclarativeView", False,
|
|
|
|
|
"text='Tutorials'")),
|
|
|
|
|
"Verifying: Tutorials are opened in Welcome Page.")
|
|
|
|
|
# exit Qt Creator
|
|
|
|
|
invokeMenuItem("File", "Exit")
|