forked from qt-creator/qt-creator
Change-Id: Ib789dd239fb7dfbb684e2f97607aa30de205fe0b Reviewed-by: Robert Loehning <robert.loehning@nokia.com>
45 lines
2.4 KiB
Python
45 lines
2.4 KiB
Python
source("../../shared/qtcreator.py")
|
|
source("../../shared/suites_qtta.py")
|
|
|
|
def verifyChangeProject(projectName):
|
|
# select project
|
|
projItem = waitForObjectItem(":Qt Creator_Utils::NavigationTreeView", projectName)
|
|
openItemContextMenu(waitForObject(":Qt Creator_Utils::NavigationTreeView"), projectName, 5, 5, 0)
|
|
activateItem(waitForObjectItem("{name='Project.Menu.Project' type='QMenu' visible='1' "
|
|
"window=':Qt Creator_Core::Internal::MainWindow'}",
|
|
'Set "%s" as Active Project' % projectName))
|
|
waitFor("projItem.font.bold==True", 3000)
|
|
# check if bold is right project
|
|
test.verify(projItem.font.bold == True,
|
|
"Multiple projects - verifying if active project is set to " + projectName)
|
|
|
|
def main():
|
|
projectName1 = "SampleApp1"
|
|
projectName2 = "SampleApp2"
|
|
startApplication("qtcreator" + SettingsPath)
|
|
# create qt quick application 1
|
|
createNewQtQuickApplication(tempDir(), projectName1)
|
|
waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 5000)
|
|
# create qt quick application 2
|
|
createNewQtQuickApplication(tempDir(), projectName2)
|
|
waitForSignal("{type='CppTools::Internal::CppModelManager' unnamed='1'}", "sourceFilesRefreshed(QStringList)", 5000)
|
|
# change to project 1
|
|
verifyChangeProject(projectName1)
|
|
# change to project 2
|
|
verifyChangeProject(projectName2)
|
|
# build project 2
|
|
clickButton(waitForObject(":*Qt Creator.Build Project_Core::Internal::FancyToolButton"))
|
|
# wait for build to complete
|
|
waitForSignal("{type='ProjectExplorer::BuildManager' unnamed='1'}", "buildQueueFinished(bool)")
|
|
# check output if build successful
|
|
ensureChecked(waitForObject(":Qt Creator_CompileOutput_Core::Internal::OutputPaneToggleButton"))
|
|
outputLog = str(waitForObject(":Qt Creator.Compile Output_Core::OutputWindow").plainText)
|
|
# verify that project was built successfully
|
|
test.verify(outputLog.endswith("exited normally."),
|
|
"Verifying building of simple qt quick application while multiple projects are open.")
|
|
# verify that proper project (project 2) was build
|
|
test.verify(projectName2 in outputLog and projectName1 not in outputLog,
|
|
"Verifying that proper project " + projectName2 + " was built.")
|
|
# exit qt creator
|
|
invokeMenuItem("File", "Exit")
|