summaryrefslogtreecommitdiff
path: root/uitest/uitest_helper.py
blob: a2efe6b011e1ef1102ce470d7e5eaf2f598f2d12 (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
# -*- Mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-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/.
#

import time

from libreoffice.uno.eventlistener import EventListener

from libreoffice.uno.propertyvalue import convert_property_values_to_dict

class DialogNotExecutedException(Exception):
    def __init__(self, command):
        self.command = command

    def __str__(self):
        return "Dialog not executed for: " + self.command

class UITest(object):

    DEFAULT_SLEEP = 0.1

    def __init__(self, xUITest, xContext):
        self._xUITest = xUITest
        self._xContext = xContext

    def execute_dialog_through_command(self, command):
        with EventListener(self._xContext, "DialogExecute") as event:
            self._xUITest.executeCommand(command)
            time_ = 0
            while time_ < 30:
                if event.executed:
                    time.sleep(self.DEFAULT_SLEEP)
                    return
                time_ += self.DEFAULT_SLEEP
                time.sleep(self.DEFAULT_SLEEP)

        raise DialogNotExecutedException(command)

    def execute_modeless_dialog_through_command(self, command):
        with EventListener(self._xContext, "ModelessDialogVisible") as event:
            self._xUITest.executeCommand(command)
            time_ = 0
            while time_ < 30:
                if event.executed:
                    time.sleep(self.DEFAULT_SLEEP)
                    return
                time_ += self.DEFAULT_SLEEP
                time.sleep(self.DEFAULT_SLEEP)

        raise DialogNotExecutedException(command)

    def create_doc_in_start_center(self, app):
        xStartCenter = self._xUITest.getTopFocusWindow()
        xBtn = xStartCenter.getChild(app + "_all")
        with EventListener(self._xContext, "OnNew") as event:
            xBtn.executeAction("CLICK", tuple())
            time_ = 0
            while time_ < 30:
                if event.executed:
                    return
                time_ += self.DEFAULT_SLEEP
                time.sleep(self.DEFAULT_SLEEP)

        print("failure doc in start center")

        # report a failure here

    def close_doc(self):
        with EventListener(self._xContext, ["DialogExecute", "OnViewClosed"] ) as event:
            self._xUITest.executeCommand(".uno:CloseDoc")
            time_ = 0
            while time_ < 30:
                if event.hasExecuted("DialogExecute"):
                    xCloseDlg = self._xUITest.getTopFocusWindow()
                    xNoBtn = xCloseDlg.getChild("discard")
                    xNoBtn.executeAction("CLICK", tuple())
                    return
                elif event.hasExecuted("OnViewClosed"):
                    return

                time_ += self.DEFAULT_SLEEP
                time.sleep(self.DEFAULT_SLEEP)

def get_state_as_dict(ui_object):
    return convert_property_values_to_dict(ui_object.getState())

# vim:set shiftwidth=4 softtabstop=4 expandtab: */