Files
libreoffice/sc/qa/uitest/calc_tests/autofill.py
Xisco Fauli 82cb5a3bb2 uitest: sc: factor out common code ( part 1 )
Change-Id: Ib0b84349c138d361001af4547d91a81d8b5d8e63
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109166
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2021-01-12 21:24:20 +01:00

148 lines
9.2 KiB
Python

# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# 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_pos
from uitest.uihelper.calc import enter_text_to_cell
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
#Test for the AutoFill feature - auto-fill can't increment last octet of ip addresses
class CalcAutofill(UITestCase):
def test_autofill(self):
calc_doc = self.ui_test.load_file(get_url_for_data_file("autofill.ods"))
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
#Select cell A12 and drag the fill handle in the bottom right corner of the cell down to A18
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A12:A18"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 0, 11).getValue(), 18.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 12).getValue(), 19.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 13).getValue(), 20.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 14).getValue(), 21.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 15).getValue(), 22.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 16).getValue(), 23.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 17).getValue(), 24.34)
#Select cell A12 and drag the fill handle in the bottom right corner of the cell up to A6
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A6:A12"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xup = xDialog.getChild("up")
xincrement = xDialog.getChild("increment")
xup.executeAction("CLICK", tuple())
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 0, 5).getValue(), 12.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 6).getValue(), 13.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 7).getValue(), 14.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 8).getValue(), 15.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 9).getValue(), 16.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 10).getValue(), 17.34)
self.assertEqual(get_cell_by_position(document, 0, 0, 11).getValue(), 18.34)
#Continue with the next cells with grey background
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "M12:M18"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 12, 11).getString(), "12abc40")
self.assertEqual(get_cell_by_position(document, 0, 12, 12).getString(), "12abc41")
self.assertEqual(get_cell_by_position(document, 0, 12, 13).getString(), "12abc42")
self.assertEqual(get_cell_by_position(document, 0, 12, 14).getString(), "12abc43")
self.assertEqual(get_cell_by_position(document, 0, 12, 15).getString(), "12abc44")
self.assertEqual(get_cell_by_position(document, 0, 12, 16).getString(), "12abc45")
self.assertEqual(get_cell_by_position(document, 0, 12, 17).getString(), "12abc46")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "M6:M12"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xup = xDialog.getChild("up")
xincrement = xDialog.getChild("increment")
xup.executeAction("CLICK", tuple())
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 12, 5).getString(), "12abc34")
self.assertEqual(get_cell_by_position(document, 0, 12, 6).getString(), "12abc35")
self.assertEqual(get_cell_by_position(document, 0, 12, 7).getString(), "12abc36")
self.assertEqual(get_cell_by_position(document, 0, 12, 8).getString(), "12abc37")
self.assertEqual(get_cell_by_position(document, 0, 12, 9).getString(), "12abc38")
self.assertEqual(get_cell_by_position(document, 0, 12, 10).getString(), "12abc39")
self.assertEqual(get_cell_by_position(document, 0, 12, 11).getString(), "12abc40")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "P12:P18"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 15, 11).getString(), "10.64.127.7")
self.assertEqual(get_cell_by_position(document, 0, 15, 12).getString(), "10.64.127.8")
self.assertEqual(get_cell_by_position(document, 0, 15, 13).getString(), "10.64.127.9")
self.assertEqual(get_cell_by_position(document, 0, 15, 14).getString(), "10.64.127.10")
self.assertEqual(get_cell_by_position(document, 0, 15, 15).getString(), "10.64.127.11")
self.assertEqual(get_cell_by_position(document, 0, 15, 16).getString(), "10.64.127.12")
self.assertEqual(get_cell_by_position(document, 0, 15, 17).getString(), "10.64.127.13")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "P6:P12"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xup = xDialog.getChild("up")
xincrement = xDialog.getChild("increment")
xup.executeAction("CLICK", tuple())
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
#Compare with the content in the right next column
self.assertEqual(get_cell_by_position(document, 0, 15, 5).getString(), "10.64.127.1")
self.assertEqual(get_cell_by_position(document, 0, 15, 6).getString(), "10.64.127.2")
self.assertEqual(get_cell_by_position(document, 0, 15, 7).getString(), "10.64.127.3")
self.assertEqual(get_cell_by_position(document, 0, 15, 8).getString(), "10.64.127.4")
self.assertEqual(get_cell_by_position(document, 0, 15, 9).getString(), "10.64.127.5")
self.assertEqual(get_cell_by_position(document, 0, 15, 10).getString(), "10.64.127.6")
self.assertEqual(get_cell_by_position(document, 0, 15, 11).getString(), "10.64.127.7")
self.ui_test.close_doc()
def test_autofill_with_suffix(self):
calc_doc = self.ui_test.create_doc_in_start_center("calc")
xCalcDoc = self.xUITest.getTopFocusWindow()
gridwin = xCalcDoc.getChild("grid_window")
document = self.ui_test.get_component()
enter_text_to_cell(gridwin, "A1", "1st")
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B2"}))
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A3"}))
self.ui_test.execute_dialog_through_command(".uno:FillSeries")
xDialog = self.xUITest.getTopFocusWindow()
xautofill = xDialog.getChild("autofill")
xautofill.executeAction("CLICK", tuple())
xOK = xDialog.getChild("ok")
self.ui_test.close_dialog_through_button(xOK)
self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "1st")
self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), "2nd")
self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), "3rd")
self.ui_test.close_doc()
# vim: set shiftwidth=4 softtabstop=4 expandtab: