Avoid potential negative array index access to cached text.
[LibreOffice.git] / sc / qa / uitest / calc_tests / CalcPasteOnly.py
blob6a24d6df9c7d186e3744336105b7fd599afc7a1c
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 libreoffice.uno.propertyvalue import mkPropertyValues
11 from uitest.framework import UITestCase
12 from libreoffice.calc.document import get_cell_by_position
13 from uitest.uihelper.calc import enter_text_to_cell
15 class CalcPasteOnly(UITestCase):
17 def test_paste_only(self):
18 with self.ui_test.create_doc_in_start_center("calc") as document:
19 xTopWindow = self.xUITest.getTopFocusWindow()
20 gridwin = xTopWindow.getChild("grid_window")
22 enter_text_to_cell(gridwin, "A1", "=SUM(A2:A3)")
23 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "A1"}))
24 self.xUITest.executeCommand(".uno:Copy")
26 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "C1"}))
27 self.xUITest.executeCommand(".uno:PasteOnlyText")
28 self.assertEqual(get_cell_by_position(document, 0, 2, 0).getString(), "")
30 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "D1"}))
31 self.xUITest.executeCommand(".uno:PasteOnlyValue")
32 self.assertEqual(get_cell_by_position(document, 0, 3, 0).getString(), "0")
33 self.assertEqual(get_cell_by_position(document, 0, 3, 0).getValue(), 0)
35 gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "E1"}))
36 self.xUITest.executeCommand(".uno:PasteOnlyFormula")
37 self.assertEqual(get_cell_by_position(document, 0, 4, 0).getString(), "0")
38 self.assertEqual(get_cell_by_position(document, 0, 4, 0).getValue(), 0)
39 self.assertEqual(get_cell_by_position(document, 0, 4, 0).getFormula(), "=SUM(E2:E3)")
41 # vim: set shiftwidth=4 softtabstop=4 expandtab: