forked from qt-creator/qt-creator
Squish: Fix DiffEditor related object types
Change-Id: I295dc127a11e10496d441438feb7d1b8e15994b6 Reviewed-by: Robert Loehning <robert.loehning@digia.com>
This commit is contained in:
committed by
Robert Loehning
parent
e7297926ef
commit
a85f64a7c6
@@ -151,9 +151,9 @@
|
||||
:Qt Creator_Core::Internal::ProgressBar {type='Core::Internal::ProgressBar' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_Core::OutputWindow {type='Core::OutputWindow' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_CppEditor::Internal::CPPEditorWidget {type='CppEditor::Internal::CPPEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::DiffViewEditorWidget {type='DiffEditor::DiffViewEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::DiffViewEditorWidget2 {occurrence='2' type='DiffEditor::DiffViewEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::Internal::DiffShowEditorWidget {type='DiffEditor::Internal::DiffShowEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::Internal::DescriptionEditorWidget {type='DiffEditor::Internal::DescriptionEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::SideDiffEditorWidget {type='DiffEditor::SideDiffEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_DiffEditor::SideDiffEditorWidget2 {occurrence='2' type='DiffEditor::SideDiffEditorWidget' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_FilenameQComboBox {type='QComboBox' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_Find::Internal::SearchResultTreeView {type='Core::Internal::SearchResultTreeView' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
:Qt Creator_Git::Internal::GitEditor {type='Git::Internal::GitEditor' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'}
|
||||
|
||||
@@ -96,7 +96,7 @@ def verifyClickCommit():
|
||||
expected = 'Git Show "%s"' % commit
|
||||
test.verify(waitFor('str(fileName.currentText) == expected', 5000),
|
||||
"Verifying editor switches to Git Show.")
|
||||
diffShow = waitForObject(":Qt Creator_DiffEditor::Internal::DiffShowEditorWidget")
|
||||
diffShow = waitForObject(":Qt Creator_DiffEditor::Internal::DescriptionEditorWidget")
|
||||
waitFor('len(str(diffShow.plainText)) != 0', 5000)
|
||||
show = str(diffShow.plainText)
|
||||
expected = [{"commit %s" % commit:False},
|
||||
@@ -110,8 +110,8 @@ def verifyClickCommit():
|
||||
test.verify(re.match(expLine, line), "Verifying commit header line '%s'" % line)
|
||||
else:
|
||||
test.compare(line, expLine, "Verifying commit header line.")
|
||||
changed = waitForObject(":Qt Creator_DiffEditor::DiffViewEditorWidget")
|
||||
original = waitForObject(":Qt Creator_DiffEditor::DiffViewEditorWidget2")
|
||||
changed = waitForObject(":Qt Creator_DiffEditor::SideDiffEditorWidget")
|
||||
original = waitForObject(":Qt Creator_DiffEditor::SideDiffEditorWidget2")
|
||||
waitFor('str(changed.plainText) != "Waiting for data..." '
|
||||
'and str(original.plainText) != "Waiting for data..."', 5000)
|
||||
# content of diff editors is merge of modified files
|
||||
|
||||
Reference in New Issue
Block a user