Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / qa / uitest / calc_tests7 / tdf106667.py
blob8d3c4599ce9b7c099511b1fbd2d536c3beb9316a
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/.
10 from uitest.framework import UITestCase
11 from uitest.uihelper.calc import enter_text_to_cell
12 from libreoffice.uno.propertyvalue import mkPropertyValues
13 from libreoffice.calc.document import get_cell_by_position
15 class tdf106667(UITestCase):
17 def test_tdf106667_about_dlg_all(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", "A")
23 gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A1000"}))
25 self.xUITest.executeCommand(".uno:FillDown")
27 self.xUITest.executeCommand(".uno:SelectAll")
29 with self.ui_test.execute_dialog_through_command(".uno:About", close_button="btnClose"):
30 pass
32 self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "A")
34 # vim: set shiftwidth=4 softtabstop=4 expandtab: