diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-09-07 13:01:32 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-09-07 20:40:53 +0200 |
commit | cb4216a9c933bf64ec7a30340b596cb83fe1b599 (patch) | |
tree | 3ad700dd52ba42431a437587da004a62a482a65d | |
parent | 3b98992ce119610d0d173939201dee1a331638f6 (diff) |
tdf#150307, tdf#150829: sc: Add UItest
Change-Id: If4a7e9fc6e4d9057f880f6b8c1dba7598597031e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139583
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | sc/qa/uitest/range_name/tdf150307.py | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/sc/qa/uitest/range_name/tdf150307.py b/sc/qa/uitest/range_name/tdf150307.py new file mode 100644 index 000000000000..30d0e15a60e7 --- /dev/null +++ b/sc/qa/uitest/range_name/tdf150307.py @@ -0,0 +1,77 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*- +# +# This file is part of the LibreOffice project. +# +# 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 libreoffice.uno.propertyvalue import mkPropertyValues +from uitest.uihelper.common import get_state_as_dict, type_text + +class tdf150307(UITestCase): + + def check_navigator(self, xGridWin, nLen): + xGridWin.executeAction("SIDEBAR", mkPropertyValues({"PANEL": "ScNavigatorPanel"})) + + xCalcDoc = self.xUITest.getTopFocusWindow() + xNavigatorPanel = xCalcDoc.getChild("NavigatorPanel") + xContentBox = xNavigatorPanel.getChild('contentbox') + xSheets = xContentBox.getChild("0") + self.assertEqual('Sheets', get_state_as_dict(xSheets)['Text']) + + self.ui_test.wait_until_property_is_updated(xSheets, "Children", str(nLen)) + self.assertEqual(nLen, len(xSheets.getChildren())) + self.assertEqual('Sheet1', get_state_as_dict(xSheets.getChild('0'))['Text']) + + if nLen == 2: + self.assertEqual('Sheet1_2', get_state_as_dict(xSheets.getChild('1'))['Text']) + + xRangeNames = xContentBox.getChild("1") + self.assertEqual('Range names', get_state_as_dict(xRangeNames)['Text']) + + self.ui_test.wait_until_property_is_updated(xRangeNames, "Children", str(nLen)) + self.assertEqual(nLen, len(xRangeNames.getChildren())) + self.assertEqual('Test', get_state_as_dict(xRangeNames.getChild('0'))['Text']) + + if nLen == 2: + self.assertEqual('Test (Sheet1_2)', get_state_as_dict(xRangeNames.getChild('1'))['Text']) + + def test_tdf150307(self): + + with self.ui_test.create_doc_in_start_center("calc"): + xCalcDoc = self.xUITest.getTopFocusWindow() + xGridWin = xCalcDoc.getChild("grid_window") + xPosWindow = xCalcDoc.getChild('pos_window') + + self.xUITest.executeCommand(".uno:Sidebar") + + with self.ui_test.execute_modeless_dialog_through_command(".uno:AddName", close_button="add") as xAddNameDlg: + xEdit = xAddNameDlg.getChild("edit") + type_text(xEdit, "Test") + + self.check_navigator(xGridWin, 1) + + self.xUITest.executeCommand(".uno:DuplicateSheet") + + self.check_navigator(xGridWin, 2) + + with self.ui_test.execute_dialog_through_command(".uno:Remove", close_button="yes"): + pass + + self.check_navigator(xGridWin, 1) + + self.xUITest.executeCommand(".uno:DuplicateSheet") + + self.check_navigator(xGridWin, 2) + + # Now test tdf#150829 + self.xUITest.executeCommand(".uno:Undo") + + self.check_navigator(xGridWin, 1) + + self.xUITest.executeCommand(".uno:Sidebar") + +# vim: set shiftwidth=4 softtabstop=4 expandtab: |