summaryrefslogtreecommitdiff
path: root/sc/qa/uitest/chart/chartYAxis.py
blob: 22e7fe67b8fb2ea6477f94eb787be8c6a762b1ba (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# -*- 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 select_pos
from uitest.uihelper.common import select_by_text
from uitest.uihelper.common import change_measurement_unit
from uitest.uihelper.calc import enter_text_to_cell
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.uihelper.common import get_state_as_dict, get_url_for_data_file, type_text

#Chart - Y Axis

class chartYAxis(UITestCase):
   def test_chart_y_axis_dialog(self):
    with self.ui_test.load_file(get_url_for_data_file("tdf122398.ods")) as calc_doc:
        xCalcDoc = self.xUITest.getTopFocusWindow()
        gridwin = xCalcDoc.getChild("grid_window")
        document = self.ui_test.get_component()

        change_measurement_unit(self, "Centimeter")

        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))  # X Axis...
        xDialog = self.xUITest.getTopFocusWindow()
        #Click on tab "Scale".
        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "0")


        reverseDirection = xDialog.getChild("CBX_REVERSE")
        logarithmicScale = xDialog.getChild("CBX_LOGARITHM")
        autoMinimum = xDialog.getChild("CBX_AUTO_MIN")
        autoMaximum = xDialog.getChild("CBX_AUTO_MAX")
        majorInterval = xDialog.getChild("CBX_AUTO_STEP_MAIN")
        minorInterval = xDialog.getChild("CBX_AUTO_STEP_HELP")
        minimum = xDialog.getChild("EDT_MIN")
        maximum = xDialog.getChild("EDT_MAX")
        major = xDialog.getChild("EDT_STEP_MAIN")
        minor = xDialog.getChild("MT_STEPHELP")

        reverseDirection.executeAction("CLICK", tuple())
        logarithmicScale.executeAction("CLICK", tuple())
        autoMinimum.executeAction("CLICK", tuple())
        autoMaximum.executeAction("CLICK", tuple())
        majorInterval.executeAction("CLICK", tuple())
        minorInterval.executeAction("CLICK", tuple())

        minimum.executeAction("UP", tuple()) #1
        maximum.executeAction("DOWN", tuple()) #17
        major.executeAction("DOWN", tuple())   #1
        minor.executeAction("UP", tuple())  #3
        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

        #reopen and verify
        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))
        xDialog = self.xUITest.getTopFocusWindow()
        #Click on tab "Scale".
        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "0")

        reverseDirection = xDialog.getChild("CBX_REVERSE")
        logarithmicScale = xDialog.getChild("CBX_LOGARITHM")
        autoMinimum = xDialog.getChild("CBX_AUTO_MIN")
        autoMaximum = xDialog.getChild("CBX_AUTO_MAX")
        majorInterval = xDialog.getChild("CBX_AUTO_STEP_MAIN")
        minorInterval = xDialog.getChild("CBX_AUTO_STEP_HELP")
        minimum = xDialog.getChild("EDT_MIN")
        maximum = xDialog.getChild("EDT_MAX")
        major = xDialog.getChild("EDT_STEP_MAIN")
        minor = xDialog.getChild("MT_STEPHELP")

        self.assertEqual(get_state_as_dict(reverseDirection)["Selected"], "true")
        self.assertEqual(get_state_as_dict(logarithmicScale)["Selected"], "true")
        self.assertEqual(get_state_as_dict(autoMinimum)["Selected"], "false")
        self.assertEqual(get_state_as_dict(autoMaximum)["Selected"], "false")
        self.assertEqual(get_state_as_dict(majorInterval)["Selected"], "false")
        self.assertEqual(get_state_as_dict(minorInterval)["Selected"], "false")
        self.assertEqual(get_state_as_dict(minimum)["Text"], "1")
        self.assertEqual(get_state_as_dict(maximum)["Text"], "17")
        self.assertEqual(get_state_as_dict(major)["Text"], "1")
        self.assertEqual(get_state_as_dict(minor)["Text"], "3")

        #Click on tab "positioning".
        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "1")

        crossAxis = xDialog.getChild("LB_CROSSES_OTHER_AXIS_AT")
        crossAxisValue = xDialog.getChild("EDT_CROSSES_OTHER_AXIS_AT") #only available when crossAxis = Value
        placeLabels = xDialog.getChild("LB_PLACE_LABELS")
        innerMajorTick = xDialog.getChild("CB_TICKS_INNER")
        outerMajorTick = xDialog.getChild("CB_TICKS_OUTER")
        innerMinorTick = xDialog.getChild("CB_MINOR_INNER")
        outerMinorTick = xDialog.getChild("CB_MINOR_OUTER")
        placeMarks = xDialog.getChild("LB_PLACE_TICKS")

        select_by_text(crossAxis, "Start")
        select_by_text(placeLabels, "Outside end")
        innerMajorTick.executeAction("CLICK", tuple())
        outerMajorTick.executeAction("CLICK", tuple())
        innerMinorTick.executeAction("CLICK", tuple())
        outerMinorTick.executeAction("CLICK", tuple())
        select_by_text(placeMarks, "At axis")

        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

        #reopen and verify tab "positioning".
        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))
        xDialog = self.xUITest.getTopFocusWindow()

        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "1")

        crossAxis = xDialog.getChild("LB_CROSSES_OTHER_AXIS_AT")
        crossAxisValue = xDialog.getChild("EDT_CROSSES_OTHER_AXIS_AT") #only available when crossAxis = Value
        placeLabels = xDialog.getChild("LB_PLACE_LABELS")
        innerMajorTick = xDialog.getChild("CB_TICKS_INNER")
        outerMajorTick = xDialog.getChild("CB_TICKS_OUTER")
        innerMinorTick = xDialog.getChild("CB_MINOR_INNER")
        outerMinorTick = xDialog.getChild("CB_MINOR_OUTER")
        placeMarks = xDialog.getChild("LB_PLACE_TICKS")

        self.assertEqual(get_state_as_dict(crossAxis)["SelectEntryText"], "Start")
        self.assertEqual(get_state_as_dict(placeLabels)["SelectEntryText"], "Outside end")
        self.assertEqual(get_state_as_dict(innerMajorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(outerMajorTick)["Selected"], "false")
        self.assertEqual(get_state_as_dict(innerMinorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(outerMinorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(placeMarks)["SelectEntryText"], "At axis")
        #change tab "positioning".
        select_by_text(crossAxis, "Value")
        crossAxisValue.executeAction("CLEAR", tuple())
        crossAxisValue.executeAction("TYPE", mkPropertyValues({"TEXT":"19.01.2018"}))  #19.01.2018

        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

        #reopen and verify tab "positioning".
        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))
        xDialog = self.xUITest.getTopFocusWindow()

        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "1")

        crossAxis = xDialog.getChild("LB_CROSSES_OTHER_AXIS_AT")
        crossAxisValue = xDialog.getChild("EDT_CROSSES_OTHER_AXIS_AT") #only available when crossAxis = Value
        placeLabels = xDialog.getChild("LB_PLACE_LABELS")
        innerMajorTick = xDialog.getChild("CB_TICKS_INNER")
        outerMajorTick = xDialog.getChild("CB_TICKS_OUTER")
        innerMinorTick = xDialog.getChild("CB_MINOR_INNER")
        outerMinorTick = xDialog.getChild("CB_MINOR_OUTER")
        placeMarks = xDialog.getChild("LB_PLACE_TICKS")

        self.assertEqual(get_state_as_dict(crossAxis)["SelectEntryText"], "Value")
        #self.assertEqual(get_state_as_dict(crossAxisValue)["Text"], "19.01.2018")   #bug 123520
        self.assertEqual(get_state_as_dict(placeLabels)["SelectEntryText"], "Outside end")
        self.assertEqual(get_state_as_dict(innerMajorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(outerMajorTick)["Selected"], "false")
        self.assertEqual(get_state_as_dict(innerMinorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(outerMinorTick)["Selected"], "true")
        self.assertEqual(get_state_as_dict(placeMarks)["SelectEntryText"], "At axis")
        #change tab "Line".
        select_pos(tabcontrol, "2")

        xWidth = xDialog.getChild("MTR_FLD_LINE_WIDTH")
        transparency = xDialog.getChild("MTR_LINE_TRANSPARENT")

        xWidth.executeAction("UP", tuple())
        transparency.executeAction("UP", tuple())

        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

        #reopen and verify tab "Line".
        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))
        xDialog = self.xUITest.getTopFocusWindow()

        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "2")

        xWidth = xDialog.getChild("MTR_FLD_LINE_WIDTH")
        transparency = xDialog.getChild("MTR_LINE_TRANSPARENT")

        self.assertEqual(get_state_as_dict(xWidth)["Text"], "0.10 cm")
        self.assertEqual(get_state_as_dict(transparency)["Text"], "5%")

        #change tab "Label"
        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "3")

        tile = xDialog.getChild("tile")
        overlapCB = xDialog.getChild("overlapCB")
        breakCB = xDialog.getChild("breakCB")
        stackedCB = xDialog.getChild("stackedCB")
        textdirLB = xDialog.getChild("textdirLB")

        tile.executeAction("CLICK", tuple())
        overlapCB.executeAction("CLICK", tuple())
        breakCB.executeAction("CLICK", tuple())
        stackedCB.executeAction("CLICK", tuple())
        select_by_text(textdirLB, "Right-to-left")

        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

        #reopen and verify tab "Label".
        gridwin.executeAction("SELECT", mkPropertyValues({"OBJECT": "Object 1"}))
        gridwin.executeAction("ACTIVATE", tuple())
        xChartMainTop = self.xUITest.getTopFocusWindow()
        xChartMain = xChartMainTop.getChild("chart_window")
        xSeriesObj =  xChartMain.getChild("CID/D=0:CS=0:CT=0:Series=0")
        self.ui_test.execute_dialog_through_action(xSeriesObj, "COMMAND", mkPropertyValues({"COMMAND": "DiagramAxisY"}))
        xDialog = self.xUITest.getTopFocusWindow()

        tabcontrol = xDialog.getChild("tabcontrol")
        select_pos(tabcontrol, "3")

        tile = xDialog.getChild("tile")
        overlapCB = xDialog.getChild("overlapCB")
        breakCB = xDialog.getChild("breakCB")
        stackedCB = xDialog.getChild("stackedCB")
        textdirLB = xDialog.getChild("textdirLB")

        self.assertEqual(get_state_as_dict(tile)["Checked"], "true")
        self.assertEqual(get_state_as_dict(overlapCB)["Selected"], "true")
        self.assertEqual(get_state_as_dict(breakCB)["Selected"], "true")
        self.assertEqual(get_state_as_dict(stackedCB)["Selected"], "true")
        self.assertEqual(get_state_as_dict(textdirLB)["SelectEntryText"], "Right-to-left")

        xOKBtn = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOKBtn)

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