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
|
# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
#
# This file is part of the LibreOffice project.
#
# 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 libreoffice.uno.propertyvalue import mkPropertyValues
from uitest.framework import UITestCase
from uitest.uihelper.common import type_text, select_pos
from uitest.uihelper.common import get_state_as_dict
from libreoffice.calc.document import get_cell_by_position
from uitest.uihelper.calc import enter_text_to_cell
class CreateRangeNameTest(UITestCase):
def test_create_range_name(self):
with self.ui_test.create_doc_in_start_center("calc"):
calcDoc = self.xUITest.getTopFocusWindow()
xPosWindow = calcDoc.getChild('pos_window')
self.assertEqual('A1', get_state_as_dict(xPosWindow)['Text'])
with self.ui_test.execute_modeless_dialog_through_command(".uno:AddName", close_button="add") as xAddNameDlg:
xEdit = xAddNameDlg.getChild("edit")
type_text(xEdit, "globalRangeName")
self.assertEqual('globalRangeName', get_state_as_dict(xPosWindow)['Text'])
def test_create_range_name_from_ui(self):
with self.ui_test.create_doc_in_start_center("calc") as document:
calcDoc = self.xUITest.getTopFocusWindow()
gridwin = calcDoc.getChild("grid_window")
enter_text_to_cell(gridwin, "A1", "1")
enter_text_to_cell(gridwin, "B1", "1")
enter_text_to_cell(gridwin, "C1", "1")
gridwin.executeAction("SELECT", mkPropertyValues({"RANGE": "A1:C1"}))
xPosWindow = calcDoc.getChild('pos_window')
self.assertEqual('A1:C1', get_state_as_dict(xPosWindow)['Text'])
xPosWindow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xPosWindow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xPosWindow.executeAction("TYPE", mkPropertyValues({"TEXT":"RANGE1"}))
xPosWindow.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"}))
self.assertEqual('RANGE1', get_state_as_dict(xPosWindow)['Text'])
calcDoc = self.xUITest.getTopFocusWindow()
gridwin = calcDoc.getChild("grid_window")
enter_text_to_cell(gridwin, "A2", "=SUM(RANGE1)")
self.assertEqual(3.0, get_cell_by_position(document, 0, 0, 1).getValue())
# Change the name
with self.ui_test.execute_dialog_through_command(".uno:DefineName") as xDialog:
xNamesList = xDialog.getChild('names')
self.assertEqual(1, len(xNamesList.getChildren()))
xName = xDialog.getChild('name')
self.assertEqual( 'RANGE1', get_state_as_dict(xName)["Text"])
xName.executeAction("TYPE", mkPropertyValues({"KEYCODE":"CTRL+A"}))
xName.executeAction("TYPE", mkPropertyValues({"KEYCODE":"BACKSPACE"}))
xName.executeAction("TYPE", mkPropertyValues({"TEXT":"RANGE2"}))
# tdf#87474 check the formula is updated after changing the name
self.assertEqual("=SUM(RANGE2)", get_cell_by_position(document, 0, 0, 1).getFormula())
self.xUITest.executeCommand(".uno:Undo")
self.assertEqual("=SUM(RANGE1)", get_cell_by_position(document, 0, 0, 1).getFormula())
def test_create_local_range_name(self):
with self.ui_test.create_doc_in_start_center("calc") as document:
calcDoc = self.xUITest.getTopFocusWindow()
xPosWindow = calcDoc.getChild('pos_window')
self.assertEqual('A1', get_state_as_dict(xPosWindow)['Text'])
with self.ui_test.execute_modeless_dialog_through_command(".uno:AddName", close_button="add") as xAddNameDlg:
xEdit = xAddNameDlg.getChild("edit")
type_text(xEdit, "localRangeName")
xScope = xAddNameDlg.getChild("scope")
select_pos(xScope, "1")
# tdf#67007: Without the fix in place, this test would have failed with
# AssertionError: 'localRangeName' != 'A1'
# Additionally, newly check a sheet-local scoped name has " (sheetname)" appended.
self.assertEqual('localRangeName (Sheet1)', get_state_as_dict(xPosWindow)['Text'])
gridwin = calcDoc.getChild("grid_window")
enter_text_to_cell(gridwin, "A1", "1")
# Use the name range in the current sheet
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B1"}))
with self.ui_test.execute_dialog_through_command(".uno:InsertName", close_button="paste") as xDialog:
xCtrl = xDialog.getChild('ctrl')
self.assertEqual(1, len(xCtrl.getChildren()))
self.assertEqual("localRangeName\t$Sheet1.$A$1\tSheet1", get_state_as_dict(xCtrl.getChild('0'))['Text'])
xCtrl.getChild('0').executeAction("SELECT", tuple())
# use return key to paste the name range
gridwin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"}))
self.assertEqual("1", get_cell_by_position(document, 0, 1, 0).getString())
self.assertEqual("=localRangeName", get_cell_by_position(document, 0, 1, 0).getFormula())
# Insert a new sheet
with self.ui_test.execute_dialog_through_command(".uno:Insert"):
pass
# Use the name range in the new sheet
gridwin.executeAction("SELECT", mkPropertyValues({"CELL": "B1"}))
with self.ui_test.execute_dialog_through_command(".uno:InsertName", close_button="paste") as xDialog:
xCtrl = xDialog.getChild('ctrl')
self.assertEqual(1, len(xCtrl.getChildren()))
self.assertEqual("localRangeName\t$Sheet1.$A$1\tSheet1", get_state_as_dict(xCtrl.getChild('0'))['Text'])
xCtrl.getChild('0').executeAction("SELECT", tuple())
# use return key to paste the name range
gridwin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"}))
# tdf#137896: Without the fix in place, this test would have failed with
# AssertionError: '1' != '#NAME?'
self.assertEqual("1", get_cell_by_position(document, 0, 1, 0).getString())
# and AssertionError: '=Sheet1.localRangeName' != '=localrangename'
self.assertEqual("=Sheet1.localRangeName", get_cell_by_position(document, 0, 1, 0).getFormula())
with self.ui_test.execute_dialog_through_command(".uno:DefineName") as xDialog:
# tdf#138851: Without the fix in place, this test would have failed with
# AssertionError: 'Sheet1' != 'Document (Global)'
xScope = xDialog.getChild("scope")
self.assertEqual("Sheet1", get_state_as_dict(xScope)['SelectEntryText'])
# vim: set shiftwidth=4 softtabstop=4 expandtab:
|