summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZdeněk Crhonek <zcrhonek@gmail.com>2017-12-23 17:10:05 +0100
committerZdenek Crhonek <zcrhonek@gmail.com>2018-01-22 20:43:54 +0100
commit5df0c80b8dc1106a8c28967226526b05b047bc09 (patch)
tree69b670fe50c6ac21f35783cbc4efdd7f4d3df5f4
parentloplugin:unnecessaryparen (clang-cl) (diff)
downloadcore-5df0c80b8dc1106a8c28967226526b05b047bc09.tar.gz
core-5df0c80b8dc1106a8c28967226526b05b047bc09.zip
uitest for tdf#108124
Change-Id: If500712e1fddc2a65b5c2df1649231ff3b46a45b Reviewed-on: https://gerrit.libreoffice.org/47019 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Jenkins <ci@libreoffice.org>
-rw-r--r--sw/qa/uitest/writer_tests/data/tdf108124.odtbin0 -> 21575 bytes
-rw-r--r--sw/qa/uitest/writer_tests/tdf108124.py37
2 files changed, 37 insertions, 0 deletions
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
--- /dev/null
+++ b/sw/qa/uitest/writer_tests/data/tdf108124.odt
Binary files 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: