aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@digia.com>2013-12-13 17:27:38 +0100
committerRobert Loehning <robert.loehning@digia.com>2013-12-18 12:32:24 +0100
commita0fdad9921473e1ecebd452b1de8382c424f86a4 (patch)
treec7ce4d3a15ec75d1b4e4b9e41e2b960050bd93a2 /tests
parent1193cfa092ee7b3694d2aa5fede19fb86e224024 (diff)
Squish: Added further git log tests
Change-Id: I28a1922fa1cf256baf3775d6eab47aeeb35432df Reviewed-by: Christian Stenger <christian.stenger@digia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_tools/tst_git_local/test.py35
1 files changed, 29 insertions, 6 deletions
diff --git a/tests/system/suite_tools/tst_git_local/test.py b/tests/system/suite_tools/tst_git_local/test.py
index 1d28125d7b9..125bf7d110f 100644
--- a/tests/system/suite_tools/tst_git_local/test.py
+++ b/tests/system/suite_tools/tst_git_local/test.py
@@ -44,6 +44,13 @@ def commit(commitMessage, expectedLogMessage):
test.verify(expectedLogMessage in str(vcsLog), "Searching for '%s' in log:\n%s " % (expectedLogMessage, vcsLog))
return commitMessage
+def verifyItemsInGit(commitMessages):
+ gitEditor = waitForObject(":Qt Creator_Git::Internal::GitEditor")
+ waitFor("str(gitEditor.plainText) != 'Waiting for data...'", 20000)
+ plainText = str(gitEditor.plainText)
+ verifyItemOrder(commitMessages, plainText)
+ return plainText
+
def main():
startApplication("qtcreator" + SettingsPath)
if not startedWithoutPluginError():
@@ -63,19 +70,35 @@ def main():
addCPlusPlusFileToCurrentProject("pointless_header.h", "C++ Header File", addToVCS = "Git")
commitMessages.insert(0, commit("Added pointless header file", "Committed 2 file(s)."))
__createProjectOrFileSelectType__(" General", "Text File", isProject=False)
- replaceEditorContent(waitForObject(":New Text File.nameLineEdit_Utils::FileNameValidatingLineEdit"), "README")
+ readmeName = "README"
+ replaceEditorContent(waitForObject(":New Text File.nameLineEdit_Utils::FileNameValidatingLineEdit"), readmeName)
clickButton(waitForObject(":Next_QPushButton"))
- __createProjectHandleLastPage__(["README.txt"], "Git", "<None>")
+ readmeName += ".txt"
+ __createProjectHandleLastPage__([readmeName], "Git", "<None>")
replaceEditorContent(waitForObject(":Qt Creator_TextEditor::PlainTextEditorWidget"),
"Some important advice in the README")
invokeMenuItem("File", "Save All")
- commitMessages.insert(0, commit("Added README file", "Committed 2 file(s).")) # QTCREATORBUG-11074
+ commitsInProject = list(commitMessages) # deep copy
+ commitOutsideProject = commit("Added README file", "Committed 2 file(s).") # QTCREATORBUG-11074
+ commitMessages.insert(0, commitOutsideProject)
+
+ invokeMenuItem('Tools', 'Git', 'Current File', 'Log of "%s"' % readmeName)
+ fileLog = verifyItemsInGit([commitOutsideProject])
+ for commitMessage in commitsInProject:
+ test.verify(not commitMessage in fileLog,
+ "Verify that no unrelated commits are displayed in file log")
+ invokeMenuItem("File", "Close All")
+
+ invokeMenuItem('Tools', 'Git', 'Current Project', 'Log Project "%s"' % projectName)
+ projectLog = verifyItemsInGit(commitsInProject)
+ test.xverify(not commitOutsideProject in projectLog, # QTCREATORBUG-10170
+ "Verify that no unrelated commits are displayed in project log")
invokeMenuItem("File", "Close All")
+
invokeMenuItem("Tools", "Git", "Local Repository", "Log")
- gitEditor = waitForObject(":Qt Creator_Git::Internal::GitEditor")
- waitFor("str(gitEditor.plainText) != 'Waiting for data...'", 20000)
- verifyItemOrder(commitMessages, gitEditor.plainText)
+ verifyItemsInGit(commitMessages)
invokeMenuItem("File", "Close All Projects and Editors")
+
invokeMenuItem("File", "Exit")
def deleteProject():