[Libreoffice-commits] core.git: sw/qa

Zdeněk Crhonek zcrhonek at gmail.com
Mon Jan 22 19:45:26 UTC 2018


 sw/qa/uitest/writer_tests/data/tdf108124.odt |binary
 sw/qa/uitest/writer_tests/tdf108124.py       |   37 +++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

New commits:
commit 5df0c80b8dc1106a8c28967226526b05b047bc09
Author: Zdeněk Crhonek <zcrhonek at gmail.com>
Date:   Sat Dec 23 17:10:05 2017 +0100

    uitest for tdf#108124
    
    Change-Id: If500712e1fddc2a65b5c2df1649231ff3b46a45b
    Reviewed-on: https://gerrit.libreoffice.org/47019
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/sw/qa/uitest/writer_tests/data/tdf108124.odt b/sw/qa/uitest/writer_tests/data/tdf108124.odt
new file mode 100644
index 000000000000..af0260928b40
Binary files /dev/null and b/sw/qa/uitest/writer_tests/data/tdf108124.odt differ
diff --git a/sw/qa/uitest/writer_tests/tdf108124.py b/sw/qa/uitest/writer_tests/tdf108124.py
new file mode 100644
index 000000000000..3dae7080bc11
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/tdf108124.py
@@ -0,0 +1,37 @@
+# -*- 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
+import time
+from uitest.debug import sleep
+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 tdf108124(UITestCase):
+
+   def test_tdf108124(self):
+    writer_doc = self.ui_test.load_file(get_url_for_data_file("tdf108124.odt"))
+    xWriterDoc = self.xUITest.getTopFocusWindow()
+    xWriterEdit = xWriterDoc.getChild("writer_edit")
+    document = self.ui_test.get_component()
+
+    self.assertEqual(document.GraphicObjects.getCount(), 2)  #nr. of images
+
+    xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+a"})) # select all
+    xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+c"})) # copy
+    xWriterEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+v"})) # paste
+    self.assertEqual(document.GraphicObjects.getCount(), 4)
+    self.xUITest.executeCommand(".uno:Undo")  #Undo
+    self.assertEqual(document.GraphicObjects.getCount(), 2)
+    self.xUITest.executeCommand(".uno:Redo")  #Redo
+    self.assertEqual(document.GraphicObjects.getCount(), 4)
+
+    self.ui_test.close_doc()
+# vim: set shiftwidth=4 softtabstop=4 expandtab:


More information about the Libreoffice-commits mailing list