-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathtest_formals.py
364 lines (232 loc) · 7.21 KB
/
test_formals.py
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
import pytest
from fints.formals import (
Container, ContainerField, DataElementField,
DataElementGroupField, DigitsField, Field, GenericGroupField,
NumericField, SegmentHeader, SegmentSequence,
)
def test_container_simple():
class A(Container):
a = DataElementField(type='an')
b = DigitsField()
i1 = A()
assert isinstance(i1, A)
assert hasattr(i1, 'a')
assert i1.a is None
i1.a = 'abc123'
i1.b = '007'
assert i1.a == 'abc123'
assert i1.b == '007'
i2 = A(b='0815', a='bcd234')
assert isinstance(i1, A)
assert i2.a == 'bcd234'
assert i2.b == '0815'
with pytest.raises(TypeError):
A(b='a')
del i2.b
assert i2.b is None
def test_container_nested():
class A(Container):
a = NumericField()
class B(Container):
b = DataElementGroupField(type=A)
i1 = B()
assert isinstance(i1.b, A)
i1.b.a = '1'
assert i1.b.a == 1
def test_container_count_exact():
class A(Container):
a = NumericField(count=2)
i1 = A()
assert len(i1.a) == 2
assert i1.a[0] is None
assert i1.a[1] is None
with pytest.raises(IndexError):
i1.a[2]
with pytest.raises(IndexError):
i1.a[2] = 1
with pytest.raises(IndexError):
i1.a[-1]
with pytest.raises(IndexError):
i1.a[-1] = 1
i1.a[0] = '3'
i1.a[1] = 4
with pytest.raises(ValueError):
i1.a[1] = '05'
assert i1.a[0] == 3
assert i1.a[1] == 4
assert len(i1.a) == 2
del i1.a[1]
assert i1.a[1] is None
def test_container_count_variable_1():
class A(Container):
a = NumericField(min_count=2, max_count=5)
i1 = A()
assert len(i1.a) == 2
assert i1.a[0] is None
assert i1.a[1] is None
assert i1.a[3] is None
assert len(i1.a) == 2
with pytest.raises(IndexError):
i1.a[5]
with pytest.raises(IndexError):
i1.a[5] = 1
with pytest.raises(IndexError):
i1.a[-1]
i1.a[0] = '3'
i1.a[1] = 4
i1.a[3] = 17
assert i1.a[0] == 3
assert i1.a[1] == 4
assert i1.a[2] is None
assert i1.a[3] == 17
assert len(i1.a) == 4
assert i1.a[4] is None
assert len(i1.a) == 4
def test_container_count_variable_2():
class A(Container):
a = NumericField(min_count=2)
i1 = A()
assert len(i1.a) == 2
def test_container_count_variable_3():
class A(Container):
a = NumericField(max_count=4)
i1 = A()
assert len(i1.a) == 0
def test_container_count_variable_iter():
class A(Container):
a = NumericField(max_count=4)
i1 = A()
assert len(i1.a) == 0
assert list(i1.a) == []
i1.a[2] = '3'
assert list(i1.a) == [None, None, 3]
assert len(i1.a) == 3
def test_container_init():
class A(Container):
a = NumericField()
b = DigitsField()
i1 = A(a='3', b='04')
assert i1.a == 3
assert i1.b == '04'
def test_container_nested_init():
class A(Container):
a = NumericField()
class B(Container):
b = DataElementGroupField(type=A)
i1 = A(a='5')
i2 = B(b=i1)
assert isinstance(i2.b, A)
assert i2.b.a == 5
class C(Container):
c = DataElementGroupField(type=B)
with pytest.raises(TypeError):
C(c=i1)
i3 = B()
assert i3.b.a is None
def test_container_count_init():
class A(Container):
a = NumericField(count=4)
i1 = A(a=[None, '23'])
assert i1.a[0] is None
assert i1.a[1] == 23
assert len(i1.a) == 4
def test_container_count_variable_init():
class A(Container):
a = NumericField(max_count=4)
i1 = A(a=[None, '23'])
assert i1.a[0] is None
assert i1.a[1] == 23
assert len(i1.a) == 2
def test_container_naive_parse():
class A(Container):
a = NumericField()
b = DigitsField()
i1 = A.naive_parse(['23', '42'])
assert i1.a == 23
assert i1.b == '42'
def test_invalid_spec():
with pytest.raises(ValueError):
class A(Container):
a = NumericField(length=3, max_length=5)
with pytest.raises(ValueError):
class A(Container):
a = NumericField(count=3, min_count=5)
with pytest.raises(NotImplementedError):
class A(Container):
a = Field()
A(a=123)
def test_parse_restrictions():
class A(Container):
a = NumericField(min_length=2, max_length=3)
b = DigitsField(length=3)
i1 = A()
with pytest.raises(ValueError, match='max_length=3 exceeded'):
i1.a = '1234'
i2 = A(a=123)
with pytest.raises(ValueError, match='max_length=3 exceeded'):
i2.a = 1234
with pytest.raises(ValueError, match='length=3 not satisfied'):
A(b='01')
with pytest.raises(ValueError, match='min_length=2 not reached'):
A(a=1)
def test_unset():
class A(Container):
a = NumericField()
class B(Container):
b = ContainerField(type=A)
c = NumericField()
assert A().is_unset()
assert not A(a=1).is_unset()
assert A(a=None).is_unset()
assert B().is_unset()
assert B(b=A()).is_unset()
assert not B(c=1).is_unset()
def test_sequence_repr():
s = SegmentSequence()
assert repr(s) == 'fints.types.SegmentSequence([])'
def test_valuelist_repr():
class A(Container):
a = NumericField(max_count=3)
i1 = A()
assert repr(i1.a) == "[]"
def test_empty_list():
class A(Container):
a = NumericField(max_count=3)
i1 = A()
assert len(i1.a) == 0
i2 = A(a=[None])
assert len(i2.a) == 0
def test_segmentheader_short():
h = SegmentHeader('HNHBS', 5, 1)
assert repr(h) == "fints.formals.SegmentHeader('HNHBS', 5, 1)"
def test_container_generic():
class A(Container):
a = DataElementGroupField()
assert isinstance(A._fields['a'], GenericGroupField)
i1 = A()
assert i1._fields['a'].type is None
assert i1.a
with pytest.warns(UserWarning, match=r'Generic field used for type None value \[\]'):
i2 = A(a=[])
def test_find_1():
from conftest import TEST_MESSAGES
from fints.parser import FinTS3Parser
from fints.segments.message import HNHBS1, HNHBK3
m = FinTS3Parser().parse_message(TEST_MESSAGES['basic_complicated'])
assert len(list(m.find_segments('HNHBK'))) == 1
assert len(list(m.find_segments(['HNHBK', 'HNHBS']))) == 2
assert len(list(m.find_segments(['HNHBK', 'HNHBS'], 1))) == 1
assert len(list(m.find_segments(['HNHBK', 'HNHBS'], (1, 3)))) == 2
assert isinstance(m.find_segment_first('HNHBK'), HNHBK3)
assert isinstance(m.find_segment_first('HNHBS'), HNHBS1)
assert m.find_segment_first('ITST') is None
assert len(m.find_segment_first('HITANS', 1).parameter.twostep_parameters) == 2
assert len(m.find_segment_first('HITANS', 3).parameter.twostep_parameters) == 6
assert m.find_segment_first('HITANS', recurse=False) is None
def test_find_by_class():
from conftest import TEST_MESSAGES
from fints.parser import FinTS3Parser
from fints.segments.message import HNHBS1
m = FinTS3Parser().parse_message(TEST_MESSAGES['basic_complicated'])
assert list(m.find_segments(HNHBS1))[0].__class__ == HNHBS1
assert m.find_segment_first(HNHBS1).header.type == 'HNHBS'