[Libreoffice-commits] core.git: sw/qa
Xisco Fauli (via logerrit)
logerrit at kemper.freedesktop.org
Tue Mar 3 22:19:01 UTC 2020
sw/qa/uitest/writer_tests/compareDocuments.py | 57 +++++++++++++++++++++++++
sw/qa/uitest/writer_tests/data/tdf130960.odt |binary
sw/qa/uitest/writer_tests/data/tdf130960_2.odt |binary
3 files changed, 57 insertions(+)
New commits:
commit c5513b59281b08a615b12fadde5f3082eed81996
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Tue Mar 3 17:05:21 2020 +0100
Commit: Xisco Faulí <xiscofauli at libreoffice.org>
CommitDate: Tue Mar 3 23:18:27 2020 +0100
tdf#130960: Add uitest
Change-Id: I2db9729620ab87c8934fa26a63f31c6a95e5a4fa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89894
Tested-by: Jenkins
Reviewed-by: Xisco Faulí <xiscofauli at libreoffice.org>
diff --git a/sw/qa/uitest/writer_tests/compareDocuments.py b/sw/qa/uitest/writer_tests/compareDocuments.py
new file mode 100644
index 000000000000..310d9cd7336d
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/compareDocuments.py
@@ -0,0 +1,57 @@
+#! /usr/bin/env python
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+from uitest.framework import UITestCase
+from uitest.path import get_srcdir_url
+from uitest.uihelper.common import get_state_as_dict
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import datetime
+
+def get_url_for_data_file(file_name):
+ return get_srcdir_url() + "/sw/qa/uitest/writer_tests/data/" + file_name
+
+
+class compareDocuments(UITestCase):
+
+ def test_tdf130960(self):
+
+ writer_doc = self.ui_test.load_file(get_url_for_data_file("tdf130960.odt"))
+
+ document = self.ui_test.get_component()
+ xWriterDoc = self.xUITest.getTopFocusWindow()
+
+ self.ui_test.execute_dialog_through_command(".uno:CompareDocuments")
+
+ xOpenDialog = self.xUITest.getTopFocusWindow()
+ xFileName = xOpenDialog.getChild("file_name")
+ xFileName.executeAction("TYPE", mkPropertyValues({"TEXT": get_url_for_data_file("tdf130960_2.odt")}))
+
+ xOpenBtn = xOpenDialog.getChild("open")
+ xOpenBtn.executeAction("CLICK", tuple())
+
+ # Close the dialog and open it again so the list of changes is updated
+ xTrackDlg = self.xUITest.getTopFocusWindow()
+ xcloseBtn = xTrackDlg.getChild("close")
+ xcloseBtn.executeAction("CLICK", tuple())
+
+ self.ui_test.execute_modeless_dialog_through_command(".uno:AcceptTrackedChanges")
+ xTrackDlg = self.xUITest.getTopFocusWindow()
+ changesList = xTrackDlg.getChild("writerchanges")
+
+ text = "Unknown Author\t" + datetime.datetime.now().strftime("%m/%d/%Y")
+ self.assertEqual(2, len(changesList.getChildren()))
+ self.assertTrue(get_state_as_dict(changesList.getChild('0'))["Text"].startswith(text))
+ self.assertTrue(get_state_as_dict(changesList.getChild('1'))["Text"].startswith(text))
+
+ xcloseBtn = xTrackDlg.getChild("close")
+ xcloseBtn.executeAction("CLICK", tuple())
+
+ self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
diff --git a/sw/qa/uitest/writer_tests/data/tdf130960.odt b/sw/qa/uitest/writer_tests/data/tdf130960.odt
new file mode 100644
index 000000000000..788db8e96cc3
Binary files /dev/null and b/sw/qa/uitest/writer_tests/data/tdf130960.odt differ
diff --git a/sw/qa/uitest/writer_tests/data/tdf130960_2.odt b/sw/qa/uitest/writer_tests/data/tdf130960_2.odt
new file mode 100644
index 000000000000..2123a85c4a7a
Binary files /dev/null and b/sw/qa/uitest/writer_tests/data/tdf130960_2.odt differ
More information about the Libreoffice-commits
mailing list