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 <zcrho...@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.mohrh...@googlemail.com> Tested-by: Jenkins <c...@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: _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits