summaryrefslogtreecommitdiff
path: root/sc/qa/uitest/autofilter/tdf122260.py
blob: 00c141e3195f9c47cabc252bf79d3b722380a115 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# -*- 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 libreoffice.calc.document import is_row_hidden
from uitest.uihelper.common import get_url_for_data_file

#Bug 122260 - EDITING Autofilters not properly cleared
class tdf122260(UITestCase):
    def check_value_in_AutoFilter(self, gridwin, columnIndex, valueIndex):
        # open filter pop-up window
        self.assertIsNotNone(gridwin)
        gridwin.executeAction("LAUNCH", mkPropertyValues({"AUTOFILTER": "", "COL": columnIndex, "ROW": "0"}))
        xFloatWindow = self.xUITest.getFloatWindow()
        self.assertIsNotNone(xFloatWindow)

        # get check list
        xCheckListMenu = xFloatWindow.getChild("check_list_menu")
        self.assertIsNotNone(xCheckListMenu)

        xTreeList = xCheckListMenu.getChild("check_list_box")
        self.assertIsNotNone(xTreeList)

        # on/off required checkbox
        xEntry = xTreeList.getChild(valueIndex)
        self.assertIsNotNone(xEntry)
        xEntry.executeAction("CLICK", tuple())

        # close pop-up window
        xOkBtn = xFloatWindow.getChild("ok")
        self.assertIsNotNone(xOkBtn)
        xOkBtn.executeAction("CLICK", tuple())

    def get_values_count_in_AutoFilter(self, gridwin, columnIndex):
        # open filter pop-up window
        self.assertIsNotNone(gridwin)
        gridwin.executeAction("LAUNCH", mkPropertyValues({"AUTOFILTER": "", "COL": columnIndex, "ROW": "0"}))
        xFloatWindow = self.xUITest.getFloatWindow()
        self.assertIsNotNone(xFloatWindow)

        # get check list
        xCheckListMenu = xFloatWindow.getChild("check_list_menu")
        self.assertIsNotNone(xCheckListMenu)

        xTreeList = xCheckListMenu.getChild("check_list_box")
        self.assertIsNotNone(xTreeList)

        valuesCount = len(xTreeList.getChildren())

        # close pop-up window
        xOkBtn = xFloatWindow.getChild("ok")
        self.assertIsNotNone(xOkBtn)
        xOkBtn.executeAction("CLICK", tuple())

        return valuesCount

    def test_tdf122260_autofilter(self):
        calc_doc = self.ui_test.load_file(get_url_for_data_file("tdf122260.ods"))
        xCalcDoc = self.xUITest.getTopFocusWindow()
        gridwin = xCalcDoc.getChild("grid_window")
        self.assertIsNotNone(gridwin)

        # filter out b1
        self.check_value_in_AutoFilter(gridwin, "1", "0")
        # filter out a2 (as a1 is filtered out a2 is the first item)
        self.check_value_in_AutoFilter(gridwin, "0", "0")
        # return back a2 (as a1 is filtered out a2 is the first item)
        self.check_value_in_AutoFilter(gridwin, "0", "0")

        # check rows visibility
        # row-0 is row with headers
        self.assertTrue(is_row_hidden(calc_doc, 1))
        self.assertFalse(is_row_hidden(calc_doc, 2))
        self.assertFalse(is_row_hidden(calc_doc, 3))
        self.assertFalse(is_row_hidden(calc_doc, 4))

        # check if "b1" is accessible in filter of the column-b
        # (so all values of the column B are available)
        self.assertEqual(4, self.get_values_count_in_AutoFilter(gridwin, "1"))

        self.ui_test.close_doc()

# vim: set shiftwidth=4 softtabstop=4 expandtab: