File: test_dumper.py

package info (click to toggle)
python-baron 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,080 kB
  • sloc: python: 26,926; makefile: 126; sh: 27
file content (643 lines) | stat: -rw-r--r-- 11,664 bytes parent folder | download
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
#!/usr/bin/python
# -*- coding:Utf-8 -*-

import baron
from .test_utils import check_dumps


def test_empty():
    check_dumps("")


def test_var():
    check_dumps("hello")


def test_int():
    check_dumps("1")


def test_assign():
    check_dumps("a = 2")


def test_assign_star_expr():
    check_dumps("a, *b = 2")
    check_dumps("a, *  b = 2")


def test_standalone_annotation():
    check_dumps("a :  str")


def test_assign_annotation():
    check_dumps("a :  int   =      2")


def test_binary_operator():
    check_dumps("z +  42")
    check_dumps("z   -  42")


def test_while():
    check_dumps("while a  : pass\n")


def test_while_else():
    check_dumps("while a  : pass\nelse : pass\n")


def test_while_indent():
    check_dumps("while a:\n    pass\n")


def test_if():
    check_dumps("if a:\n    pass\n")


def test_if_elif():
    check_dumps("if a: \n    pass\nelif b: pass\n")


def test_if_elif_else():
    check_dumps("if a: \n    pass\nelif b: pass\nelse :   \n	pouet\n")


def test_import():
    check_dumps("import  a")


def test_import_madness():
    check_dumps("import  a.B .   c as  saucisse")


def test_from_import():
    check_dumps("from b   import  a  as   rev")


def test_from_import_special_notation():
    check_dumps("from a import (b)")
    check_dumps("from a import (b, c, d)")


def test_print_empty():
    check_dumps("print")


def test_print():
    check_dumps("print pouet")


def test_print_madness():
    check_dumps("print >>  qsd, pouet, zdzd,")


def test_atom_trailers_call():
    check_dumps("a.c(b)")


def test_atom_trailers_call_default():
    check_dumps("caramba(s, b=2)")


def test_list_argument():
    check_dumps("caramba(* a)")


def test_dict_argument():
    check_dumps("caramba(** a)")


def test_list_argument_funcdef():
    check_dumps("def caramba(* a): pass\n")


def test_dict_argument_funcdef():
    check_dumps("def caramba(** a): pass\n")


def test_funcdef_return_annotation():
    check_dumps("def caramba() -> Stuff: pass\n")


def test_string():
    check_dumps("'ama string!'")


def test_funcdef():
    check_dumps("def a  ( ) : pass\n")


def test_funcdef_indent():
    check_dumps("def a  ( ) : \n    pass\n")


def test_funcdef_parameter():
    check_dumps("def a  ( b ) : pass\n")


def test_funcdef_parameter_named():
    check_dumps("def a  ( b  , c = qsd ) : pass\n")


def test_funcdef_parameter_named_star():
    check_dumps("def a  ( b  , c = qsd , * d ) : pass\n")


def test_funcdef_parameter_named_star_start():
    check_dumps("def a  ( b  , c = qsd , * d , ** e ) : pass\n")


def test_funcdef_typed_parameter():
    check_dumps("def a  ( b : c ) : pass\n")


def test_funcdef_typed_parameter_named():
    check_dumps("def a  ( b  , c : d = qsd ) : pass\n")


def test_funcdef_typed_parameter_named_star():
    check_dumps("def a  ( b  , c = qsd , * d : qsd ) : pass\n")


def test_funcdef_typed_parameter_named_star_start():
    check_dumps("def a  ( b  , c = qsd , * d , ** e : qsd ) : pass\n")


def test_async_funcdef():
    check_dumps("async def a  ( ) : pass\n")


def test_async_funcdef_indent():
    check_dumps("async def a  ( ) : \n    pass\n")


def test_async_funcdef_parameter():
    check_dumps("async def a  ( b ) : pass\n")


def test_async_funcdef_parameter_named():
    check_dumps("async def a  ( b  , c = qsd ) : pass\n")


def test_return():
    check_dumps("return a")


def test_getitem():
    check_dumps("a[ b  ]")


def test_slice_empty():
    check_dumps("a[ :  ]")


def test_slice_classical():
    check_dumps("a[1: 42]")


def test_slice_step():
    check_dumps("a[1: 42:]")
    check_dumps("a[1: 42    :         3]")


def test_unitary_operator():
    check_dumps("- 1")


def test_unicode_string():
    check_dumps("u'pouet'")


def test_raw_string():
    check_dumps("r'pouet'")


def test_unicode_raw_string():
    check_dumps("ur'pouet'")


def test_binary_string():
    check_dumps("b'pouet'")


def test_binary_raw_string():
    check_dumps("br'pouet'")


def test_interpolated_string():
    check_dumps("f'qsd'")


def test_nterporlated_raw_string():
    check_dumps("rf'qsd'")


def test_for():
    check_dumps("for i in pouet : pass\n")


def test_for_indent():
    check_dumps("for i in pouet : \n    pass\n")


def test_for_else():
    check_dumps("for i in pouet : pass\nelse: pass\n")


def test_async_for():
    check_dumps("async for i in pouet : pass\n")


def test_async_for_indent():
    check_dumps("async for i in pouet : \n    pass\n")


def test_async_for_else():
    check_dumps("async for i in pouet : pass\nelse: pass\n")


def test_lambda():
    check_dumps("lambda : x")


def test_lambda_args():
    check_dumps("lambda poeut, hompi_dompi: x")


def test_try_finally():
    check_dumps("try : pass\nfinally : pass\n")


def test_try_except():
    check_dumps("try : pass\nexcept Exception : pass\n")


def test_try_except_comma():
    check_dumps("try : pass\nexcept Exception ,   d : pass\n")


def test_try_except_as():
    check_dumps("try : pass\nexcept Exception     as   d : pass\n")


def test_try_except_finally():
    check_dumps("try : pass\nexcept Exception : pass\nfinally : pass\n")


def test_try_except_finally_else():
    check_dumps("try : pass\nexcept Exception : pass\nelse: pouet\nfinally : pass\n")


def test_comment():
    check_dumps("# pouet")


def test_comment_formatting():
    check_dumps("a # pouet")


def test_augassign():
    check_dumps("a &= b")


def test_call_fourth_formatting():
    check_dumps("set(n for e in s() \n                 if a)")


def test_boolean_operator():
    check_dumps("a and b")


def test_boolean_operator_advanced():
    check_dumps("a and b or c and d")


def test_comparison():
    check_dumps("a < b")


def test_with():
    check_dumps("with a : \n    pass\n")


def test_with_as():
    check_dumps("with a as b : \n    pass\n")


def test_async_with():
    check_dumps("async with a : \n    pass\n")


def test_async_with_as():
    check_dumps("async with a as b : \n    pass\n")


def test_dict_empty():
    check_dumps("{   }")


def test_dict_one():
    check_dumps("{ a : b  }")


def test_dict_more():
    check_dumps("{ a : b   ,\n123  :     'pouet'  }")


def test_ternary_operator():
    check_dumps("a   if        b  else      c")


def test_yield_empty():
    check_dumps("yield")


def test_yield():
    check_dumps("yield a")


def test_decorator():
    check_dumps("@pouet\ndef a(): pass\n")


def test_decorator_call():
    check_dumps("@pouet('pouet')\ndef a(): pass\n")


def test_class():
    check_dumps("class A: pass\n")


def test_class_parenthesis():
    check_dumps("class A(): pass\n")


def test_class_parenthesis_inherit():
    check_dumps("class A(B): pass\n")


def test_class_parenthesis_inherit_arglist():
    check_dumps("class A(**B): pass\n")


def test_class_parenthesis_inherit_decorated():
    check_dumps("@pouet\nclass A(B): pass\n")


def test_tuple():
    check_dumps("a  ,  b    , c")


def test_tuple_parenthesis():
    check_dumps("( a  ,  b    , c    )")


def test_return_empty():
    check_dumps("return")


def test_list_empty():
    check_dumps("[   ]")


def test_list():
    check_dumps("[ x ]")


def test_list_more():
    check_dumps("[ x, r, f, e   , e ]")


def test_associative_parenthesis():
    check_dumps("( \n   ( a ) +   ( 1 *    4 )\n ) ")


def test_fplist():
    check_dumps("def a((b, c)): pass\n")


def test_break():
    check_dumps("break")


def test_assert():
    check_dumps("assert a == b")
    check_dumps("assert a == b  , c")


def test_continue():
    check_dumps("continue")


