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
|
# -*- 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.calc import enter_text_to_cell
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
class movingAverage(UITestCase):
def test_moving_average_column(self):
with self.ui_test.create_doc_in_start_center("calc") as document:
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
#fill data
enter_text_to_cell(gridwin, "A1", "1")
enter_text_to_cell(gridwin, "A2", "0")
enter_text_to_cell(gridwin, "A3", "0")
enter_text_to_cell(gridwin, "A4", "0")
enter_text_to_cell(gridwin, "A5", "0")
enter_text_to_cell(gridwin, "A7", "0")
enter_text_to_cell(gridwin, "A8", "0")
enter_text_to_cell(gridwin, "A9", "0")
enter_text_to_cell(gridwin, "A10", "0")
enter_text_to_cell(gridwin, "A11", "0")
enter_text_to_cell(gridwin, "A12", "0")
enter_text_to_cell(gridwin, "A13", "0")
enter_text_to_cell(gridwin, "B1", "0")
enter_text_to_cell(gridwin, "B2", "0")
enter_text_to_cell(gridwin, "B3", "1")
enter_text_to_cell(gridwin, "B4", "0")
enter_text_to_cell(gridwin, "B5", "0")
enter_text_to_cell(gridwin, "B6", "0")
enter_text_to_cell(gridwin, "B7", "0")
enter_text_to_cell(gridwin, "B8", "0")
enter_text_to_cell(gridwin, "B9", "0")
enter_text_to_cell(gridwin, "B10", "0")
enter_text_to_cell(gridwin, "B11", "0")
enter_text_to_cell(gridwin, "B12", "0")
enter_text_to_cell(gridwin, "B13", "0")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:B13"}))
with self.ui_test.execute_modeless_dialog_through_command(".uno:MovingAverageDialog") as xDialog:
xinputrangeedit = xDialog.getChild("input-range-edit")
xoutputrangeedit = xDialog.getChild("output-range-edit")
xintervalspin = xDialog.getChild("interval-spin")
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"TEXT":"$Sheet1.$A$1:$B$13"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"TEXT":"$F$1"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"TEXT":"3"}))
#Verify
self.assertEqual(get_cell_by_position(document, 0, 5, 0).getString(), "Column 1")
self.assertEqual(get_cell_by_position(document, 0, 5, 1).getString(), "#N/A")
self.assertEqual(round(get_cell_by_position(document, 0, 5, 2).getValue(),8), 0.33333333)
self.assertEqual(get_cell_by_position(document, 0, 5, 3).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 4).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 5).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 6).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 7).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 8).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 9).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 10).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 11).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 12).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 5, 13).getString(), "#N/A")
self.assertEqual(get_cell_by_position(document, 0, 6, 0).getString(), "Column 2")
self.assertEqual(get_cell_by_position(document, 0, 6, 1).getString(), "#N/A")
self.assertEqual(round(get_cell_by_position(document, 0, 6, 2).getValue(),8), 0.33333333)
self.assertEqual(round(get_cell_by_position(document, 0, 6, 3).getValue(),8), 0.33333333)
self.assertEqual(round(get_cell_by_position(document, 0, 6, 4).getValue(),8), 0.33333333)
self.assertEqual(get_cell_by_position(document, 0, 6, 5).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 6).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 7).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 9).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 10).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 11).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 12).getValue(), 0)
self.assertEqual(get_cell_by_position(document, 0, 6, 13).getString(), "#N/A")
#undo
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual(get_cell_by_position(document, 0, 5, 0).getString(), "")
# test cancel button
with self.ui_test.execute_modeless_dialog_through_command(".uno:MovingAverageDialog", close_button="cancel"):
pass
def test_moving_average_row(self):
with self.ui_test.create_doc_in_start_center("calc") as document:
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
#fill data
enter_text_to_cell(gridwin, "A1", "1")
enter_text_to_cell(gridwin, "A2", "0")
enter_text_to_cell(gridwin, "A3", "0")
enter_text_to_cell(gridwin, "A4", "0")
enter_text_to_cell(gridwin, "A5", "0")
enter_text_to_cell(gridwin, "A7", "0")
enter_text_to_cell(gridwin, "A8", "0")
enter_text_to_cell(gridwin, "A9", "0")
enter_text_to_cell(gridwin, "A10", "0")
enter_text_to_cell(gridwin, "A11", "0")
enter_text_to_cell(gridwin, "A12", "0")
enter_text_to_cell(gridwin, "A13", "0")
enter_text_to_cell(gridwin, "B1", "0")
enter_text_to_cell(gridwin, "B2", "0")
enter_text_to_cell(gridwin, "B3", "1")
enter_text_to_cell(gridwin, "B4", "0")
enter_text_to_cell(gridwin, "B5", "0")
enter_text_to_cell(gridwin, "B6", "0")
enter_text_to_cell(gridwin, "B7", "0")
enter_text_to_cell(gridwin, "B8", "0")
enter_text_to_cell(gridwin, "B9", "0")
enter_text_to_cell(gridwin, "B10", "0")
enter_text_to_cell(gridwin, "B11", "0")
enter_text_to_cell(gridwin, "B12", "0")
enter_text_to_cell(gridwin, "B13", "0")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:B13"}))
with self.ui_test.execute_modeless_dialog_through_command(".uno:MovingAverageDialog") as xDialog:
xinputrangeedit = xDialog.getChild("input-range-edit")
xoutputrangeedit = xDialog.getChild("output-range-edit")
xgroupedbyrowsradio = xDialog.getChild("groupedby-rows-radio")
xintervalspin = xDialog.getChild("interval-spin")
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xinputrangeedit.executeAction("TYPE", mkPropertyValues({"TEXT":"$Sheet1.$A$1:$B$13"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xoutputrangeedit.executeAction("TYPE", mkPropertyValues({"TEXT":"$F$1"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xintervalspin.executeAction("TYPE", mkPropertyValues({"TEXT":"3"}))
xgroupedbyrowsradio.executeAction("CLICK", tuple())
#Verify
self.assertEqual(get_cell_by_position(document, 0, 5, 0).getString(), "Row 1")
self.assertEqual(get_cell_by_position(document, 0, 5, 1).getString(), "#N/A")
self.assertEqual(get_cell_by_position(document, 0, 5, 2).getString(), "#N/A")
self.assertEqual(get_cell_by_position(document, 0, 6, 0).getString(), "Row 2")
self.assertEqual(get_cell_by_position(document, 0, 6, 1).getString(), "#N/A")
self.assertEqual(get_cell_by_position(document, 0, 6, 2).getString(), "#N/A")
#undo
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual(get_cell_by_position(document, 0, 5, 0).getString(), "")
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|