summaryrefslogtreecommitdiffstats
path: root/sc/qa/uitest/range_name/tdf150307.py
blob: 2f9e44720bc641fcab5ee0579acfad5ccfdfbb63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# -*- 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")

            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)

            self.xUITest.executeCommand(".uno:Remove")

            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: