summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZdeněk Crhonek <zcrhonek@gmail.com>2018-06-24 23:20:30 +0200
committerZdenek Crhonek <zcrhonek@gmail.com>2018-06-25 20:03:00 +0200
commit0daff7fc119a4c6430bb47425d3f842e21abdfaf (patch)
tree77e4c448a30b72394af8b30bbafc63bc7902cee5
parent2704821c6b6e829b5ef5c32cdc8eb2a03b6114a9 (diff)
uitest for bug tdf#101165
Change-Id: Ia70a6f591c4f699ba441e4b0b87a2d7fcafde5dd Reviewed-on: https://gerrit.libreoffice.org/56364 Tested-by: Jenkins Reviewed-by: Zdenek Crhonek <zcrhonek@gmail.com>
-rw-r--r--sc/qa/uitest/autofilter/data/tdf101165.odsbin0 -> 33103 bytes
-rw-r--r--sc/qa/uitest/autofilter/tdf101165.py39
2 files changed, 39 insertions, 0 deletions
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
--- /dev/null
+++ b/sc/qa/uitest/autofilter/data/tdf101165.ods
Binary files 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