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
203
204
|
#!/usr/bin/env python
#
# 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/.
#
import unittest
import uno
from testcollections_base import CollectionsTestBase
from com.sun.star.beans import PropertyValue
# DataForm factory
def getDataFormInstance(doc):
return doc.createInstance("com.sun.star.form.component.DataForm")
# Tests behaviour of objects implementing XIndexContainer using the new-style
# collection accessors
# The objects chosen have no special meaning, they just happen to implement the
# tested interfaces
class TestXIndexContainer(CollectionsTestBase):
def generateTestPropertyValues(self, count):
sm = self.context.ServiceManager
values = sm.createInstanceWithContext("com.sun.star.document.IndexedPropertyValues", self.context)
for i in range(count):
properties = (PropertyValue(Name='n'+str(i), Value='v'+str(i)),)
uno.invoke(values, "insertByIndex", (i, uno.Any("[]com.sun.star.beans.PropertyValue", properties)))
return values
def generateTestTuple(self, values):
properties = []
for i in values:
properties.append((PropertyValue(Name='n'+str(i), Value='v'+str(i)),))
return tuple(properties)
def assignValuesTestFixture(self, count, key, values, expected):
# Given
property_values = self.generateTestPropertyValues(count)
if type(values) is list:
to_assign = self.generateTestTuple(values)
else:
to_assign = values
if not (isinstance(expected, Exception)):
to_compare = self.generateTestTuple(expected)
# When
captured = None
try:
property_values[key] = to_assign
except Exception as e:
captured = e
# Then
if isinstance(expected, Exception):
# expected is exception
self.assertNotEqual(None, captured)
self.assertEqual(type(expected).__name__, type(captured).__name__)
else:
# expected is list
self.assertEqual(None, captured)
self.assertEqual(len(expected), property_values.getCount())
for i in range(property_values.getCount()):
self.assertEqual(to_compare[i][0].Name, property_values[i][0].Name)
def deleteValuesTestFixture(self, count, key, expected):
# Given
property_values = self.generateTestPropertyValues(count)
if not (isinstance(expected, Exception)):
to_compare = self.generateTestTuple(expected)
# When
captured = None
try:
del property_values[key]
except Exception as e:
captured = e
# Then
if isinstance(expected, Exception):
# expected is exception
self.assertNotEqual(None, captured)
self.assertEqual(type(expected).__name__, type(captured).__name__)
else:
# expected is list
self.assertEqual(None, captured)
self.assertEqual(len(expected), property_values.getCount())
for i in range(property_values.getCount()):
self.assertEqual(to_compare[i][0].Name, property_values[i][0].Name)
# Tests syntax:
# obj[2:4] = val1,val2 # Replace by slice
# obj[2:3] = val1,val2 # Insert/replace by slice
# obj[2:2] = (val,) # Insert by slice
# obj[2:4] = (val,) # Replace/delete by slice
# obj[2:3] = () # Delete by slice (implicit)
# For:
# Cases requiring sequence type coercion
def test_XIndexContainer_AssignSlice(self):
base_max = 5
assign_max = 5
for i in range(base_max):
for j in [x for x in range(-base_max-2, base_max+3)] + [None]:
for k in [x for x in range(-base_max-2, base_max+3)] + [None]:
key = slice(j, k)
for l in range(assign_max):
assign = [y+100 for y in range(l)]
expected = list(range(i))
expected[key] = assign
self.assignValuesTestFixture(i, key, assign, expected)
# Tests syntax:
# obj[2:4] = val1,val2 # Replace by slice
# obj[2:3] = val1,val2 # Insert/replace by slice
# obj[2:2] = (val,) # Insert by slice
# For:
# Cases not requiring sequence type coercion
# Invalid values
def test_XIndexContainer_AssignSlice_Invalid(self):
self.assignValuesTestFixture(2, slice(0, 2), None, TypeError())
self.assignValuesTestFixture(2, slice(0, 2), 'foo', TypeError())
self.assignValuesTestFixture(2, slice(0, 2), 12.34, TypeError())
self.assignValuesTestFixture(2, slice(0, 2), {'a': 'b'}, TypeError())
self.assignValuesTestFixture(2, slice(0, 2), ('foo',), TypeError())
self.assignValuesTestFixture(2, slice(0, 2), ('foo', 'foo'), TypeError())
# Tests syntax:
# obj[2:2] = (val,) # Insert by slice
# For:
# Cases not requiring sequence type coercion
def test_XIndexContainer_AssignSlice_NoCoercion(self):
# Given
doc = self.createBlankTextDocument()
form = getDataFormInstance(doc)
form.Name = 'foo'
# When
doc.DrawPage.Forms[0:0] = (form,)
# Then
self.assertEqual('foo', doc.DrawPage.Forms[0].Name)
doc.close(True)
# Tests syntax:
# obj[0:3:2] = val1,val2 # Replace by extended slice
# For:
# Cases requiring sequence type coercion
def test_XIndexContainer_AssignExtendedSlice(self):
base_max = 5
assign_max = 5
for i in range(base_max):
for j in [x for x in range(-base_max-2, base_max+3)] + [None]:
for k in [x for x in range(-base_max-2, base_max+3)] + [None]:
for l in [-2, -1, 1, 2]:
key = slice(j, k, l)
for m in range(assign_max):
assign = [y+100 for y in range(m)]
expected = list(range(i))
try:
expected[key] = assign
except Exception as e:
expected = e
self.assignValuesTestFixture(i, key, assign, expected)
# Tests syntax:
# del obj[0] # Delete by index
def test_XIndexContainer_DelIndex(self):
base_max = 5
for i in range(base_max):
for j in [x for x in range(-base_max-2, base_max+3)]:
expected = list(range(i))
try:
del expected[j]
except Exception as e:
expected = e
self.deleteValuesTestFixture(i, j, expected)
# Tests syntax:
# del obj[2:4] # Delete by slice
def test_XIndexContainer_DelSlice(self):
baseMax = 5
for i in range(baseMax):
for j in [x for x in range(-baseMax-2, baseMax+3)] + [None]:
for k in [x for x in range(-baseMax-2, baseMax+3)] + [None]:
key = slice(j, k)
expected = list(range(i))
try:
del expected[key]
except Exception as e:
expected = e
self.deleteValuesTestFixture(i, key, expected)
if __name__ == '__main__':
unittest.main()
# vim:set shiftwidth=4 softtabstop=4 expandtab:
|