summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests7/forms.py
blob: d58d9a15ae91214d10d3c6bb4295e6d974311ec2 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# -*- 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 change_measurement_unit
from uitest.uihelper.common import select_by_text
from libreoffice.uno.propertyvalue import mkPropertyValues

class Forms(UITestCase):

    def test_tdf140486(self):

        with self.ui_test.load_file(get_url_for_data_file("tdf140486.odt")):

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

            self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
            xChild = self.ui_test.wait_until_child_is_available('listbox-Empty string is NULL')

            # Without the fix in place, this test would have failed with
            # AssertionError: 'Yes' != 'No'
            self.assertEqual("Yes", get_state_as_dict(xChild)['SelectEntryText'])

    def test_tdf140198(self):

        with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")):

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

            self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
            xChild = self.ui_test.wait_until_child_is_available('listbox-Text type')

            # Without the fix in place, this test would have failed with
            # AssertionError: 'Multi-line' != 'Single-line'
            self.assertEqual("Multi-line", get_state_as_dict(xChild)['SelectEntryText'])

    def test_tdf141084(self):

        # Reuse document from tdf#140239
        with self.ui_test.load_file(get_url_for_data_file("tdf140239.odt")):

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

            self.ui_test.execute_modeless_dialog_through_command(".uno:FormProperties")
            xURL = self.ui_test.wait_until_child_is_available('urlcontrol-URL')
            xFrame = self.ui_test.wait_until_child_is_available('combobox-Frame')

            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "1"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "2"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "3"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "4"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "5"}))

            # Without the fix in place, this test would have failed with
            # AssertionError: '12345' != 'file:///tmp/tmp/5file:///tmp/tmp/4file://[40 chars]mp/1'
            self.assertEqual("12345", get_state_as_dict(xURL)['Text'])

    def test_tdf140239(self):

        with self.ui_test.load_file(get_url_for_data_file("tdf140239.odt")):

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

            self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
            xAction = self.ui_test.wait_until_child_is_available('listbox-Action')
            xURL = self.ui_test.wait_until_child_is_available('urlcontrol-URL')
            xEntry = self.ui_test.wait_until_child_is_available('entry')

            self.assertEqual("None", get_state_as_dict(xAction)['SelectEntryText'])
            self.assertEqual("false", get_state_as_dict(xURL)['Enabled'])

            select_by_text(xAction, "Open document/web page")

            self.assertEqual("Open document/web page", get_state_as_dict(xAction)['SelectEntryText'])
            self.assertEqual("true", get_state_as_dict(xURL)['Enabled'])

            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "1"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "2"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "3"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "4"}))
            xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "5"}))

            # Without the fix in place, this test would have failed with
            # AssertionError: '12345' != '54321'
            self.assertEqual("12345", get_state_as_dict(xURL)['Text'])

            xEntry.executeAction("FOCUS", tuple())
            self.assertEqual("Push Button", get_state_as_dict(xEntry)['Text'])

            xEntry.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
            xEntry.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
            xEntry.executeAction("TYPE", mkPropertyValues({"TEXT": "Push"}))

            # Move the focus to another element so the changes done before will take effect
            xAction.executeAction("FOCUS", tuple())

            # tdf#131522: Without the fix in place, this test would have failed with
            # AssertionError: 'Push' != 'Push Button'
            self.assertEqual("Push", get_state_as_dict(xEntry)['Text'])

    def test_tdf138701(self):

        # Reuse file from another test
        with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")):

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

            self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
            xChild = self.ui_test.wait_until_child_is_available('combobox-Data field')

            xChild.executeAction("TYPE", mkPropertyValues({"TEXT": "1"}))
            xChild.executeAction("TYPE", mkPropertyValues({"TEXT": "2"}))
            xChild.executeAction("TYPE", mkPropertyValues({"TEXT": "3"}))
            xChild.executeAction("TYPE", mkPropertyValues({"TEXT": "4"}))
            xChild.executeAction("TYPE", mkPropertyValues({"TEXT": "5"}))

            # Without the fix in place, this test would have failed with
            # AssertionError: '12345' != '54321'
            self.assertEqual("12345", get_state_as_dict(xChild)['Text'])

    def test_tdf139486(self):

        # Reuse file from another test
        with self.ui_test.load_file(get_url_for_data_file("tdf140198.odt")):

            change_measurement_unit(self, "Centimeter")

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

            document = self.ui_test.get_component()
            drawPage = document.getDrawPages().getByIndex(0)
            shape = drawPage.getByIndex(0)
            self.assertEqual(13996, shape.getSize().Width)
            self.assertEqual(2408, shape.getSize().Height)

            self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
            xWidth = self.ui_test.wait_until_child_is_available('numericfield-Width')
            xHeight = self.ui_test.wait_until_child_is_available('numericfield-Height')

            self.assertEqual("14.00 cm", get_state_as_dict(xWidth)['Text'])
            self.assertEqual("2.41 cm", get_state_as_dict(xHeight)['Text'])

            xWidth.executeAction("FOCUS", tuple())
            xWidth.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
            xWidth.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
            xWidth.executeAction("TYPE", mkPropertyValues({"TEXT":"20 cm"}))

            self.assertEqual("20 cm", get_state_as_dict(xWidth)['Text'])

            xHeight.executeAction("FOCUS", tuple())
            xHeight.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
            xHeight.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
            xHeight.executeAction("TYPE", mkPropertyValues({"TEXT":"5 cm"}))

            self.assertEqual("5 cm", get_state_as_dict(xHeight)['Text'])

            # Move the focus to another element so the changes done before take effect on the document
            xDialog = self.xUITest.getTopFocusWindow()
            xDialog.getChild('numericfield-PositionY').executeAction("FOCUS", tuple())

            # Without the fix in place, the size of the form wouldn't have changed
            self.assertEqual(20001, shape.getSize().Width)
            self.assertEqual(5001, shape.getSize().Height)

    def test_tdf138271(self):

        with self.ui_test.load_file(get_url_for_data_file("tdf138271.odt")):

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

            aOldValue = ["-1000000.00", "1000000.00"]
            aNewValue = ["-100.00", "100.00"]

            for i, name in enumerate(['formattedcontrol-Value min.', 'formattedcontrol-Value max.']):

                self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
                xChild = self.ui_test.wait_until_child_is_available(name)

                self.assertEqual(aOldValue[i], get_state_as_dict(xChild)['Text'])

                xChild.executeAction("FOCUS", tuple())
                xChild.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
                xChild.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
                xChild.executeAction("TYPE", mkPropertyValues({"TEXT": aNewValue[i]}))

                #Close the dialog and open it again
                self.xUITest.executeCommand(".uno:ControlProperties")

                self.ui_test.execute_modeless_dialog_through_command(".uno:ControlProperties")
                xChild = self.ui_test.wait_until_child_is_available(name)

                # Without the fix in place, this test would have failed here because
                # the values wouldn't have changed
                self.assertEqual(aNewValue[i], get_state_as_dict(xChild)['Text'])

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

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