def test_raise():
    check_dumps("raise")
    check_dumps("raise a")
    check_dumps("raise a ,   b")
    check_dumps("raise a   from      b")
    check_dumps("raise a ,   b   ,     c")


def test_del():
    check_dumps("del a")


def test_star():
    check_dumps("from a import *")


def test_string_chain():
    check_dumps("'q' 'b'")


def test_list_comprehension():
    check_dumps("[ x for   y       in  z      ]")


def test_list_comprehension_ifs():
    check_dumps("[ x for   y       in  z   if a   if  qsd  ]")


def test_list_comprehension_ifs_more():
    check_dumps("[ x for   y       in  z   if a   if  qsd  for ss in gfgr    ]")


def test_generator_comprehension():
    check_dumps("( x for   y       in  z      )")


def test_generator_comprehension_ifs():
    check_dumps("( x for   y       in  z   if a   if  qsd  )")


def test_generator_comprehension_ifs_more():
    check_dumps("( x for   y       in  z   if a   if  qsd  for ss in gfgr    )")


def test_dict_comprehension():
    check_dumps("{ x: z for   y       in  z      }")


def test_dict_comprehension_ifs():
    check_dumps("{ x   : z for   y       in  z   if a   if  qsd  }")


def test_dict_comprehension_ifs_more():
    check_dumps("{ x :z for   y       in  z   if a   if  qsd  for ss in gfgr    }")


def test_set_comprehension():
    check_dumps("{ x for   y       in  z      }")


def test_set_comprehension_ifs():
    check_dumps("{ x    for   y       in  z   if a   if  qsd  }")


def test_set_comprehension_ifs_more():
    check_dumps("{ x  for   y       in  z   if a   if  qsd  for ss in gfgr    }")


def test_set_one():
    check_dumps("{a}")


def test_set_one_comma():
    check_dumps("{a,}")


def test_set_one_more():
    check_dumps("{ a  ,   b      }")


def test_argument_generator_comprehension():
    check_dumps("a( x for   y       in  z)")


def test_argument_generator_comprehension_comprehension_ifs():
    check_dumps("a( x    for   y       in  z   if a   if  qsd)")


def test_argument_generator_comprehension_comprehension_ifs_more():
    check_dumps("a(x  for   y       in  z   if a   if  qsd  for ss in gfgr)")


def test_hexa():
    check_dumps("0x123")


def test_octa():
    check_dumps("0123")


def test_binary():
    check_dumps("0b010110101100")


def test_float():
    check_dumps("1.2")


def test_complex():
    check_dumps("10j")


def test_float_exponant():
    check_dumps("1e9")


def test_semicolon():
    check_dumps("a;b")


def test_exec():
    check_dumps("exec a")


def test_exec_globals():
    check_dumps("exec a  in   b")


def test_exec_globals_locals():
    check_dumps("exec a  in   b   ,     c")


def test_exec_function():
    check_dumps("exec(a)")


def test_global():
    check_dumps("global a")


def test_global_more():
    check_dumps("global a ,   b,    d")


def test_ellipsis():
    check_dumps("a[ ... ]")


def test_yield_atom_empty():
    check_dumps("a = ( yield )")


def test_yield_atom():
    check_dumps("a = ( yield b )")


def test_repr():
    check_dumps("` a  `")


def test_comment_special_case():
    check_dumps("d((s)   # Padding\n)")


def test_from_import_parenthesis_formatting():
    check_dumps("from a import (\nb, c\n)\n")


def test_getitem_special_case():
    check_dumps("[a[...] ]")


def test_print_tuple():
    check_dumps("print(pouet, pouet)")


def test_raise_special():
    check_dumps("raise   # pouet")


def test_from_import_star_comment():
    check_dumps("from a import * # pouet")


def test_class_formatting():
    check_dumps("class A(pouet) : \n    pass\n")


def test_backslash_not_in_formatting():
    check_dumps("if a not \\\n      in b: pass\n")


def test_try_import_after_colon():
    check_dumps("try: import stuff\nexcept: pass\n")


def test_single_object():
    assert baron.dumps({"type": "name", "value": "a"}) == "a"


def test_crash_issue_85():
    check_dumps('d*e-1\n')


def test_keyword_only_marker():
    check_dumps("def foo(a, *, b, c):    pass\n")
    check_dumps("def foo(a, *  , b, c):    pass\n")


def test_float_with_underscores():
    check_dumps("123_456.789_012")