summaryrefslogtreecommitdiff
path: root/sfx2/qa/python/check_sidebar.py
blob: 355951a3037e3a00460996b4bab556921a819912 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# 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/.
#

import unittest
import unohelper
import os
from org.libreoffice.unotest import UnoInProcess

from com.sun.star.ui import XSidebarProvider
from com.sun.star.ui import XDecks
from com.sun.star.ui import XDeck
from com.sun.star.ui import XPanels
from com.sun.star.ui import XPanel

class CheckSidebar(unittest.TestCase):
    _uno = None
    _xDoc = None

    @classmethod
    def setUpClass(cls):
        cls._uno = UnoInProcess()
        cls._uno.setUp()
        cls._xDoc = cls._uno.openEmptyDoc( url = "private:factory/scalc", bHidden = False, bReadOnly = False)

    @classmethod
    def tearDownClass(cls):
        cls._uno.tearDown() 

    def test_check_sidebar(self):

        xDoc = self.__class__._xDoc
        xController = xDoc.getCurrentController()

        xSidebar = xController.getSidebar()
        assert(xSidebar)

        xSidebar.setVisible(True)
        isVisible = xSidebar.isVisible()
        self.assertTrue ( xSidebar.isVisible() )

        # TODO: does not work in unit test context 
#        xSidebar.setVisible(False)
#        isVisible = xSidebar.isVisible()
#        assert( not isVisible )
#        xSidebar.setVisible(True)

        xSidebar.showDecks(False)
        xSidebar.showDecks(True)

        xDecks = xSidebar.getDecks()

        firstDeckName = "PropertyDeck";

        deckElementNames = xDecks.getElementNames()
        assert ( firstDeckName in deckElementNames )
        assert ( xDecks.hasByName(firstDeckName) )

        decksCount = xDecks.getCount()
        self.assertEqual ( 5, decksCount )

        xDeck = xDecks.getByName(firstDeckName)
        assert ( xDeck )
        assert ( xDeck.getId() == firstDeckName )

        newDeckTitle = "New title"
        xDeck.setTitle(newDeckTitle)
        assert ( xDeck.getTitle() == newDeckTitle )

        xDeck.moveFirst()
        initialIndex = xDeck.getOrderIndex()
        self.assertEqual(100, initialIndex)

        xDeck.moveLast()
        assert ( xDeck.getOrderIndex() > initialIndex )

        initialIndex = xDeck.getOrderIndex()
        xDeck.moveFirst()
        assert ( xDeck.getOrderIndex() < initialIndex )

        initialIndex = xDeck.getOrderIndex()
        xDeck.moveDown()
        assert ( xDeck.getOrderIndex() > initialIndex )

        initialIndex = xDeck.getOrderIndex()
        xDeck.moveUp()
        assert ( xDeck.getOrderIndex() < initialIndex )

        xPanels = xDeck.getPanels()

        panelsCount = xPanels.getCount()
        self.assertEqual ( panelsCount, 4 )

        firstPanelName = "TextPropertyPanel"

        panelElementNames = xPanels.getElementNames()
        assert ( firstPanelName in panelElementNames )
        assert ( xPanels.hasByName(firstPanelName) )

        xPanel = xPanels.getByName(firstPanelName)
        assert ( xPanel )
        assert ( xPanel.getId() == firstPanelName )

        newTitle = "New title"
        xPanel.setTitle(newTitle)
        assert ( xPanel.getTitle() == newTitle )

        xPanel.moveFirst()
        initialIndex = xPanel.getOrderIndex()
        assert ( initialIndex == 120 )

        xPanel.moveLast()
        assert ( xPanel.getOrderIndex() > initialIndex )

        initialIndex = xPanel.getOrderIndex()
        xPanel.moveFirst()
        assert ( xPanel.getOrderIndex() < initialIndex )

        initialIndex = xPanel.getOrderIndex()
        xPanel.moveDown()
        assert ( xPanel.getOrderIndex() > initialIndex )

        initialIndex = xPanel.getOrderIndex()
        xPanel.moveUp()
        assert ( xPanel.getOrderIndex() < initialIndex )

        xPanel.collapse()
        assert( not xPanel.isExpanded() )

        otherPanel = xPanels.getByName("NumberFormatPropertyPanel")
        otherPanel.expand(False)
        assert( otherPanel.isExpanded() )

        xPanel.expand(True)
        assert( xPanel.isExpanded() )
        assert( not otherPanel.isExpanded() )

    # close the document
        xDoc.dispose()

if __name__ == "__main__":
    unittest.main()

# vim: set noet sw=4 ts=4: