Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / qa / uitest / goalSeek / goalSeek.py
bloba238ea8c5fee8db4627f57276748697fd192b47e
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.common import get_url_for_data_file
12 from libreoffice.calc.document import get_cell_by_position
13 from libreoffice.uno.propertyvalue import mkPropertyValues
16 class goalSeek(UITestCase):
17 def test_goalSeek(self):
18 with self.ui_test.load_file(get_url_for_data_file("goalSeek.ods")) as calc_doc:
19 xCalcDoc = self.xUITest.getTopFocusWindow()
20 gridwin = xCalcDoc.getChild("grid_window")
21 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B4"}))
22 with self.ui_test.execute_modeless_dialog_through_command(".uno:GoalSeekDialog", close_button="") as xDialog:
23 xtarget = xDialog.getChild("target")
24 xvaredit = xDialog.getChild("varedit")
25 xtarget.executeAction("TYPE", mkPropertyValues({"TEXT":"15000"}))
26 xvaredit.executeAction("TYPE", mkPropertyValues({"TEXT":"B1"}))
27 xOKBtn = xDialog.getChild("ok")
29 with self.ui_test.execute_blocking_action(xOKBtn.executeAction, args=('CLICK', ()), close_button="yes"):
30 pass
32 #verify
33 self.assertEqual(get_cell_by_position(calc_doc, 0, 1, 0).getValue(), 200000)
34 self.assertEqual(get_cell_by_position(calc_doc, 0, 1, 3).getValue(), 15000)
36 # vim: set shiftwidth=4 softtabstop=4 expandtab: