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

Zdeněk Crhonek zcrhonek at gmail.com
Mon Jun 25 18:03:21 UTC 2018


 sc/qa/uitest/autofilter/data/tdf101165.ods |binary
 sc/qa/uitest/autofilter/tdf101165.py       |   39 +++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

New commits:
commit 0daff7fc119a4c6430bb47425d3f842e21abdfaf
Author: Zdeněk Crhonek <zcrhonek at gmail.com>
Date:   Sun Jun 24 23:20:30 2018 +0200

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

diff --git a/sc/qa/uitest/autofilter/data/tdf101165.ods b/sc/qa/uitest/autofilter/data/tdf101165.ods
new file mode 100644
index 000000000000..9c459bbc52c0
Binary files /dev/null and b/sc/qa/uitest/autofilter/data/tdf101165.ods differ
diff --git a/sc/qa/uitest/autofilter/tdf101165.py b/sc/qa/uitest/autofilter/tdf101165.py
new file mode 100644
index 000000000000..32ffb7c27c62
--- /dev/null
+++ b/sc/qa/uitest/autofilter/tdf101165.py
@@ -0,0 +1,39 @@
+# -*- 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 101165 - Crashing on a filter selection, every time
+
+class tdf101165(UITestCase):
+    def test_tdf101165_autofilter(self):
+        calc_doc = self.ui_test.load_file(get_url_for_data_file("tdf101165.ods"))
+        xCalcDoc = self.xUITest.getTopFocusWindow()
+        gridwin = xCalcDoc.getChild("grid_window")
+        document = self.ui_test.get_component()
+
+        gridwin.executeAction("LAUNCH", mkPropertyValues({"AUTOFILTER": "", "COL": "1", "ROW": "0"}))
+        xFloatWindow = self.xUITest.getFloatWindow()
+        xAll = xFloatWindow.getChild("toggle_all")
+        xAll.executeAction("CLICK", tuple())
+
+        self.assertEqual(get_cell_by_position(document, 1, 0, 1).getValue(), 6494)
+
+        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