-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_parser.py
386 lines (339 loc) · 9.5 KB
/
test_parser.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
import textwrap
import pytest
from armaclass import parse, ParseError
# We're not really deleting anything, just acknowledging the command to delete an object
def test_delete():
expected = {'Foo': {}}
result = parse(
'class Foo {\r\ndelete Moo; };')
assert result == expected
# We're not really importing anything, just acknowledging the command to delete an object
def test_import():
expected = {'Foo': {}}
result = parse(
'import bar;\n'
'class Foo {\r\nimport Moo; //Not sure if valid here but whatever\n };')
assert result == expected
def test_ignore_newlines():
expected = {
'value1': 1,
'value2': 2,
'value3': 3,
'value4': 4,
}
result = parse('value1 = 1;\r\nvalue2 = 2;\rvalue3 = 3;\nvalue4 = 4;')
assert result == expected
def test_dont_eat_chars_after_semicolon():
expected = {
'Foo': [5],
'Moo': [5],
}
result = parse('Foo[] = {5};Moo[] = {5};')
assert result == expected
def test_integer_property():
expected = {
'Moo': {
'value': 1
}
}
result = parse('''
class Moo {
value=1;
};
''')
assert result == expected
def test_more_than_one_value_in_file():
expected = {
'version': 12,
'Moo': {
'value': 1
}
}
result = parse('''
version=12;
class Moo {
value = 1;
};
''')
assert result == expected
def test_nested_arrays():
expected = {
'Moo': {
'foo': [[], ['foo'], [1, 2]]
}
}
result = parse('''
class Moo {
foo[]={{}, {"foo"}, {1, 2}};
};
''')
assert result == expected
def test_array_of_scalars():
expected = {
'Moo': {
'foo': ['bar', 'baz', 1.5e2]
}
}
result = parse('''
class Moo {
foo[]={"bar", "baz",1.5e2};
};
''')
assert result == expected
def test_scientific_notation_negative_exponent():
assert parse('x=-1.5e2;') == {'x': -1.5e2}
def test_scientific_notation_positive_exponent():
assert parse('x=1.5e2;') == {'x': 1.5e2}
def test_scientific_explicitly_positive_exponent():
assert parse('x=+1.5e2;') == {'x': 1.5e2}
def test_scientific_notation_negative_exponent_with_zeroes():
assert parse('x=-1.9073486e-006;') == {'x': -1.9073486e-6}
def test_plus_array():
expected = {'Moo': {
'foo': [1, 2, 3]
}}
result = parse('''
class Moo {
foo[] += {1,2,3};
};
''')
assert result == expected
def test_hanging_quote():
with pytest.raises(ParseError, match=r'Got EOF'):
parse('v="')
def test_ignore_inheritance():
parsed_string = 'class Moo : foo {};'
assert parse(parsed_string) == {'Moo': {}}
def test_line_comments():
assert parse('// foo comment') == {}
assert parse('// foo comment\nx=2;') == {'x': 2}
assert parse('x=2;// foo comment') == {'x': 2}
assert parse('class Moo { // foo comment\n};') == {'Moo': {}}
def test_slash_asterisk_comments():
assert parse('/* foo comment*/') == {}
assert parse('/* foo comment\nsomething */x=2;') == {'x': 2}
assert parse('x=2;/* foo comment*/') == {'x': 2}
assert parse('x/*asd*/=/**/2;/* foo comment*/') == {'x': 2}
assert parse('class Moo { /* foo comment*/};') == {'Moo': {}}
def test_multiline_comments():
expected = {
'testClass': {'values': [0, 1]}
}
to_parse = textwrap.dedent('''
/*
multiline
comment
*/
class testClass {
values[] = {0,1};
};
''')
assert parse(to_parse) == expected
def test_quote_escaping_by_double_quote():
assert parse('foo="bar ""haha"";";') == {'foo': 'bar "haha";'}
def test_sample():
expected = {
'Session': {
'Player1': {
'customScore': 0,
'killed': 0,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 4,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 4,
'name': 'Lord DK'
},
'Player2': {
'customScore': 0,
'killed': 0,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 3,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 3,
'name': 'XiviD'
},
'Player3': {
'customScore': 0,
'killed': 0,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 2,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 2,
'name': '40mm2Die'
},
'Player4': {
'customScore': 0,
'killed': 0,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 4,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 4,
'name': 'WickerMan'
},
'Player5': {
'customScore': 0,
'killed': 1,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 3,
'killsPlayers': 0,
'killsSoft': -1,
'killsTotal': 1,
'name': 'Fusselwurm'
},
'Player6': {
'customScore': 0,
'killed': 0,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 0,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 0,
'name': 'Simmax'
},
'Player7': {
'customScore': 0,
'killed': 2,
'killsAir': 0,
'killsArmor': 0,
'killsInfantry': 0,
'killsPlayers': 0,
'killsSoft': 0,
'killsTotal': 0,
'name': 'Andre'
},
'duration': 5821.1724,
'gameType': 'Coop',
'island': 'Altis',
'mission': 'W-CO@10 StealBoot v03'
}
}
result = parse('''
class Session
{
mission="W-CO@10 StealBoot v03";
island="Altis";
gameType="Coop";
duration=5821.1724;
class Player1
{
name="Lord DK";
killsInfantry=4;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=4;
killed=0;
};
class Player2
{
name="XiviD";
killsInfantry=3;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=3;
killed=0;
};
class Player3
{
name="40mm2Die";
killsInfantry=2;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=2;
killed=0;
};
class Player4
{
name="WickerMan";
killsInfantry=4;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=4;
killed=0;
};
class Player5
{
name="Fusselwurm";
killsInfantry=3;
killsSoft=-1;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=1;
killed=1;
};
class Player6
{
name="Simmax";
killsInfantry=0;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=0;
killed=0;
};
class Player7
{
name="Andre";
killsInfantry=0;
killsSoft=0;
killsArmor=0;
killsAir=0;
killsPlayers=0;
customScore=0;
killsTotal=0;
killed=2;
};
};
''')
assert result == expected
def test_multiline_init():
source = (
r'class Item0 {'
r' position[]={1954.6425,5.9796591,5538.1045};'
r' id=0;'
r' init="[this, ""Platoon""] call FP_fnc_setVehicleName;" \n "if (isServer) then {" \n " [this] call '
r'FP_fnc_clearVehicle; this addWeaponCargoGlobal [""CUP_launch_M136"", 1];" \n " this '
r'addMagazineCargoGlobal [""1Rnd_HE_Grenade_shell"", 10];" \n " this addMagazineCargoGlobal '
r'[""ATMine_Range_Mag"", 6];" \n "};";'
r'};'
)
result = parse(source)
expected = {
'Item0': {
'position': [1954.6425, 5.9796591, 5538.1045],
'id': 0,
'init': textwrap.dedent('''\
[this, "Platoon"] call FP_fnc_setVehicleName;
if (isServer) then {
[this] call FP_fnc_clearVehicle; this addWeaponCargoGlobal ["CUP_launch_M136", 1];
this addMagazineCargoGlobal ["1Rnd_HE_Grenade_shell", 10];
this addMagazineCargoGlobal ["ATMine_Range_Mag", 6];
};''')
}
}
assert result == expected