[Libreoffice-commits] core.git: sw/qa
Xisco Fauli (via logerrit)
logerrit at kemper.freedesktop.org
Thu May 6 15:52:15 UTC 2021
sw/qa/uitest/data/tdf126226.odt |binary
sw/qa/uitest/writer_tests6/tdf126226.py | 29 +++++++++++++++++++++++++++++
2 files changed, 29 insertions(+)
New commits:
commit 47c0cea5aae8f1ac5c8d79fc09a30c8c5f14af64
Author: Xisco Fauli <xiscofauli at libreoffice.org>
AuthorDate: Thu May 6 16:39:37 2021 +0200
Commit: Xisco Fauli <xiscofauli at libreoffice.org>
CommitDate: Thu May 6 17:49:38 2021 +0200
tdf#126226: sw: Add UItest
Change-Id: Id236fa585ae02cb0282a7d6179b9cb2d779dfdf8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115182
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli at libreoffice.org>
diff --git a/sw/qa/uitest/data/tdf126226.odt b/sw/qa/uitest/data/tdf126226.odt
new file mode 100644
index 000000000000..aa0b4cd2b0ac
Binary files /dev/null and b/sw/qa/uitest/data/tdf126226.odt differ
diff --git a/sw/qa/uitest/writer_tests6/tdf126226.py b/sw/qa/uitest/writer_tests6/tdf126226.py
new file mode 100644
index 000000000000..e13505fc1f64
--- /dev/null
+++ b/sw/qa/uitest/writer_tests6/tdf126226.py
@@ -0,0 +1,29 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# 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.uihelper.common import get_state_as_dict, get_url_for_data_file
+
+class Tdf126226(UITestCase):
+
+ def test_tdf126226(self):
+ writer_doc = self.ui_test.load_file(get_url_for_data_file("tdf126226.odt"))
+
+ self.xUITest.executeCommand(".uno:SelectAll")
+
+ # Without the fix in place, this test would have crashed here
+ self.ui_test.execute_dialog_through_command(".uno:CommentChangeTracking")
+
+ xDialog = self.xUITest.getTopFocusWindow()
+
+ self.assertEqual("Hello\n", get_state_as_dict(xDialog.getChild("edit"))["Text"])
+ self.assertEqual("Autor desconocido, 07/04/2019 13:43:52",
+ get_state_as_dict(xDialog.getChild("lastedit"))["Text"])
+
+ xOKBtn = xDialog.getChild("ok")
+ self.ui_test.close_dialog_through_button(xOKBtn)
+
+ self.ui_test.close_doc()
More information about the Libreoffice-commits
mailing list