summaryrefslogtreecommitdiff
path: root/sw/qa/uitest/writer_tests7/forms.py
blob: a8d0774ab71d787910a0d07978ecffd8c7a98062 (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
# -*- 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 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()

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