summaryrefslogtreecommitdiff
path: root/sc/qa/uitest/calc_tests/autofill.py
blob: 23f8bd9bac26651b74a790591a7502e1ec0cc845 (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
# -*- 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_url_for_data_file
from uitest.uihelper.calc import enter_text_to_cell
from libreoffice.calc.document import get_cell_by_position
from libreoffice.uno.propertyvalue import mkPropertyValues
#Test for the AutoFill feature - auto-fill can't increment last octet of ip addresses

class CalcAutofill(UITestCase):

    def test_autofill(self):
        calc_doc = self.ui_test.load_file(get_url_for_data_file("autofill.ods"))
        xCalcDoc = self.xUITest.getTopFocusWindow()
        gridwin = xCalcDoc.getChild("grid_window")
        document = self.ui_test.get_component()
        #Select cell A12 and drag the fill handle in the bottom right corner of the cell down to A18
        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A12:A18"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 0, 11).getValue(), 18.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 12).getValue(), 19.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 13).getValue(), 20.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 14).getValue(), 21.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 15).getValue(), 22.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 16).getValue(), 23.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 17).getValue(), 24.34)
        #Select cell A12 and drag the fill handle in the bottom right corner of the cell up to A6
        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A6:A12"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xup = xDialog.getChild("up")
        xincrement = xDialog.getChild("increment")
        xup.executeAction("CLICK", tuple())
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 0, 5).getValue(), 12.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 6).getValue(), 13.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 7).getValue(), 14.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 8).getValue(), 15.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 9).getValue(), 16.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 10).getValue(), 17.34)
        self.assertEqual(get_cell_by_position(document, 0, 0, 11).getValue(), 18.34)

        #Continue with the next cells with grey background
        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "M12:M18"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 12, 11).getString(), "12abc40")
        self.assertEqual(get_cell_by_position(document, 0, 12, 12).getString(), "12abc41")
        self.assertEqual(get_cell_by_position(document, 0, 12, 13).getString(), "12abc42")
        self.assertEqual(get_cell_by_position(document, 0, 12, 14).getString(), "12abc43")
        self.assertEqual(get_cell_by_position(document, 0, 12, 15).getString(), "12abc44")
        self.assertEqual(get_cell_by_position(document, 0, 12, 16).getString(), "12abc45")
        self.assertEqual(get_cell_by_position(document, 0, 12, 17).getString(), "12abc46")

        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "M6:M12"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xup = xDialog.getChild("up")
        xincrement = xDialog.getChild("increment")
        xup.executeAction("CLICK", tuple())
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 12, 5).getString(), "12abc34")
        self.assertEqual(get_cell_by_position(document, 0, 12, 6).getString(), "12abc35")
        self.assertEqual(get_cell_by_position(document, 0, 12, 7).getString(), "12abc36")
        self.assertEqual(get_cell_by_position(document, 0, 12, 8).getString(), "12abc37")
        self.assertEqual(get_cell_by_position(document, 0, 12, 9).getString(), "12abc38")
        self.assertEqual(get_cell_by_position(document, 0, 12, 10).getString(), "12abc39")
        self.assertEqual(get_cell_by_position(document, 0, 12, 11).getString(), "12abc40")

        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "P12:P18"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 15, 11).getString(), "10.64.127.7")
        self.assertEqual(get_cell_by_position(document, 0, 15, 12).getString(), "10.64.127.8")
        self.assertEqual(get_cell_by_position(document, 0, 15, 13).getString(), "10.64.127.9")
        self.assertEqual(get_cell_by_position(document, 0, 15, 14).getString(), "10.64.127.10")
        self.assertEqual(get_cell_by_position(document, 0, 15, 15).getString(), "10.64.127.11")
        self.assertEqual(get_cell_by_position(document, 0, 15, 16).getString(), "10.64.127.12")
        self.assertEqual(get_cell_by_position(document, 0, 15, 17).getString(), "10.64.127.13")

        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "P6:P12"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xup = xDialog.getChild("up")
        xincrement = xDialog.getChild("increment")
        xup.executeAction("CLICK", tuple())
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
        xincrement.executeAction("TYPE", mkPropertyValues({"TEXT":"-1"}))
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        #Compare with the content in the right next column
        self.assertEqual(get_cell_by_position(document, 0, 15, 5).getString(), "10.64.127.1")
        self.assertEqual(get_cell_by_position(document, 0, 15, 6).getString(), "10.64.127.2")
        self.assertEqual(get_cell_by_position(document, 0, 15, 7).getString(), "10.64.127.3")
        self.assertEqual(get_cell_by_position(document, 0, 15, 8).getString(), "10.64.127.4")
        self.assertEqual(get_cell_by_position(document, 0, 15, 9).getString(), "10.64.127.5")
        self.assertEqual(get_cell_by_position(document, 0, 15, 10).getString(), "10.64.127.6")
        self.assertEqual(get_cell_by_position(document, 0, 15, 11).getString(), "10.64.127.7")

        self.ui_test.close_doc()

    def test_autofill_with_suffix(self):
        calc_doc = self.ui_test.create_doc_in_start_center("calc")
        xCalcDoc = self.xUITest.getTopFocusWindow()
        gridwin = xCalcDoc.getChild("grid_window")
        document = self.ui_test.get_component()
        enter_text_to_cell(gridwin, "A1", "1st")
        gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B2"}))
        gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:A3"}))
        self.ui_test.execute_dialog_through_command(".uno:FillSeries")
        xDialog = self.xUITest.getTopFocusWindow()
        xautofill = xDialog.getChild("autofill")
        xautofill.executeAction("CLICK", tuple())
        xOK = xDialog.getChild("ok")
        self.ui_test.close_dialog_through_button(xOK)
        self.assertEqual(get_cell_by_position(document, 0, 0, 0).getString(), "1st")
        self.assertEqual(get_cell_by_position(document, 0, 0, 1).getString(), "2nd")
        self.assertEqual(get_cell_by_position(document, 0, 0, 2).getString(), "3rd")
        self.ui_test.close_doc()

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