1 # -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 from uitest
.framework
import UITestCase
10 from uitest
.uihelper
.calc
import enter_text_to_cell
12 from libreoffice
.calc
.document
import get_cell_by_position
13 from libreoffice
.uno
.propertyvalue
import mkPropertyValues
16 class correlation(UITestCase
):
17 def test_statistic_correlation_column(self
):
18 with self
.ui_test
.create_doc_in_start_center("calc") as document
:
19 xCalcDoc
= self
.xUITest
.getTopFocusWindow()
20 gridwin
= xCalcDoc
.getChild("grid_window")
22 enter_text_to_cell(gridwin
, "A1", "Maths")
23 enter_text_to_cell(gridwin
, "A2", "47")
24 enter_text_to_cell(gridwin
, "A3", "36")
25 enter_text_to_cell(gridwin
, "A4", "40")
26 enter_text_to_cell(gridwin
, "A5", "39")
27 enter_text_to_cell(gridwin
, "A7", "47")
28 enter_text_to_cell(gridwin
, "A8", "29")
29 enter_text_to_cell(gridwin
, "A9", "27")
30 enter_text_to_cell(gridwin
, "A10", "57")
31 enter_text_to_cell(gridwin
, "A11", "56")
32 enter_text_to_cell(gridwin
, "A12", "57")
33 enter_text_to_cell(gridwin
, "A13", "26")
35 enter_text_to_cell(gridwin
, "B1", "Physics")
36 enter_text_to_cell(gridwin
, "B2", "67")
37 enter_text_to_cell(gridwin
, "B3", "68")
38 enter_text_to_cell(gridwin
, "B4", "65")
39 enter_text_to_cell(gridwin
, "B5", "64")
40 enter_text_to_cell(gridwin
, "B6", "38")
41 enter_text_to_cell(gridwin
, "B7", "84")
42 enter_text_to_cell(gridwin
, "B8", "80")
43 enter_text_to_cell(gridwin
, "B9", "49")
44 enter_text_to_cell(gridwin
, "B10", "49")
45 enter_text_to_cell(gridwin
, "B11", "33")
47 enter_text_to_cell(gridwin
, "C1", "Biology")
48 enter_text_to_cell(gridwin
, "C2", "33")
49 enter_text_to_cell(gridwin
, "C3", "42")
50 enter_text_to_cell(gridwin
, "C4", "44")
51 enter_text_to_cell(gridwin
, "C5", "60")
52 enter_text_to_cell(gridwin
, "C6", "43")
53 enter_text_to_cell(gridwin
, "C7", "62")
54 enter_text_to_cell(gridwin
, "C8", "51")
55 enter_text_to_cell(gridwin
, "C9", "40")
56 enter_text_to_cell(gridwin
, "C10", "12")
57 enter_text_to_cell(gridwin
, "C11", "60")
58 gridwin
.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:C13"}))
59 with self
.ui_test
.execute_modeless_dialog_through_command(".uno:CorrelationDialog") as xDialog
:
60 xinputrangeedit
= xDialog
.getChild("input-range-edit")
61 xoutputrangeedit
= xDialog
.getChild("output-range-edit")
62 xgroupedbyrowsradio
= xDialog
.getChild("groupedby-rows-radio")
63 xgroupedbycolumnsradio
= xDialog
.getChild("groupedby-columns-radio")
65 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
66 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
67 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"TEXT":"$Sheet1.$A$1:$C$13"}))
68 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
69 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
70 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"TEXT":"$F$1"}))
71 xgroupedbyrowsradio
.executeAction("CLICK", tuple())
72 xgroupedbycolumnsradio
.executeAction("CLICK", tuple())
75 self
.assertEqual(get_cell_by_position(document
, 0, 5, 0).getString(), "Correlations")
76 self
.assertEqual(get_cell_by_position(document
, 0, 5, 1).getString(), "Column 1")
77 self
.assertEqual(get_cell_by_position(document
, 0, 5, 2).getString(), "Column 2")
78 self
.assertEqual(get_cell_by_position(document
, 0, 5, 3).getString(), "Column 3")
80 self
.assertEqual(get_cell_by_position(document
, 0, 6, 0).getString(), "Column 1")
81 self
.assertEqual(get_cell_by_position(document
, 0, 6, 1).getValue(), 1)
82 self
.assertEqual(round(get_cell_by_position(document
, 0, 6, 2).getValue(),14), -0.40292549168204)
83 self
.assertEqual(round(get_cell_by_position(document
, 0, 6, 3).getValue(),14), -0.21076428363645)
85 self
.assertEqual(get_cell_by_position(document
, 0, 7, 0).getString(), "Column 2")
86 self
.assertEqual(get_cell_by_position(document
, 0, 7, 2).getValue(), 1)
87 self
.assertEqual(round(get_cell_by_position(document
, 0, 7, 3).getValue(),14), 0.23097140475091)
89 self
.assertEqual(get_cell_by_position(document
, 0, 8, 0).getString(), "Column 3")
90 self
.assertEqual(get_cell_by_position(document
, 0, 8, 3).getValue(), 1)
93 self
.xUITest
.executeCommand(".uno:Undo")
94 self
.assertEqual(get_cell_by_position(document
, 0, 5, 0).getString(), "")
97 with self
.ui_test
.execute_modeless_dialog_through_command(".uno:CorrelationDialog", close_button
="cancel"):
100 def test_statistic_correlation_row(self
):
101 with self
.ui_test
.create_doc_in_start_center("calc") as document
:
102 xCalcDoc
= self
.xUITest
.getTopFocusWindow()
103 gridwin
= xCalcDoc
.getChild("grid_window")
105 enter_text_to_cell(gridwin
, "A1", "Maths")
106 enter_text_to_cell(gridwin
, "A2", "Physics")
107 enter_text_to_cell(gridwin
, "A3", "Biology")
109 enter_text_to_cell(gridwin
, "B1", "47")
110 enter_text_to_cell(gridwin
, "B2", "67")
111 enter_text_to_cell(gridwin
, "B3", "33")
113 enter_text_to_cell(gridwin
, "C1", "36")
114 enter_text_to_cell(gridwin
, "C2", "68")
115 enter_text_to_cell(gridwin
, "C3", "42")
117 enter_text_to_cell(gridwin
, "D1", "40")
118 enter_text_to_cell(gridwin
, "D2", "65")
119 enter_text_to_cell(gridwin
, "D3", "44")
121 enter_text_to_cell(gridwin
, "E1", "39")
122 enter_text_to_cell(gridwin
, "E2", "64")
123 enter_text_to_cell(gridwin
, "E3", "60")
125 enter_text_to_cell(gridwin
, "F2", "38")
126 enter_text_to_cell(gridwin
, "F3", "43")
128 enter_text_to_cell(gridwin
, "G1", "47")
129 enter_text_to_cell(gridwin
, "G2", "84")
130 enter_text_to_cell(gridwin
, "G3", "62")
132 enter_text_to_cell(gridwin
, "H1", "29")
133 enter_text_to_cell(gridwin
, "H2", "80")
134 enter_text_to_cell(gridwin
, "H3", "51")
136 enter_text_to_cell(gridwin
, "I1", "27")
137 enter_text_to_cell(gridwin
, "I2", "49")
138 enter_text_to_cell(gridwin
, "I3", "40")
140 enter_text_to_cell(gridwin
, "J1", "57")
141 enter_text_to_cell(gridwin
, "J2", "49")
142 enter_text_to_cell(gridwin
, "J3", "12")
144 enter_text_to_cell(gridwin
, "K1", "56")
145 enter_text_to_cell(gridwin
, "K2", "33")
146 enter_text_to_cell(gridwin
, "K3", "60")
148 enter_text_to_cell(gridwin
, "L1", "57")
150 enter_text_to_cell(gridwin
, "M1", "26")
152 gridwin
.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:M3"}))
153 with self
.ui_test
.execute_modeless_dialog_through_command(".uno:CorrelationDialog") as xDialog
:
154 xinputrangeedit
= xDialog
.getChild("input-range-edit")
155 xoutputrangeedit
= xDialog
.getChild("output-range-edit")
156 xgroupedbyrowsradio
= xDialog
.getChild("groupedby-rows-radio")
158 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
159 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
160 xinputrangeedit
.executeAction("TYPE", mkPropertyValues({"TEXT":"$Sheet1.$A$1:$M$3"}))
161 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
162 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
163 xoutputrangeedit
.executeAction("TYPE", mkPropertyValues({"TEXT":"$A$7"}))
164 xgroupedbyrowsradio
.executeAction("CLICK", tuple())
166 self
.assertEqual(get_cell_by_position(document
, 0, 0, 6).getString(), "Correlations")
167 self
.assertEqual(get_cell_by_position(document
, 0, 0, 7).getString(), "Row 1")
168 self
.assertEqual(get_cell_by_position(document
, 0, 0, 8).getString(), "Row 2")
169 self
.assertEqual(get_cell_by_position(document
, 0, 0, 9).getString(), "Row 3")
171 self
.assertEqual(get_cell_by_position(document
, 0, 1, 6).getString(), "Row 1")
172 self
.assertEqual(get_cell_by_position(document
, 0, 1, 7).getValue(), 1)
173 self
.assertEqual(round(get_cell_by_position(document
, 0, 1, 8).getValue(),15), -0.402925491682042)
174 self
.assertEqual(round(get_cell_by_position(document
, 0, 1, 9).getValue(),15), -0.210764283636454)
176 self
.assertEqual(get_cell_by_position(document
, 0, 2, 6).getString(), "Row 2")
177 self
.assertEqual(get_cell_by_position(document
, 0, 2, 8).getValue(), 1)
178 self
.assertEqual(round(get_cell_by_position(document
, 0, 2, 9).getValue(),14), 0.23097140475091)
180 self
.assertEqual(get_cell_by_position(document
, 0, 3, 6).getString(), "Row 3")
181 self
.assertEqual(get_cell_by_position(document
, 0, 3, 9).getValue(), 1)
184 self
.xUITest
.executeCommand(".uno:Undo")
185 self
.assertEqual(get_cell_by_position(document
, 0, 5, 0).getString(), "")
187 # vim: set shiftwidth=4 softtabstop=4 expandtab: