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
|
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This file is part of the LibreOffice project.
#
# 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 select_pos
from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file
from libreoffice.calc.document import get_row
class Tdf134059(UITestCase):
def assertSeriesNames(self, gridwin):
gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
gridwin.executeAction("ACTIVATE", tuple())
xChartMainTop = self.xUITest.getTopFocusWindow()
xChartMain = xChartMainTop.getChild("chart_window")
xPage = xChartMain.getChild("CID/Page=")
with self.ui_test.execute_dialog_through_action(xPage, "COMMAND", mkPropertyValues({"COMMAND": "DataRanges"})) as xDialog:
xTabs = xDialog.getChild("tabcontrol")
select_pos(xTabs, "1")
xSeries = xDialog.getChild("LB_SERIES")
self.assertEqual(3, len(xSeries.getChildren()))
self.assertEqual("Col. 1", get_state_as_dict(xSeries.getChild('0'))['Text'])
self.assertEqual("Col. 2", get_state_as_dict(xSeries.getChild('1'))['Text'])
self.assertEqual("Col. 3", get_state_as_dict(xSeries.getChild('2'))['Text'])
gridwin.executeAction("DESELECT", mkPropertyValues({"OBJECT": "Object 1"}))
def test_tdf134059(self):
with self.ui_test.load_file(get_url_for_data_file("tdf134059.ods")) as calc_doc:
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
self.assertSeriesNames(gridwin)
# Hide row 10
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A10"}))
self.ui_test._xUITest.executeCommand(".uno:HideRow")
row = get_row(calc_doc, 9)
self.assertFalse(row.getPropertyValue("IsVisible"))
# Without the fix in place, this test would have failed with
# AssertionError: 'Col. 1' != 'Column C'
self.assertSeriesNames(gridwin)
self.xUITest.executeCommand(".uno:Undo")
self.assertTrue(row.getPropertyValue("IsVisible"))
self.assertSeriesNames(gridwin)
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|