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
|
# -*- 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 get_state_as_dict, get_url_for_data_file
from uitest.uihelper.common import select_by_text
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
class solver(UITestCase):
def test_solver(self):
with self.ui_test.load_file(get_url_for_data_file("solver.ods")) as calc_doc:
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B4"}))
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xtargetedit = xDialog.getChild("targetedit")
xmax = xDialog.getChild("max")
xvalue = xDialog.getChild("value")
xvalueedit = xDialog.getChild("valueedit")
xchangeedit = xDialog.getChild("changeedit")
xref1edit = xDialog.getChild("ref1edit")
xval1edit = xDialog.getChild("val1edit")
xop1list = xDialog.getChild("op1list")
xref2edit = xDialog.getChild("ref2edit")
xval2edit = xDialog.getChild("val2edit")
xop2list = xDialog.getChild("op2list")
self.assertEqual("$B$4", get_state_as_dict(xtargetedit)["Text"])
self.assertEqual("true", get_state_as_dict(xmax)["Checked"])
xvalue.executeAction("CLICK", tuple())
select_by_text(xop2list, "≥")
self.assertEqual("≤", get_state_as_dict(xop1list)["SelectEntryText"])
self.assertEqual("≥", get_state_as_dict(xop2list)["SelectEntryText"])
xvalueedit.executeAction("TYPE", mkPropertyValues({"TEXT":"1000"}))
xchangeedit.executeAction("TYPE", mkPropertyValues({"TEXT":"C2"}))
xref1edit.executeAction("TYPE", mkPropertyValues({"TEXT":"C2"}))
xval1edit.executeAction("TYPE", mkPropertyValues({"TEXT":"C4"}))
xref2edit.executeAction("TYPE", mkPropertyValues({"TEXT":"C4"}))
xval2edit.executeAction("TYPE", mkPropertyValues({"TEXT":"0"}))
xOKBtn = xDialog.getChild("ok")
with self.ui_test.execute_blocking_action(xOKBtn.executeAction, args=('CLICK', ())) as xWarnDialog:
self.assertEqual("Solving successfully finished.", get_state_as_dict(xWarnDialog.getChild("label2"))["Text"])
self.assertEqual("Result: 1000", get_state_as_dict(xWarnDialog.getChild("result"))["Text"])
#verify
self.assertEqual(get_cell_by_position(calc_doc, 0, 1, 1).getValue(), 400)
# Tests the isModified property on a blank Calc file
def test_tdf160104_blank_file(self):
with self.ui_test.create_doc_in_start_center("calc") as calc_doc:
self.assertFalse(calc_doc.isModified())
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xCloseBtn = xDialog.getChild("close")
xCloseBtn.executeAction("CLICK", ())
# Here isModified needs to be False because the dialog was opened and closed with no changes
self.assertFalse(calc_doc.isModified())
# Now open the dialog again and make some changes
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xCloseBtn = xDialog.getChild("close")
xMin = xDialog.getChild("min")
xChangeEdit = xDialog.getChild("changeedit")
# Click the Minimize option and change variable cells
xMin.executeAction("CLICK", ())
xChangeEdit.executeAction("TYPE", mkPropertyValues({"TEXT": "$A$1:$A$10"}))
xCloseBtn.executeAction("CLICK", ())
# Here isModified needs to be True because changes were made to the dialog
self.assertTrue(calc_doc.isModified())
# Tests the isModified property on an existing file that contains a solver model
def test_tdf160104_with_file(self):
with self.ui_test.load_file(get_url_for_data_file("tdf160104.ods")) as calc_doc:
self.assertFalse(calc_doc.isModified())
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xTargetEdit = xDialog.getChild("targetedit")
xMax = xDialog.getChild("max")
xChangeEdit = xDialog.getChild("changeedit")
xRef1Edit = xDialog.getChild("ref1edit")
xVal1Edit = xDialog.getChild("val1edit")
xOp1List = xDialog.getChild("op1list")
xRef2Edit = xDialog.getChild("ref2edit")
xVal2Edit = xDialog.getChild("val2edit")
xOp2List = xDialog.getChild("op2list")
# Checks whether the solver model was loaded correctly
self.assertEqual("$F$2", get_state_as_dict(xTargetEdit)["Text"])
self.assertEqual("true", get_state_as_dict(xMax)["Checked"])
self.assertEqual("$D$2:$D$11", get_state_as_dict(xChangeEdit)["Text"])
self.assertEqual("$F$5", get_state_as_dict(xRef1Edit)["Text"])
self.assertEqual("$F$8", get_state_as_dict(xVal1Edit)["Text"])
self.assertEqual("≤", get_state_as_dict(xOp1List)["SelectEntryText"])
self.assertEqual("$D$2:$D$11", get_state_as_dict(xRef2Edit)["Text"])
self.assertEqual("", get_state_as_dict(xVal2Edit)["Text"])
self.assertEqual("Binary", get_state_as_dict(xOp2List)["SelectEntryText"])
# Closes the dialog without making changes
xCloseBtn = xDialog.getChild("close")
xCloseBtn.executeAction("CLICK", ())
# Here isModified needs to be False no changes were made to the solver dialog
self.assertFalse(calc_doc.isModified())
# Now open the dialog again and make some changes
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xCloseBtn = xDialog.getChild("close")
xMin = xDialog.getChild("min")
xChangeEdit = xDialog.getChild("changeedit")
# Click the Minimize option and change variable cells
xMin.executeAction("CLICK", ())
xChangeEdit.executeAction("TYPE", mkPropertyValues({"TEXT": "$E$2:$E$11"}))
xCloseBtn.executeAction("CLICK", ())
# Here isModified needs to be True because changes were made to the Solver dialog
self.assertTrue(calc_doc.isModified())
# Tests whether all solver named ranges are hidden in the UI
def test_tdf160064(self):
# This test uses the same file from bug tdf#160104, so no need to check if the model is correct upon opening
with self.ui_test.load_file(get_url_for_data_file("tdf160104.ods")) as calc_doc:
# The Manage Names dialog must not contain any names
with self.ui_test.execute_dialog_through_command(".uno:DefineName") as xDialog:
xList = xDialog.getChild("names")
self.assertEqual('0', get_state_as_dict(xList)['Children'])
# Makes a small change in the solver dialog by clicking the "Minimize" button
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xMin = xDialog.getChild("min")
xMin.executeAction("CLICK", ())
# Closes the dialog
xCloseBtn = xDialog.getChild("close")
xCloseBtn.executeAction("CLICK", ())
# Here the file has been modified and needs to be saved and reloaded
self.assertTrue(calc_doc.isModified())
self.xUITest.executeCommand('.uno:Save')
self.xUITest.executeCommand('.uno:Reload')
# Open the Solver dialog and check whether the model is loaded correctly
with self.ui_test.execute_modeless_dialog_through_command(".uno:SolverDialog", close_button="") as xDialog:
xTargetEdit = xDialog.getChild("targetedit")
xMin = xDialog.getChild("min")
xChangeEdit = xDialog.getChild("changeedit")
xRef1Edit = xDialog.getChild("ref1edit")
xVal1Edit = xDialog.getChild("val1edit")
xOp1List = xDialog.getChild("op1list")
xRef2Edit = xDialog.getChild("ref2edit")
xVal2Edit = xDialog.getChild("val2edit")
xOp2List = xDialog.getChild("op2list")
# Checks whether the solver model was loaded correctly
self.assertEqual("$F$2", get_state_as_dict(xTargetEdit)["Text"])
self.assertEqual("true", get_state_as_dict(xMin)["Checked"])
self.assertEqual("$D$2:$D$11", get_state_as_dict(xChangeEdit)["Text"])
self.assertEqual("$F$5", get_state_as_dict(xRef1Edit)["Text"])
self.assertEqual("$F$8", get_state_as_dict(xVal1Edit)["Text"])
self.assertEqual("≤", get_state_as_dict(xOp1List)["SelectEntryText"])
self.assertEqual("$D$2:$D$11", get_state_as_dict(xRef2Edit)["Text"])
self.assertEqual("", get_state_as_dict(xVal2Edit)["Text"])
self.assertEqual("Binary", get_state_as_dict(xOp2List)["SelectEntryText"])
# Closes the dialog
xCloseBtn = xDialog.getChild("close")
xCloseBtn.executeAction("CLICK", ())
# Open the Manage Names dialog again; it must not contain any names
with self.ui_test.execute_dialog_through_command(".uno:DefineName") as xDialog:
xList = xDialog.getChild("names")
self.assertEqual('0', get_state_as_dict(xList)['Children'])
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|