forked from fsprojects/fantomas
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathControlStructureTests.fs
1018 lines (934 loc) · 21.2 KB
/
ControlStructureTests.fs
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
module Fantomas.Core.Tests.ControlStructureTests
open NUnit.Framework
open FsUnit
open Fantomas.Core.Tests.TestHelpers
open Fantomas.Core
[<Test>]
let ``if/then/else block`` () =
formatSourceString
"""
let rec tryFindMatch pred list =
match list with
| head :: tail -> if pred(head)
then Some(head)
else tryFindMatch pred tail
| [] -> None
let test x y =
if x = y then "equals"
elif x < y then "is less than"
else if x > y then "is greater than"
else "Don't know"
if age < 10
then printfn "You are only %d years old and already learning F#? Wow!" age"""
{ config with
MaxIfThenElseShortWidth = 60 }
|> prepend newline
|> should
equal
"""
let rec tryFindMatch pred list =
match list with
| head :: tail -> if pred (head) then Some(head) else tryFindMatch pred tail
| [] -> None
let test x y =
if x = y then "equals"
elif x < y then "is less than"
else if x > y then "is greater than"
else "Don't know"
if age < 10 then
printfn "You are only %d years old and already learning F#? Wow!" age
"""
[<Test>]
let ``for loops`` () =
formatSourceString
"""
let function1() =
for i = 1 to 10 do
printf "%d " i
printfn ""
let function2() =
for i = 10 downto 1 do
printf "%d " i
printfn ""
"""
config
|> prepend newline
|> should
equal
"""
let function1 () =
for i = 1 to 10 do
printf "%d " i
printfn ""
let function2 () =
for i = 10 downto 1 do
printf "%d " i
printfn ""
"""
[<Test>]
let ``while loop`` () =
formatSourceString
"""
open System
let lookForValue value maxValue =
let mutable continueLooping = true
let randomNumberGenerator = new Random()
while continueLooping do
let rand = randomNumberGenerator.Next(maxValue)
printf "%d " rand
if rand = value then
printfn "\nFound a %d!" value
continueLooping <- false
lookForValue 10 20"""
config
|> prepend newline
|> should
equal
"""
open System
let lookForValue value maxValue =
let mutable continueLooping = true
let randomNumberGenerator = new Random()
while continueLooping do
let rand = randomNumberGenerator.Next(maxValue)
printf "%d " rand
if rand = value then
printfn "\nFound a %d!" value
continueLooping <- false
lookForValue 10 20
"""
[<Test>]
let ``while bang`` () =
formatSourceString
"""
let goThroughFsharpTicketsAsync() = task {
let mutable ticketNumber = 1
while! doesTicketExistAsync ticketNumber do
printfn $"Found a PR or issue #{ticketNumber}."
ticketNumber <- ticketNumber + 1
printfn $"#{ticketNumber} is not created yet."
}
"""
config
|> prepend newline
|> should
equal
"""
let goThroughFsharpTicketsAsync () =
task {
let mutable ticketNumber = 1
while! doesTicketExistAsync ticketNumber do
printfn $"Found a PR or issue #{ticketNumber}."
ticketNumber <- ticketNumber + 1
printfn $"#{ticketNumber} is not created yet."
}
"""
[<Test>]
let ``try/with block`` () =
formatSourceString
"""
let divide1 x y =
try
Some (x / y)
with
| :? System.DivideByZeroException -> printfn "Division by zero!"; None
let result1 = divide1 100 0
"""
config
|> prepend newline
|> should
equal
"""
let divide1 x y =
try
Some(x / y)
with :? System.DivideByZeroException ->
printfn "Division by zero!"
None
let result1 = divide1 100 0
"""
[<Test>]
let ``try/with and finally`` () =
formatSourceString
"""
let function1 x y =
try
try
if x = y then raise (InnerError("inner"))
else raise (OuterError("outer"))
with
| Failure _ -> ()
| InnerError(str) -> printfn "Error1 %s" str
finally
printfn "Always print this."
"""
config
|> prepend newline
|> should
equal
"""
let function1 x y =
try
try
if x = y then
raise (InnerError("inner"))
else
raise (OuterError("outer"))
with
| Failure _ -> ()
| InnerError(str) -> printfn "Error1 %s" str
finally
printfn "Always print this."
"""
[<Test>]
let ``range expressions`` () =
formatSourceString
"""
let function2() =
for i in 1 .. 2 .. 10 do
printf "%d " i
printfn ""
function2()"""
config
|> prepend newline
|> should
equal
"""
let function2 () =
for i in 1..2..10 do
printf "%d " i
printfn ""
function2 ()
"""
[<Test>]
let ``use binding`` () =
formatSourceString
"""
let writetofile filename obj =
use file1 = File.CreateText(filename)
file1.WriteLine("{0}", obj.ToString())
"""
config
|> prepend newline
|> should
equal
"""
let writetofile filename obj =
use file1 = File.CreateText(filename)
file1.WriteLine("{0}", obj.ToString())
"""
[<Test>]
let ``access modifiers`` () =
formatSourceString
"""
let private myPrivateObj = new MyPrivateType()
let internal myInternalObj = new MyInternalType()"""
config
|> prepend newline
|> should
equal
"""
let private myPrivateObj = new MyPrivateType()
let internal myInternalObj = new MyInternalType()
"""
[<Test>]
let ``keyworded expressions`` () =
formatSourceString
"""
assert (3 > 2)
let result = lazy (x + 10)
do printfn "Hello world"
"""
config
|> prepend newline
|> should
equal
"""
assert (3 > 2)
let result = lazy (x + 10)
do printfn "Hello world"
"""
[<Test>]
let ``should break lines on multiline if conditions`` () =
formatSourceString
"""
let x =
if try
true
with
| Failure _ -> false
then ()
else ()
"""
config
|> prepend newline
|> should
equal
"""
let x =
if
try
true
with Failure _ ->
false
then
()
else
()
"""
[<Test>]
let ``try finally in if expression`` () =
formatSourceString
"""
let y =
if try true
finally false
then
()
else
()
"""
config
|> prepend newline
|> should
equal
"""
let y =
if
try
true
finally
false
then
()
else
()
"""
[<Test>]
let ``should not escape some specific keywords`` () =
formatSourceString
"""
base.Initializer()
global.Test()
"""
config
|> prepend newline
|> should
equal
"""
base.Initializer()
global.Test()
"""
[<Test>]
let ``should handle delimiters before comments`` () =
formatSourceString
"""
let handle =
if n<weakThreshhold then
assert onStrongDiscard.IsNone; // it disappeared
Weak(WeakReference(v))
else
Strong(v)
"""
config
|> prepend newline
|> should
equal
"""
let handle =
if n < weakThreshhold then
assert onStrongDiscard.IsNone // it disappeared
Weak(WeakReference(v))
else
Strong(v)
"""
[<Test>]
let ``should handle infix operators in pattern matching`` () =
formatSourceString
"""
let url =
match x with
| A -> "a"
| B -> "b"
+ "/c"
"""
config
|> prepend newline
|> should
equal
"""
let url =
match x with
| A -> "a"
| B -> "b"
+ "/c"
"""
[<Test>]
let ``if/elif without else`` () =
formatSourceString
"""
if true then ()
elif true then ()
"""
{ config with MaxIfThenShortWidth = 20 }
|> prepend newline
|> should
equal
"""
if true then ()
elif true then ()
"""
[<Test>]
let ``multiline if in tuple`` () =
formatSourceString
"""
(if true then 1 else 2
,3)
"""
config
|> prepend newline
|> should
equal
"""
((if true then 1 else 2), 3)
"""
// https://docs.microsoft.com/en-us/dotnet/fsharp/style-guide/formatting#formatting-if-expressions
[<Test>]
let ``else branch should be on newline in case if branch is long`` () =
formatSourceString
"""
if cond then
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
else ()
"""
config
|> prepend newline
|> should
equal
"""
if cond then
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
else
()
"""
[<Test>]
let ``if branch should be on newline in case else branch is long`` () =
formatSourceString
"""
if not cond then
()
else
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
"""
config
|> prepend newline
|> should
equal
"""
if not cond then
()
else
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
"""
[<Test>]
let ``elif branch should on newline if else branch is long`` () =
formatSourceString
"""
if not cond then
()
elif false then ()
else
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
"""
config
|> prepend newline
|> should
equal
"""
if not cond then
()
elif false then
()
else
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
"""
[<Test>]
let ``multiline elif branch should result in newline for if and else`` () =
formatSourceString
"""
if foo then ()
elif bar then
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
else ()
"""
config
|> prepend newline
|> should
equal
"""
if foo then
()
elif bar then
match foo with
| Some f -> ()
| None -> printfn "%s" "meh"
else
()
"""
[<Test>]
let ``else keyword should be on separate line, #483`` () =
formatSourceString
""" if i.OpCode = OpCodes.Switch then
AccumulateSwitchTargets i targets
c
else
let branch = i.Operand :?> Cil.Instruction
c + (Option.nullable branch.Previous)
"""
config
|> prepend newline
|> should
equal
"""
if i.OpCode = OpCodes.Switch then
AccumulateSwitchTargets i targets
c
else
let branch = i.Operand :?> Cil.Instruction
c + (Option.nullable branch.Previous)
"""
[<Test>]
let ``relaxation in for loops`` () =
formatSourceString
"""
for _ in 1..10 do ()
"""
config
|> prepend newline
|> should
equal
"""
for _ in 1..10 do
()
"""
[<Test>]
let ``if elif if with trivia doesn't glitch elif conditional`` () =
formatSourceString
"""
let a ex =
if null = ex then
fooo ()
None
// this was None
elif ex.GetType() = typeof<obj> then
Some ex
else
None
"""
config
|> prepend newline
|> should
equal
"""
let a ex =
if null = ex then
fooo ()
None
// this was None
elif ex.GetType() = typeof<obj> then
Some ex
else
None
"""
[<Test>]
let ``print trivia for SynExpr.Assert, 1071`` () =
formatSourceString
"""
let genPropertyWithGetSet astContext (b1, b2) rangeOfMember =
match b1, b2 with
| PropertyBinding (ats, px, ao, isInline, mf1, PatLongIdent (ao1, s1, ps1, _), e1),
PropertyBinding (_, _, _, _, _, PatLongIdent (ao2, _, ps2, _), e2) ->
let prefix =
genPreXmlDoc px
+> genAttributes astContext ats
+> genMemberFlags astContext mf1
+> ifElse isInline (!- "inline ") sepNone
+> opt sepSpace ao genAccess
assert (ps1 |> Seq.map fst |> Seq.forall Option.isNone)
assert (ps2 |> Seq.map fst |> Seq.forall Option.isNone)
let ps1 = List.map snd ps1
let ps2 = List.map snd ps2
prefix
+> !-s1
+> indent
+> sepNln
+> optSingle (fun rom -> enterNodeTokenByName rom WITH) rangeOfMember
+> genProperty astContext "with " ao1 "get " ps1 e1
+> sepNln
+> genProperty astContext "and " ao2 "set " ps2 e2
+> unindent
| _ -> sepNone
"""
config
|> prepend newline
|> should
equal
"""
let genPropertyWithGetSet astContext (b1, b2) rangeOfMember =
match b1, b2 with
| PropertyBinding(ats, px, ao, isInline, mf1, PatLongIdent(ao1, s1, ps1, _), e1),
PropertyBinding(_, _, _, _, _, PatLongIdent(ao2, _, ps2, _), e2) ->
let prefix =
genPreXmlDoc px
+> genAttributes astContext ats
+> genMemberFlags astContext mf1
+> ifElse isInline (!-"inline ") sepNone
+> opt sepSpace ao genAccess
assert (ps1 |> Seq.map fst |> Seq.forall Option.isNone)
assert (ps2 |> Seq.map fst |> Seq.forall Option.isNone)
let ps1 = List.map snd ps1
let ps2 = List.map snd ps2
prefix
+> !-s1
+> indent
+> sepNln
+> optSingle (fun rom -> enterNodeTokenByName rom WITH) rangeOfMember
+> genProperty astContext "with " ao1 "get " ps1 e1
+> sepNln
+> genProperty astContext "and " ao2 "set " ps2 e2
+> unindent
| _ -> sepNone
"""
[<Test>]
let ``preserve new line before while loop, 1072`` () =
formatSourceString
"""
let internal coli f' (c: seq<'T>) f (ctx: Context) =
let mutable tryPick = true
let mutable st = ctx
let mutable i = 0
let e = c.GetEnumerator()
while (e.MoveNext()) do
if tryPick then tryPick <- false else st <- f' st
st <- f i (e.Current) st
i <- i + 1
st
"""
{ config with
MaxIfThenElseShortWidth = 50 }
|> prepend newline
|> should
equal
"""
let internal coli f' (c: seq<'T>) f (ctx: Context) =
let mutable tryPick = true
let mutable st = ctx
let mutable i = 0
let e = c.GetEnumerator()
while (e.MoveNext()) do
if tryPick then tryPick <- false else st <- f' st
st <- f i (e.Current) st
i <- i + 1
st
"""
[<Test>]
let ``keep new line before for loop, 1317`` () =
formatSourceString
"""
/// Fold over the array passing the index and element at that index to a folding function
let foldi (folder: 'State -> int -> 'T -> 'State) (state: 'State) (array: 'T[]) =
checkNonNull "array" array
if array.Length = 0 then
state
else
let folder =
OptimizedClosures.FSharpFunc<_, _, _, _>.Adapt folder
let mutable state: 'State = state
let len = array.Length
for i = 0 to len - 1 do
state <- folder.Invoke(state, i, array.[i])
state
"""
{ config with
MaxDotGetExpressionWidth = 60 }
|> prepend newline
|> should
equal
"""
/// Fold over the array passing the index and element at that index to a folding function
let foldi (folder: 'State -> int -> 'T -> 'State) (state: 'State) (array: 'T[]) =
checkNonNull "array" array
if array.Length = 0 then
state
else
let folder = OptimizedClosures.FSharpFunc<_, _, _, _>.Adapt folder
let mutable state: 'State = state
let len = array.Length
for i = 0 to len - 1 do
state <- folder.Invoke(state, i, array.[i])
state
"""
[<Test>]
let ``try/with with multiple type checks, 1395`` () =
formatSourceString
"""
things
|> Seq.map (fun a ->
try
Some i
with
| :? Foo
| :? Bar as e when true ->
None
)
"""
config
|> prepend newline
|> should
equal
"""
things
|> Seq.map (fun a ->
try
Some i
with
| :? Foo
| :? Bar as e when true -> None)
"""
[<Test>]
let ``try/with with named or pattern`` () =
formatSourceString
"""
things
|> Seq.map (fun a ->
try
Some i
with
| Foo _
| Bar _ as e when true ->
None
)
"""
config
|> prepend newline
|> should
equal
"""
things
|> Seq.map (fun a ->
try
Some i
with
| Foo _
| Bar _ as e when true -> None)
"""
[<Test>]
let ``comment above pipe of try/with`` () =
formatSourceString
"""
try
let defaultTime = (DateTime.FromFileTimeUtc 0L).ToLocalTime ()
foo.CreationTime <> defaultTime
with
// hmm
| :? FileNotFoundException -> false
"""
config
|> prepend newline
|> should
equal
"""
try
let defaultTime = (DateTime.FromFileTimeUtc 0L).ToLocalTime()
foo.CreationTime <> defaultTime
with
// hmm
| :? FileNotFoundException ->
false
"""
[<Test>]
let ``comment above pipe of try/with named clause, 1686`` () =
formatSourceString
"""
namespace Foo
module Foo =
let a =
try
failwith ""
with
// hi!
| :? Exception as e ->
failwith ""
"""
{ config with
SpaceBeforeColon = true
SpaceBeforeSemicolon = true }
|> prepend newline
|> should
equal
"""
namespace Foo
module Foo =
let a =
try
failwith ""
with
// hi!
| :? Exception as e ->
failwith ""
"""
[<Test>]
let ``respect IndentOnTryWith setting when there is trivia before SynMatchClause_Clause, 1647`` () =
formatSourceString
"""
module Foo =
let blah () =
match foo with
| Thing crate ->
crate.Apply
{ new Evaluator<_, _> with
member __.Eval inner teq =
let foo =
// blah
let exists =
try
let defaultTime =
(DateTime.FromFileTimeUtc 0L).ToLocalTime ()
foo.CreationTime <> defaultTime
with
// hmm
:? FileNotFoundException -> false
exists
()
}
"""
{ config with
SpaceBeforeUppercaseInvocation = true
SpaceBeforeClassConstructor = true
SpaceBeforeMember = true
SpaceBeforeColon = true
SpaceBeforeSemicolon = true
MultilineBracketStyle = Aligned
AlignFunctionSignatureToIndentation = true
AlternativeLongMemberDefinitions = true
MultiLineLambdaClosingNewline = true
ExperimentalKeepIndentInBranch = true }
|> prepend newline
|> should
equal
"""
module Foo =
let blah () =
match foo with
| Thing crate ->
crate.Apply
{ new Evaluator<_, _> with
member __.Eval inner teq =
let foo =
// blah
let exists =
try
let defaultTime = (DateTime.FromFileTimeUtc 0L).ToLocalTime ()
foo.CreationTime <> defaultTime
with
// hmm
| :? FileNotFoundException ->
false
exists
()
}
"""
[<Test>]
let ``short catch clause in try/with should not have pipe, 1571`` () =
formatSourceString
"""
try
()
with
| exc ->
()
"""
config
|> prepend newline
|> should
equal
"""
try
()
with exc ->
()
"""
[<Test>]
let ``try/with in infix expression should be indented, 1746`` () =
formatSourceString
"""
let isAbstractNonVirtualMember (m: FSharpMemberOrFunctionOrValue) =
// is an abstract member
m.IsDispatchSlot
// this member doesn't implement anything
&& (try m.ImplementedAbstractSignatures <> null && m.ImplementedAbstractSignatures.Count = 0 with _ -> true) // exceptions here trying to acces the member means we're safe
// this member is not an override
&& not m.IsOverrideOrExplicitInterfaceImplementation
"""
config
|> prepend newline
|> should
equal
"""
let isAbstractNonVirtualMember (m: FSharpMemberOrFunctionOrValue) =
// is an abstract member
m.IsDispatchSlot
// this member doesn't implement anything
&& (try
m.ImplementedAbstractSignatures <> null
&& m.ImplementedAbstractSignatures.Count = 0
with _ ->
true) // exceptions here trying to acces the member means we're safe
// this member is not an override
&& not m.IsOverrideOrExplicitInterfaceImplementation
"""
[<Test>]
let ``try/with with a single clause, 1881`` () =
formatSourceString
"""
// OK
try
persistState currentState
with ex ->
printfn "Something went wrong: %A" ex
// OK
try
persistState currentState
with :? System.ApplicationException as ex ->
printfn "Something went wrong: %A" ex