summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests7/forms.py
blob: 8c77560e0b610c97bcc50fe78c7d26b588361328 (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
# -*- 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 libreoffice.uno.propertyvalue import mkPropertyValues

class Forms(UITestCase):

    def test_tdf140486(self):

        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'])

        self.ui_test.close_doc()

    def test_tdf140198(self):

        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'])

        self.ui_test.close_doc()

    def test_tdf140239(self):

        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')

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

        xAction.executeAction("SELECT", mkPropertyValues({"TEXT": "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'])

        self.ui_test.close_doc()

    def test_tdf138701(self):

        # Reuse file from another test
        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'])

        self.ui_test.close_doc()

    def test_tdf139486(self):

        # Reuse file from another test
        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)

        self.ui_test.close_doc()

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