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

Zdeněk Crhonek zcrhonek at gmail.com
Tue Jun 26 19:03:15 UTC 2018


 sc/qa/uitest/autofilter/tdf97340.py |   38 ++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

New commits:
commit 8e908ed926354703a00e19669e3f2631ebb05497
Author: Zdeněk Crhonek <zcrhonek at gmail.com>
Date:   Sun Jun 24 22:56:37 2018 +0200

    uitest for bug tdf#97340
    
    Change-Id: I5d8cb62f89e680e6d3cc3ad3ddaa727358b42424
    Reviewed-on: https://gerrit.libreoffice.org/56362
    Tested-by: Jenkins
    Reviewed-by: Zdenek Crhonek <zcrhonek at gmail.com>

diff --git a/sc/qa/uitest/autofilter/tdf97340.py b/sc/qa/uitest/autofilter/tdf97340.py
new file mode 100644
index 000000000000..237ed71178ba
--- /dev/null
+++ b/sc/qa/uitest/autofilter/tdf97340.py
@@ -0,0 +1,38 @@
+# -*- 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
+from uitest.uihelper.common import select_pos
+from uitest.uihelper.calc import enter_text_to_cell
+from libreoffice.calc.document import get_sheet_from_doc
+from libreoffice.calc.conditional_format import get_conditional_format_from_sheet
+from uitest.debug import sleep
+from libreoffice.calc.document import get_cell_by_position
+from libreoffice.uno.propertyvalue import mkPropertyValues
+import org.libreoffice.unotest
+import pathlib
+
+def get_url_for_data_file(file_name):
+    return pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
+
+#Bug 97340 - Calc crashes on filtering with select checkbox with space bar
+
+class tdf97340(UITestCase):
+    def test_tdf97340_autofilter(self):
+        calc_doc = self.ui_test.load_file(get_url_for_data_file("autofilter.ods"))
+        xCalcDoc = self.xUITest.getTopFocusWindow()
+        gridwin = xCalcDoc.getChild("grid_window")
+        document = self.ui_test.get_component()
+
+        gridwin.executeAction("LAUNCH", mkPropertyValues({"AUTOFILTER": "", "COL": "0", "ROW": "0"}))
+        xFloatWindow = self.xUITest.getFloatWindow()
+        xsearchEdit = xFloatWindow.getChild("search_edit")
+        xsearchEdit.executeAction("TYPE", mkPropertyValues({"TEXT":" "}))
+        xsearchEdit.executeAction("TYPE", mkPropertyValues({"KEYCODE": "BACKSPACE"}))
+
+        self.ui_test.close_doc()
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
\ No newline at end of file


More information about the Libreoffice-commits mailing list