forked from fsprojects/fantomas
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLambdaTests.fs
1433 lines (1342 loc) · 35.3 KB
/
LambdaTests.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.LambdaTests
open NUnit.Framework
open FsUnit
open Fantomas.Core.Tests.TestHelpers
open Fantomas.Core
[<Test>]
let ``keep comment after arrow`` () =
formatSourceString
"""_Target "FSharpTypesDotNet" (fun _ -> // obsolete
())
"""
{ config with
IndentSize = 2
MaxLineLength = 90 }
|> prepend newline
|> should
equal
"""
_Target "FSharpTypesDotNet" (fun _ -> // obsolete
())
"""
let ``indent multiline lambda in parenthesis, 523`` () =
formatSourceString
"""let square = (fun b ->
b*b
prinftn "%i" b*b
)
"""
config
|> prepend newline
|> should
equal
"""
let square =
(fun b ->
b * b
prinftn "%i" b * b)
"""
[<Test>]
let ``lambda inside tupled argument`` () =
formatSourceString
"""#load "../../.paket/load/netstandard2.0/main.group.fsx"
#load "../../src/Common.fs"
#load "../../src/Badge.fs"
open Fable.Core.JsInterop
open Fable.React
open Fable.React.Props
open Reactstrap
let private badgeSample =
FunctionComponent.Of<obj>
((fun _ ->
fragment []
[ h3 []
[ str "Heading "
Badge.badge [ Badge.Color Secondary ] [ str "New" ] ]
Badge.badge [ Badge.Color Warning ] [ str "oh my" ]]), "BadgeSample")
exportDefault badgeSample
"""
{ config with MaxArrayOrListWidth = 40 }
|> prepend newline
|> should
equal
"""
#load "../../.paket/load/netstandard2.0/main.group.fsx"
#load "../../src/Common.fs"
#load "../../src/Badge.fs"
open Fable.Core.JsInterop
open Fable.React
open Fable.React.Props
open Reactstrap
let private badgeSample =
FunctionComponent.Of<obj>(
(fun _ ->
fragment
[]
[ h3
[]
[ str "Heading "
Badge.badge [ Badge.Color Secondary ] [ str "New" ] ]
Badge.badge [ Badge.Color Warning ] [ str "oh my" ] ]),
"BadgeSample"
)
exportDefault badgeSample
"""
[<Test>]
let ``long identifier inside lambda`` () =
formatSourceString
"""
let a =
b
|> List.exists (fun p ->
x && someVeryLongIdentifierrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrzzzz___________)
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
let a =
b
|> List.exists (fun p ->
x
&& someVeryLongIdentifierrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrzzzz___________)
"""
[<Test>]
let ``FAKE target`` () =
formatSourceString
"""
Target.create "Clean" (fun _ ->
[ "bin"
"src/Fantomas/bin"
"src/Fantomas/obj"
"src/Fantomas.CoreGlobalTool/bin"
"src/Fantomas.CoreGlobalTool/obj" ]
|> List.iter Shell.cleanDir
)
"""
config
|> prepend newline
|> should
equal
"""
Target.create "Clean" (fun _ ->
[ "bin"
"src/Fantomas/bin"
"src/Fantomas/obj"
"src/Fantomas.CoreGlobalTool/bin"
"src/Fantomas.CoreGlobalTool/obj" ]
|> List.iter Shell.cleanDir)
"""
[<Test>]
let ``destructed argument lamba`` () =
formatSourceString
"""
List.filter (fun ({ ContentBefore = contentBefore }) ->
// some comment
let a = 8
let b = List.length contentBefore
a + b)
"""
config
|> prepend newline
|> should
equal
"""
List.filter (fun ({ ContentBefore = contentBefore }) ->
// some comment
let a = 8
let b = List.length contentBefore
a + b)
"""
[<Test>]
let ``destructed argument lamba in let binding`` () =
formatSourceString
"""
let a =
(fun ({ ContentBefore = contentBefore }) ->
// some comment
let a = 8
let b = List.length contentBefore
a + b)
"""
config
|> prepend newline
|> should
equal
"""
let a =
(fun ({ ContentBefore = contentBefore }) ->
// some comment
let a = 8
let b = List.length contentBefore
a + b)
"""
[<Test>]
let ``indent when identifier is smaller than ident size`` () =
formatSourceString
"""
foo (fun a ->
let b = 8
b)
"""
config
|> prepend newline
|> should
equal
"""
foo (fun a ->
let b = 8
b)
"""
[<Test>]
let ``short ident in nested let binding`` () =
formatSourceString
"""let a =
foo (fun a ->
let b = 8
b)
"""
{ config with IndentSize = 2 }
|> prepend newline
|> should
equal
"""
let a =
foo (fun a ->
let b = 8
b)
"""
[<Test>]
let ``longer ident in nested let binding`` () =
formatSourceString
"""let a =
foobar (fun a ->
let b = 8
b)
"""
config
|> prepend newline
|> should
equal
"""
let a =
foobar (fun a ->
let b = 8
b)
"""
[<Test>]
let ``multiple braces should add indent`` () =
formatSourceString
"""((((fun () ->
printfn "meh"
()))))
"""
config
|> prepend newline
|> should
equal
"""
((((fun () ->
printfn "meh"
()))))
"""
[<Test>]
let ``add space after chained ident, 676`` () =
formatSourceString """let foo = Foo(fun () -> Foo.Create x).Value""" config
|> prepend newline
|> should
equal
"""
let foo = Foo(fun () -> Foo.Create x).Value
"""
[<Test>]
let ``line comment after lambda should not necessary make it multiline`` () =
formatSourceString
"""let a = fun _ -> div [] [] // React.lazy is not compatible with SSR, so just use an empty div
"""
{ config with
MaxFunctionBindingWidth = 150 }
|> prepend newline
|> should
equal
"""
let a = fun _ -> div [] [] // React.lazy is not compatible with SSR, so just use an empty div
"""
[<Test>]
let ``multiline let binding in lambda`` () =
formatSourceString
"""
CloudStorageAccount.SetConfigurationSettingPublisher(fun configName configSettingPublisher ->
let connectionString =
if hostedService then RoleEnvironment.GetConfigurationSettingValue(configName)
else ConfigurationManager.ConnectionStrings.[configName].ConnectionString
configSettingPublisher.Invoke(connectionString) |> ignore)
"""
{ config with
MaxDotGetExpressionWidth = 50
MaxInfixOperatorExpression = 50 }
|> prepend newline
|> should
equal
"""
CloudStorageAccount.SetConfigurationSettingPublisher(fun configName configSettingPublisher ->
let connectionString =
if hostedService then
RoleEnvironment.GetConfigurationSettingValue(configName)
else
ConfigurationManager.ConnectionStrings.[configName].ConnectionString
configSettingPublisher.Invoke(connectionString)
|> ignore)
"""
[<Test>]
let ``line comment after arrow should not introduce additional newline, 772`` () =
formatSourceString
"""let genMemberFlagsForMemberBinding astContext (mf: MemberFlags) (rangeOfBindingAndRhs: range) =
fun ctx ->
match mf with
| MFOverride _ ->
(fun (ctx: Context) -> // trying to get AST trivia
ctx.Trivia
|> List.tryFind (fun { Type = t; Range = r } -> // trying to get token trivia
match t with
| MainNode "SynMemberDefn.Member" -> RangeHelpers.``range contains`` r rangeOfBindingAndRhs
| Token { TokenInfo = { TokenName = "MEMBER" } } -> r.StartLine = rangeOfBindingAndRhs.StartLine
| _ -> false)
|> Option.defaultValue (!- "override ")
<| ctx)
<| ctx
"""
config
|> prepend newline
|> should
equal
"""
let genMemberFlagsForMemberBinding astContext (mf: MemberFlags) (rangeOfBindingAndRhs: range) =
fun ctx ->
match mf with
| MFOverride _ ->
(fun (ctx: Context) -> // trying to get AST trivia
ctx.Trivia
|> List.tryFind (fun { Type = t; Range = r } -> // trying to get token trivia
match t with
| MainNode "SynMemberDefn.Member" -> RangeHelpers.``range contains`` r rangeOfBindingAndRhs
| Token { TokenInfo = { TokenName = "MEMBER" } } -> r.StartLine = rangeOfBindingAndRhs.StartLine
| _ -> false)
|> Option.defaultValue (!-"override ")
<| ctx)
<| ctx
"""
[<Test>]
let ``line comment after arrow should not introduce extra newline`` () =
formatSourceString
"""
List.tryFind (fun { Type = t; Range = r } -> // foo
let a = 8
a + 9)
"""
config
|> prepend newline
|> should
equal
"""
List.tryFind (fun { Type = t; Range = r } -> // foo
let a = 8
a + 9)
"""
[<Test>]
let ``lambda body should be indented far enough, 870`` () =
formatSourceString
"""
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState -> eventEnvelope.Event |> projection.Update projectionState
|> fun newState -> state |> Map.add eventEnvelope.Metadata.Source newState
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState ->
eventEnvelope.Event
|> projection.Update projectionState
|> fun newState ->
state
|> Map.add eventEnvelope.Metadata.Source newState
"""
{ config with
IndentSize = 2
SpaceBeforeUppercaseInvocation = true
SpaceBeforeColon = true
SpaceAfterComma = false
SpaceAroundDelimiter = false
MaxInfixOperatorExpression = 40
MaxFunctionBindingWidth = 60
MultilineBracketStyle = Aligned }
|> prepend newline
|> should
equal
"""
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState ->
eventEnvelope.Event
|> projection.Update projectionState
|> fun newState ->
state
|> Map.add eventEnvelope.Metadata.Source newState
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState ->
eventEnvelope.Event
|> projection.Update projectionState
|> fun newState ->
state
|> Map.add eventEnvelope.Metadata.Source newState
"""
[<Test>]
let ``lambda body should not get an additional indent when the indent_size is large enough`` () =
formatSourceString
"""
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState -> eventEnvelope.Event |> projection.Update projectionState
|> fun newState -> state |> Map.add eventEnvelope.Metadata.Source newState
"""
{ config with MaxLineLength = 60 }
|> prepend newline
|> should
equal
"""
let projectIntoMap projection =
fun state eventEnvelope ->
state
|> Map.tryFind eventEnvelope.Metadata.Source
|> Option.defaultValue projection.Init
|> fun projectionState ->
eventEnvelope.Event
|> projection.Update projectionState
|> fun newState ->
state
|> Map.add
eventEnvelope.Metadata.Source
newState
"""
[<Test>]
let ``don't duplicate new line before LongIdentSet`` () =
formatSourceString
"""
let options =
jsOptions<Vis.Options> (fun o ->
let layout =
match opts.Layout with
| Graph.Free -> createObj []
| Graph.HierarchicalLeftRight -> createObj [ "hierarchical" ==> hierOpts "LR" ]
| Graph.HierarchicalUpDown -> createObj [ "hierarchical" ==> hierOpts "UD" ]
o.layout <- Some layout)
"""
{ config with
MaxValueBindingWidth = 50
MaxFunctionBindingWidth = 50 }
|> prepend newline
|> should
equal
"""
let options =
jsOptions<Vis.Options> (fun o ->
let layout =
match opts.Layout with
| Graph.Free -> createObj []
| Graph.HierarchicalLeftRight -> createObj [ "hierarchical" ==> hierOpts "LR" ]
| Graph.HierarchicalUpDown -> createObj [ "hierarchical" ==> hierOpts "UD" ]
o.layout <- Some layout)
"""
[<Test>]
let ``don't print unrelated trivia after closing parenthesis of lambda, 1084`` () =
formatSourceString
"""
let private tokenizeLines (sourceTokenizer: FSharpSourceTokenizer) allLines state =
allLines
|> List.mapi (fun index line -> line, (index + 1)) // line number is needed in tokenizeLine
|> List.fold (fun (state, tokens) (line, lineNumber) ->
let tokenizer = sourceTokenizer.CreateLineTokenizer(line)
let nextState, tokensOfLine =
tokenizeLine tokenizer allLines state lineNumber []
let allTokens = List.append tokens (List.rev tokensOfLine) // tokens of line are add in reversed order
(nextState, allTokens)
) (state, []) // empty tokens to start with
|> snd // ignore the state
"""
config
|> prepend newline
|> should
equal
"""
let private tokenizeLines (sourceTokenizer: FSharpSourceTokenizer) allLines state =
allLines
|> List.mapi (fun index line -> line, (index + 1)) // line number is needed in tokenizeLine
|> List.fold
(fun (state, tokens) (line, lineNumber) ->
let tokenizer = sourceTokenizer.CreateLineTokenizer(line)
let nextState, tokensOfLine = tokenizeLine tokenizer allLines state lineNumber []
let allTokens = List.append tokens (List.rev tokensOfLine) // tokens of line are add in reversed order
(nextState, allTokens))
(state, []) // empty tokens to start with
|> snd // ignore the state
"""
[<Test>]
let ``trivia before closing parenthesis of desugared lambda, 1146`` () =
formatSourceString
"""
Target.create "Install" (fun _ ->
Yarn.install (fun o -> { o with WorkingDirectory = clientDir })
// Paket restore will already happen when the build.fsx dependencies are restored
)
"""
config
|> prepend newline
|> should
equal
"""
Target.create "Install" (fun _ -> Yarn.install (fun o -> { o with WorkingDirectory = clientDir })
// Paket restore will already happen when the build.fsx dependencies are restored
)
"""
[<Test>]
let ``trivia before closing parenthesis of lambda`` () =
formatSourceString
"""
Target.create "Install" (fun x ->
Yarn.install (fun o -> { o with WorkingDirectory = clientDir })
// Paket restore will already happen when the build.fsx dependencies are restored
)
"""
config
|> prepend newline
|> should
equal
"""
Target.create "Install" (fun x -> Yarn.install (fun o -> { o with WorkingDirectory = clientDir })
// Paket restore will already happen when the build.fsx dependencies are restored
)
"""
[<Test>]
let ``function call with two lambda arguments, 1164`` () =
formatSourceString
"""
let init =
addDateTimeConverter
(fun dt -> Date(dt.Year, dt.Month, dt.Day))
(fun (Date (y, m, d)) ->
System.DateTime(y, m, d))
"""
{ config with MaxLineLength = 85 }
|> prepend newline
|> should
equal
"""
let init =
addDateTimeConverter
(fun dt -> Date(dt.Year, dt.Month, dt.Day))
(fun (Date(y, m, d)) -> System.DateTime(y, m, d))
"""
[<Test>]
let ``function call with two lambdas and three other arguments`` () =
formatSourceString
"""
SettingControls.toggleButton (fun _ ->
UpdateOption(key, MultilineFormatterTypeOption(o, key, "character_width"))
|> dispatch) (fun _ ->
UpdateOption(key, MultilineFormatterTypeOption(o, key, "number_of_items"))
|> dispatch) "CharacterWidth" "NumberOfItems" key (v = "character_width")
"""
config
|> prepend newline
|> should
equal
"""
SettingControls.toggleButton
(fun _ ->
UpdateOption(key, MultilineFormatterTypeOption(o, key, "character_width"))
|> dispatch)
(fun _ ->
UpdateOption(key, MultilineFormatterTypeOption(o, key, "number_of_items"))
|> dispatch)
"CharacterWidth"
"NumberOfItems"
key
(v = "character_width")
"""
[<Test>]
let ``lambda should be on the next line, 1201`` () =
formatSourceString
"""
let printListWithOffset a list1 =
List.iter
(fun elem -> printfn "%d" (a + elem))
list1
// OK if lambda body is long enough
let printListWithOffset a list1 =
List.iter
(fun elem ->
// OK if lambda body is long enough
printfn "%d" (a + elem))
list1
"""
config
|> prepend newline
|> should
equal
"""
let printListWithOffset a list1 =
List.iter (fun elem -> printfn "%d" (a + elem)) list1
// OK if lambda body is long enough
let printListWithOffset a list1 =
List.iter
(fun elem ->
// OK if lambda body is long enough
printfn "%d" (a + elem))
list1
"""
[<Test>]
let ``Thoth.Json decoder, 685`` () =
formatSourceString
"""
Decode.map3 (fun aggregateId event commitPayload ->
match commitPayload with
| Some payload ->
Some
{ AggregateId = AggregateId aggregateId
Event = event
Payload = payload }
| None -> None) (Decode.field "aggregate_id" Decode.string) (Decode.field "event" Decode.string) decodePayload
"""
config
|> prepend newline
|> should
equal
"""
Decode.map3
(fun aggregateId event commitPayload ->
match commitPayload with
| Some payload ->
Some
{ AggregateId = AggregateId aggregateId
Event = event
Payload = payload }
| None -> None)
(Decode.field "aggregate_id" Decode.string)
(Decode.field "event" Decode.string)
decodePayload
"""
[<Test>]
let ``add extra indent in fluent api, 970`` () =
formatSourceString
"""
services.AddAuthentication(fun options ->
options.DefaultScheme <- "Cookies"
options.DefaultChallengeScheme <- "oidc").AddCookie("Cookies")
.AddOpenIdConnect(fun options ->
options.Authority <- "http://localhost:7001"
options.ClientId <- "mvc"
options.ClientSecret <- "secret"
options.ResponseType <- "code"
options.SaveTokens <- true)
"""
config
|> prepend newline
|> should
equal
"""
services
.AddAuthentication(fun options ->
options.DefaultScheme <- "Cookies"
options.DefaultChallengeScheme <- "oidc")
.AddCookie("Cookies")
.AddOpenIdConnect(fun options ->
options.Authority <- "http://localhost:7001"
options.ClientId <- "mvc"
options.ClientSecret <- "secret"
options.ResponseType <- "code"
options.SaveTokens <- true)
"""
[<Test>]
let ``correctly indent nested lambda inside fluent api`` () =
formatSourceString
"""
services.AddHttpsRedirection(Action<HttpsRedirectionOptions>(fun options ->
// meh
options.HttpsPort <- Nullable(7002)
)) |> ignore
"""
{ config with MaxLineLength = 60 }
|> prepend newline
|> should
equal
"""
services.AddHttpsRedirection(
Action<HttpsRedirectionOptions>(fun options ->
// meh
options.HttpsPort <- Nullable(7002))
)
|> ignore
"""
[<Test>]
let ``comment between opening parenthesis and lambda, 1190`` () =
formatSourceString
"""
(
(* comment before gets swallowed *)
fun x -> x * 42
)
(
fun x -> x * 42
(* comment after is OK *)
)
( (* comment on first line is OK too *)
fun x -> x * 42
)
"""
config
|> prepend newline
|> should
equal
"""
(
(* comment before gets swallowed *)
fun x -> x * 42)
(fun x -> x * 42
(* comment after is OK *)
)
( (* comment on first line is OK too *) fun x -> x * 42)
"""
[<Test>]
let ``desugared union case, 1631`` () =
formatSourceString
"""
col
(fun (ArgInfo (ats, so, isOpt), t) -> sepNone)
"""
config
|> prepend newline
|> should
equal
"""
col (fun (ArgInfo(ats, so, isOpt), t) -> sepNone)
"""
[<Test>]
let ``two wild args`` () =
formatSourceString
"""
fun _ _ -> ()
"""
config
|> prepend newline
|> should
equal
"""
fun _ _ -> ()
"""
[<Test>]
let ``lambda argument in multiline function application, 1028`` () =
formatSourceString
"""
module Lifecycle =
let init config =
async {
cfg <- config
do!
MassTransit.init
cfg.LoggerFactory cfg.AzureServiceBusConnStr cfg.QueueName cfg.LoggerFactory
(fun reg ->
reg.Consume User.handleUserInitiatedRegistration
reg.Consume User.handleUserUpdated
reg.Consume User.handleGetSessionUserIdRequest
)
}
"""
config
|> prepend newline
|> should
equal
"""
module Lifecycle =
let init config =
async {
cfg <- config
do!
MassTransit.init
cfg.LoggerFactory
cfg.AzureServiceBusConnStr
cfg.QueueName
cfg.LoggerFactory
(fun reg ->
reg.Consume User.handleUserInitiatedRegistration
reg.Consume User.handleUserUpdated
reg.Consume User.handleGetSessionUserIdRequest)
}
"""
[<Test>]
let ``return lambda from lambda, 1782`` () =
formatSourceString
"""
let x =
fun _ ->
fun _ -> "hello"
"""
config
|> prepend newline
|> should
equal
"""
let x = fun _ -> fun _ -> "hello"
"""
[<Test>]
let ``wild card parameters in lambda, 1789`` () =
formatSourceString
"""
let elifs =
es
|> List.collect (fun (e1, e2, _, _, _) -> [ visit e1; visit e2 ])
"""
{ config with
MaxInfixOperatorExpression = 50 }
|> prepend newline
|> should
equal
"""
let elifs =
es
|> List.collect (fun (e1, e2, _, _, _) -> [ visit e1; visit e2 ])
"""
[<Test>]
let ``leading and trailing wild card parameters in lambda`` () =
formatSourceString
"""
List.map (fun (_, _, _, _, body, _) -> visit body) andBangs
"""
config
|> prepend newline
|> should
equal
"""
List.map (fun (_, _, _, _, body, _) -> visit body) andBangs
"""
[<Test>]
let ``multiple parameters with wild cards, 1806`` () =
formatSourceString
"""
module Foo =
let bar () =
{
Foo =
blah
|> Struct.map (fun _ (a, _, _) -> filterBackings a)
}
"""
{ config with
MaxInfixOperatorExpression = 50 }
|> prepend newline
|> should
equal
"""
module Foo =
let bar () =
{ Foo =
blah
|> Struct.map (fun _ (a, _, _) -> filterBackings a) }
"""
[<Test>]
let ``multiline SynExpr.MatchLambda`` () =
formatSourceString
"""
module Foo =
let bar =
[]
|> List.choose
(function
| _ -> "")
"""
config
|> prepend newline
|> should
equal
"""
module Foo =
let bar =
[]
|> List.choose (function
| _ -> "")
"""
[<Test>]
let ``long function application ending in with lambda argument`` () =
formatSourceString
"""
let foobar =
someFunctionName aFirstLongArgument aSecondLongArgument aThirdLongArgument aFourthLongArgument (fun finallyThatLambdaArgument ->
aFirstLongArgument + aSecondLongArgument - aThirdLongArgument - aFourthLongArgument + finallyThatLambdaArgument)
let somethingElse = ()
"""
config
|> prepend newline
|> should
equal
"""
let foobar =
someFunctionName
aFirstLongArgument
aSecondLongArgument
aThirdLongArgument
aFourthLongArgument
(fun finallyThatLambdaArgument ->
aFirstLongArgument + aSecondLongArgument
- aThirdLongArgument
- aFourthLongArgument
+ finallyThatLambdaArgument)
let somethingElse = ()
"""
[<Test>]
let ``multiline non lambda argument`` () =
formatSourceString
"""
let argExpr =
col sepNln es (fun e ->
let genLambda
(pats: Context -> Context)
(bodyExpr: SynExpr)
(lpr: Range)
(rpr: Range option)
(arrowRange: Range)
(pr: Range)
: Context -> Context =
leadingExpressionIsMultiline (sepOpenTFor lpr -- "fun "
+> pats
+> genArrowWithTrivia