summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2020-06-10 13:01:12 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2020-06-10 23:15:19 +0200
commitf1e4d462c4a5686bccb3e7bfd615865c18c0efa6 (patch)
treed94e3d9a71e5742b18af8619df5bf697e1fb3889
parentb9fb2a62919ba0d489857d61abb23ccc4f5df674 (diff)
tdf#132597: sw: Add UItest
Change-Id: I0f577b5124c871e9ba766958d81511ad3ad0e5e6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96014 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r--sw/qa/uitest/writer_tests/data/tdf132597.odtbin0 -> 132875 bytes
-rw-r--r--sw/qa/uitest/writer_tests7/tdf132597.py48
2 files changed, 48 insertions, 0 deletions
diff --git a/sw/qa/uitest/writer_tests/data/tdf132597.odt b/sw/qa/uitest/writer_tests/data/tdf132597.odt
new file mode 100644
index 000000000000..68e9c9dffc77
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/data/tdf132597.odt
Binary files differ
diff --git a/sw/qa/uitest/writer_tests7/tdf132597.py b/sw/qa/uitest/writer_tests7/tdf132597.py
new file mode 100644
index 000000000000..60ec581095fd
--- /dev/null
+++ b/sw/qa/uitest/writer_tests7/tdf132597.py
@@ -0,0 +1,48 @@
+# -*- 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 libreoffice.uno.propertyvalue import mkPropertyValues
+from uitest.uihelper.common import get_state_as_dict
+from uitest.path import get_srcdir_url
+
+def get_url_for_data_file(file_name):
+ return get_srcdir_url() + "/sw/qa/uitest/writer_tests/data/" + file_name
+
+class tdf132597(UITestCase):
+
+ def test_tdf132597(self):
+ writer_doc = self.ui_test.load_file(get_url_for_data_file("tdf132597.odt"))
+
+ document = self.ui_test.get_component()
+ self.assertEqual(1, document.CurrentController.PageCount)
+
+ self.xUITest.executeCommand(".uno:SelectAll")
+ self.xUITest.executeCommand(".uno:Copy")
+ self.ui_test.execute_dialog_through_command(".uno:PasteSpecial")
+ xDialog = self.xUITest.getTopFocusWindow()
+
+ xList = xDialog.getChild('list')
+
+ for childName in xList.getChildren():
+ xChild = xList.getChild(childName)
+ if get_state_as_dict(xChild)['Text'] == "Rich text formatting (RTF)":
+ break
+
+ xChild.executeAction("SELECT", tuple())
+ self.assertEqual(get_state_as_dict(xList)['SelectEntryText'], "Rich text formatting (RTF)")
+
+ xOkBtn = xDialog.getChild("ok")
+ self.ui_test.close_dialog_through_button(xOkBtn)
+
+ self.xUITest.executeCommand(".uno:Undo")
+ # Without the fix in place, it would have crashed here
+
+ self.assertEqual(1, document.CurrentController.PageCount)
+
+ self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab: