Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / qa / uitest / pasteSpecial / tdf118308.py
blob68c462414b013b32e97c17603494a2f2558798c6
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 libreoffice.uno.propertyvalue import mkPropertyValues
11 from uitest.uihelper.calc import enter_text_to_cell
12 from libreoffice.calc.document import get_cell_by_position
13 from libreoffice.calc.paste_special import reset_default_values
15 class tdf118308(UITestCase):
17 def test_tdf118308(self):
18 with self.ui_test.create_doc_in_start_center("calc"):
19 xCalcDoc = self.xUITest.getTopFocusWindow()
20 gridwin = xCalcDoc.getChild("grid_window")
22 enter_text_to_cell(gridwin, "A1", "A")
23 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
24 self.xUITest.executeCommand(".uno:Copy")
26 with self.ui_test.load_empty_file("calc") as calc_document:
28 xCalcDoc = self.xUITest.getTopFocusWindow()
29 gridwin = xCalcDoc.getChild("grid_window")
31 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
33 with self.ui_test.execute_dialog_through_command(".uno:PasteSpecial") as xDialog:
35 # Without the fix in place, this test would have failed here
36 # since a different dialog would have been opened and the children
37 # wouldn't have been found
38 reset_default_values(self, xDialog)
40 self.assertEqual("A", get_cell_by_position(calc_document, 0, 0, 0).getString())
42 # vim: set shiftwidth=4 softtabstop=4 expandtab: