forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignatureTests.fs
1886 lines (1599 loc) · 45.5 KB
/
SignatureTests.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.Tests.SignatureTests
open NUnit.Framework
open FsUnit
open Fantomas.Tests.TestHelper
// the current behavior results in a compile error since "(string * string) list" is converted to "string * string list"
[<Test>]
let ``should keep the (string * string) list type signature in records`` () =
formatSourceString
false
"""type MSBuildParams =
{ Targets : string list
Properties : (string * string) list
MaxCpuCount : int option option
ToolsVersion : string option
Verbosity : MSBuildVerbosity option
FileLoggers : MSBuildFileLoggerConfig list option }
"""
config
|> should
equal
"""type MSBuildParams =
{ Targets: string list
Properties: (string * string) list
MaxCpuCount: int option option
ToolsVersion: string option
Verbosity: MSBuildVerbosity option
FileLoggers: MSBuildFileLoggerConfig list option }
"""
[<Test>]
let ``should keep the (string * string) list type signature in functions`` () =
shouldNotChangeAfterFormat
"""
let MSBuildWithProjectProperties outputPath (targets: string) (properties: string -> (string * string) list) projects =
doingsomstuff
"""
[<Test>]
let ``should keep the string * string list type signature in functions`` () =
shouldNotChangeAfterFormat
"""
let MSBuildWithProjectProperties outputPath (targets: string) (properties: (string -> string) * string list) projects =
doingsomstuff
"""
[<Test>]
let ``should not add parens in signature`` () =
formatSourceString
false
"""type Route =
{ Verb : string
Path : string
Handler : Map<string, string> -> HttpListenerContext -> string }
override x.ToString() = sprintf "%s %s" x.Verb x.Path
"""
{ config with MaxFunctionBindingWidth = 120 }
|> should
equal
"""type Route =
{ Verb: string
Path: string
Handler: Map<string, string> -> HttpListenerContext -> string }
override x.ToString() = sprintf "%s %s" x.Verb x.Path
"""
[<Test>]
let ``should keep the string * string * string option type signature`` () =
formatSourceString
false
"""type DGML =
| Node of string
| Link of string * string * (string option)
"""
config
|> should
equal
"""type DGML =
| Node of string
| Link of string * string * (string option)
"""
[<Test>]
let ``should keep the (string option * Node) list type signature`` () =
formatSourceString
false
"""type Node =
{ Name : string;
NextNodes : (string option * Node) list }
"""
{ config with SemicolonAtEndOfLine = true }
|> should
equal
"""type Node =
{ Name: string;
NextNodes: (string option * Node) list }
"""
[<Test>]
let ``should keep parentheses on the left of type signatures`` () =
formatSourceString
false
"""type IA =
abstract F: (unit -> Option<'T>) -> Option<'T>
type A () =
interface IA with
member x.F (f: unit -> _) = f ()
"""
config
|> prepend newline
|> should
equal
"""
type IA =
abstract F: (unit -> Option<'T>) -> Option<'T>
type A() =
interface IA with
member x.F(f: unit -> _) = f ()
"""
[<Test>]
let ``should not add parentheses around bare tuples`` () =
formatSourceString
true
"""
namespace TupleType
type C =
member P1 : int * string
/// def
member P2 : int
"""
config
|> prepend newline
|> should
equal
"""
namespace TupleType
type C =
member P1: int * string
/// def
member P2: int
"""
[<Test>]
let ``should keep global constraints in type signature`` () =
formatSourceString
true
"""
module Tainted
val GetHashCodeTainted : (Tainted<'T> -> int) when 'T : equality
"""
config
|> prepend newline
|> should
equal
"""
module Tainted
val GetHashCodeTainted: (Tainted<'T> -> int) when 'T: equality
"""
[<Test>]
let ``should keep mutable in type signature, 1954`` () =
formatSourceString
true
"""
module Tainted
val mutable showParserStackOnParseError: bool
"""
config
|> prepend newline
|> should
equal
"""
module Tainted
val mutable showParserStackOnParseError: bool
"""
[<Test>]
let ``should keep access modifiers in signatures seperated`` () =
formatSourceString
true
"""
module Test
type Test =
static member internal FormatAroundCursorAsync : fileName:string -> unit
"""
config
|> prepend newline
|> should
equal
"""
module Test
type Test =
static member internal FormatAroundCursorAsync: fileName: string -> unit
"""
[<Test>]
let ``comment should stay above type`` () =
formatSourceString
true
"""namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
"""
config
|> prepend newline
|> should
equal
"""
namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
"""
[<Test>]
let ``comment before namespace should be preserved`` () =
formatSourceString
true
"""
// some comment
namespace TypeEquality
type Teq<'a, 'b>
"""
config
|> prepend newline
|> should
equal
"""
// some comment
namespace TypeEquality
type Teq<'a, 'b>
"""
[<Test>]
let ``generic val in nested module should keep generic type parameters`` () =
formatSourceString
true
"""namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
/// Module for creating and using type equalities, primarily useful for Generalised Algebraic Data Types (GADTs)
/// Invariant: If you use this module (without reflection shenanigans) and the
/// code builds, it will be correct.
[<RequireQualifiedAccess>]
module Teq =
/// The single constructor for Teq - witnesses equality between 'a and 'a
/// It would be nice to accept any isomorphism (i.e. 1-1 mapping between
/// values, but Refl is the only provably correct constructor we can create
/// in F#, so we choose soundness over completeness here).
val refl<'a> : Teq<'a, 'a>
"""
config
|> prepend newline
|> should
equal
"""
namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
/// Module for creating and using type equalities, primarily useful for Generalised Algebraic Data Types (GADTs)
/// Invariant: If you use this module (without reflection shenanigans) and the
/// code builds, it will be correct.
[<RequireQualifiedAccess>]
module Teq =
/// The single constructor for Teq - witnesses equality between 'a and 'a
/// It would be nice to accept any isomorphism (i.e. 1-1 mapping between
/// values, but Refl is the only provably correct constructor we can create
/// in F#, so we choose soundness over completeness here).
val refl<'a> : Teq<'a, 'a>
"""
[<Test>]
let ``don't duplicate newline between type and module`` () =
formatSourceString
true
"""namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
/// Module for creating and using type equalities, primarily useful for Generalised Algebraic Data Types (GADTs)
/// Invariant: If you use this module (without reflection shenanigans) and the
/// code builds, it will be correct.
[<RequireQualifiedAccess>]
module Teq =
/// The single constructor for Teq - witnesses equality between 'a and 'a
/// It would be nice to accept any isomorphism (i.e. 1-1 mapping between
/// values, but Refl is the only provably correct constructor we can create
/// in F#, so we choose soundness over completeness here).
val refl<'a> : Teq<'a, 'a>
/// Returns a Teq when the two type parameters have the same value,
/// otherwise returns None.
val tryRefl<'a, 'b> : Teq<'a, 'b> option
/// Order isn't important
/// a = b => b = a
/// If you always do this followed by a cast, you may as well just use castFrom
val symmetry: Teq<'a, 'b> -> Teq<'b, 'a>
/// Let's compose two type-equalities: a = b && b = c => a = c
val transitivity: Teq<'a, 'b> -> Teq<'b, 'c> -> Teq<'a, 'c>
/// Converts an 'a to a 'b
val cast: Teq<'a, 'b> -> ('a -> 'b)
/// Converts an 'a to a 'b
/// Alias for cast
val castTo: Teq<'a, 'b> -> ('a -> 'b)
/// Converts a 'b to an 'a
/// Equivalent to symmetry >> cast, but more efficient
val castFrom: Teq<'a, 'b> -> ('b -> 'a)
/// Utility function to map an object of one type using a mapping function
/// for a different type when we have a type equality between the two types
val mapAs: Teq<'a, 'b> -> ('b -> 'b) -> 'a -> 'a
/// The Cong module (short for congruence) contains functions that
/// allow you safely transform Teqs into other Teqs that logically follow.
///
/// Congruence: if x = y then f x = f y
/// From a type-level perspective, this means, for example,
/// iff 'a = 'b, then 'a list = 'b list.
///
/// We do the munging below since we don't have type-level functions, so there
/// is no such thing as, for example, Teq.cong List, to raise a
/// Teq<'a, 'b> to a Teq<'a list, 'b list>. Instead we must create a function for
/// any functor (wrapping type) we might want, e.g. list, option, array.
///
/// More efficient than mapping the application of the teq across the functor.
/// i.e. Use Teq.Cong.list in preference to List.map (Teq.cast)
///
/// If you need to make your own Teq.Cong.foo for your own functor 'Foo<_>' using believeMe,
/// then the onus is on you to verify that doing that is sane.
[<RequireQualifiedAccess>]
module Cong =
/// Clearly unsafe in general, but safe if we know 'a = 'b (which the Teq proves),
/// and that there is some f such that f 'a = 'a2 = f 'b = 'b2, which we assume (and
/// this assumption is why we don't make this public). Examples of valid values for
/// f include list, array and option.
val believeMe<'a, 'b, 'a2, 'b2> : Teq<'a, 'b> -> Teq<'a2, 'b2>
/// Given a type equality between two types, returns the type equality on the corresponding array types.
val array<'a, 'b> : Teq<'a, 'b> -> Teq<'a array, 'b array>
/// Given a type equality between two array types, returns the type equality on the corresponding element types.
val arrayOf<'a, 'b> : Teq<'a array, 'b array> -> Teq<'a, 'b>
/// Given a type equality between two types, returns the type equality on the corresponding list types.
val list<'a, 'b> : Teq<'a, 'b> -> Teq<'a list, 'b list>
/// Given a type equality between two list types, returns the type equality on the corresponding element types.
val listOf<'a, 'b> : Teq<'a list, 'b list> -> Teq<'a, 'b>
/// Given a type equality between two types, returns the type equality on the corresponding option types.
val option<'a, 'b> : Teq<'a, 'b> -> Teq<'a option, 'b option>
/// Given a type equality between two option types, returns the type equality on the corresponding element types.
val optionOf<'a, 'b> : Teq<'a option, 'b option> -> Teq<'a, 'b>
/// Given a type equality between two types 'domain1 and 'domain2, returns the type equality
/// on the function types ('domain1 -> 'range) and ('domain2 -> 'range), for any arbitrary 'range.
val domain<'domain1, 'domain2, 'range> : Teq<'domain1, 'domain2> -> Teq<'domain1 -> 'range, 'domain2 -> 'range>
/// Given a type equality between two function types, returns the type equality on their corresponding domains.
val domainOf<'domain1, 'domain2, 'range1, 'range2> : Teq<'domain1 -> 'range1, 'domain2 -> 'range2> -> Teq<'domain1, 'domain2>
/// Given a type equality between two types 'range1 and 'range2, returns the type equality
/// on the function types ('domain -> 'range1) and ('domain -> 'range2), for any arbitrary 'domain.
val range<'domain, 'range1, 'range2> : Teq<'range1, 'range2> -> Teq<'domain -> 'range1, 'domain -> 'range2>
/// Given a type equality between two function types, returns the type equality on their corresponding ranges.
val rangeOf<'domain1, 'domain2, 'range1, 'range2> : Teq<'domain1 -> 'range1, 'domain2 -> 'range2> -> Teq<'range1, 'range2>
/// Given a pair of type equalities, one for domains and one for ranges, returns the type equality for the corresponding function types.
val func<'domain1, 'range1, 'domain2, 'range2> : Teq<'domain1, 'domain2> -> Teq<'range1, 'range2> -> Teq<'domain1 -> 'range1, 'domain2 -> 'range2>
/// Given a type equality between two types 'fst1 and 'fst2, returns the type equality
/// on the pair types ('fst1 * 'snd) and ('fst2 * 'snd), for any arbitrary 'snd.
val fst<'fst1, 'fst2, 'snd> : Teq<'fst1, 'fst2> -> Teq<'fst1 * 'snd, 'fst2 * 'snd>
/// Given a type equality between two types 'snd1 and 'snd2, returns the type equality
/// on the pair types ('fst * 'snd1) and ('fst * 'snd2), for any arbitrary 'fst.
val snd<'snd1, 'snd2, 'fst> : Teq<'snd1, 'snd2> -> Teq<'fst * 'snd1, 'fst * 'snd2>
/// Given a pair of type equalities, one for the first element of a pair and one for the second element of a pair,
/// returns the type equality for the corresponding pair types.
val pair<'fst1, 'snd1, 'fst2, 'snd2> : Teq<'fst1, 'fst2> -> Teq<'snd1, 'snd2> -> Teq<'fst1 * 'snd1, 'fst2 * 'snd2>
"""
config
|> prepend newline
|> should
equal
"""
namespace TypeEquality
/// A type for witnessing type equality between 'a and 'b
type Teq<'a, 'b>
/// Module for creating and using type equalities, primarily useful for Generalised Algebraic Data Types (GADTs)
/// Invariant: If you use this module (without reflection shenanigans) and the
/// code builds, it will be correct.
[<RequireQualifiedAccess>]
module Teq =
/// The single constructor for Teq - witnesses equality between 'a and 'a
/// It would be nice to accept any isomorphism (i.e. 1-1 mapping between
/// values, but Refl is the only provably correct constructor we can create
/// in F#, so we choose soundness over completeness here).
val refl<'a> : Teq<'a, 'a>
/// Returns a Teq when the two type parameters have the same value,
/// otherwise returns None.
val tryRefl<'a, 'b> : Teq<'a, 'b> option
/// Order isn't important
/// a = b => b = a
/// If you always do this followed by a cast, you may as well just use castFrom
val symmetry: Teq<'a, 'b> -> Teq<'b, 'a>
/// Let's compose two type-equalities: a = b && b = c => a = c
val transitivity: Teq<'a, 'b> -> Teq<'b, 'c> -> Teq<'a, 'c>
/// Converts an 'a to a 'b
val cast: Teq<'a, 'b> -> ('a -> 'b)
/// Converts an 'a to a 'b
/// Alias for cast
val castTo: Teq<'a, 'b> -> ('a -> 'b)
/// Converts a 'b to an 'a
/// Equivalent to symmetry >> cast, but more efficient
val castFrom: Teq<'a, 'b> -> ('b -> 'a)
/// Utility function to map an object of one type using a mapping function
/// for a different type when we have a type equality between the two types
val mapAs: Teq<'a, 'b> -> ('b -> 'b) -> 'a -> 'a
/// The Cong module (short for congruence) contains functions that
/// allow you safely transform Teqs into other Teqs that logically follow.
///
/// Congruence: if x = y then f x = f y
/// From a type-level perspective, this means, for example,
/// iff 'a = 'b, then 'a list = 'b list.
///
/// We do the munging below since we don't have type-level functions, so there
/// is no such thing as, for example, Teq.cong List, to raise a
/// Teq<'a, 'b> to a Teq<'a list, 'b list>. Instead we must create a function for
/// any functor (wrapping type) we might want, e.g. list, option, array.
///
/// More efficient than mapping the application of the teq across the functor.
/// i.e. Use Teq.Cong.list in preference to List.map (Teq.cast)
///
/// If you need to make your own Teq.Cong.foo for your own functor 'Foo<_>' using believeMe,
/// then the onus is on you to verify that doing that is sane.
[<RequireQualifiedAccess>]
module Cong =
/// Clearly unsafe in general, but safe if we know 'a = 'b (which the Teq proves),
/// and that there is some f such that f 'a = 'a2 = f 'b = 'b2, which we assume (and
/// this assumption is why we don't make this public). Examples of valid values for
/// f include list, array and option.
val believeMe<'a, 'b, 'a2, 'b2> : Teq<'a, 'b> -> Teq<'a2, 'b2>
/// Given a type equality between two types, returns the type equality on the corresponding array types.
val array<'a, 'b> : Teq<'a, 'b> -> Teq<'a array, 'b array>
/// Given a type equality between two array types, returns the type equality on the corresponding element types.
val arrayOf<'a, 'b> : Teq<'a array, 'b array> -> Teq<'a, 'b>
/// Given a type equality between two types, returns the type equality on the corresponding list types.
val list<'a, 'b> : Teq<'a, 'b> -> Teq<'a list, 'b list>
/// Given a type equality between two list types, returns the type equality on the corresponding element types.
val listOf<'a, 'b> : Teq<'a list, 'b list> -> Teq<'a, 'b>
/// Given a type equality between two types, returns the type equality on the corresponding option types.
val option<'a, 'b> : Teq<'a, 'b> -> Teq<'a option, 'b option>
/// Given a type equality between two option types, returns the type equality on the corresponding element types.
val optionOf<'a, 'b> : Teq<'a option, 'b option> -> Teq<'a, 'b>
/// Given a type equality between two types 'domain1 and 'domain2, returns the type equality
/// on the function types ('domain1 -> 'range) and ('domain2 -> 'range), for any arbitrary 'range.
val domain<'domain1, 'domain2, 'range> : Teq<'domain1, 'domain2> -> Teq<'domain1 -> 'range, 'domain2 -> 'range>
/// Given a type equality between two function types, returns the type equality on their corresponding domains.
val domainOf<'domain1, 'domain2, 'range1, 'range2> :
Teq<'domain1 -> 'range1, 'domain2 -> 'range2> -> Teq<'domain1, 'domain2>
/// Given a type equality between two types 'range1 and 'range2, returns the type equality
/// on the function types ('domain -> 'range1) and ('domain -> 'range2), for any arbitrary 'domain.
val range<'domain, 'range1, 'range2> : Teq<'range1, 'range2> -> Teq<'domain -> 'range1, 'domain -> 'range2>
/// Given a type equality between two function types, returns the type equality on their corresponding ranges.
val rangeOf<'domain1, 'domain2, 'range1, 'range2> :
Teq<'domain1 -> 'range1, 'domain2 -> 'range2> -> Teq<'range1, 'range2>
/// Given a pair of type equalities, one for domains and one for ranges, returns the type equality for the corresponding function types.
val func<'domain1, 'range1, 'domain2, 'range2> :
Teq<'domain1, 'domain2> -> Teq<'range1, 'range2> -> Teq<'domain1 -> 'range1, 'domain2 -> 'range2>
/// Given a type equality between two types 'fst1 and 'fst2, returns the type equality
/// on the pair types ('fst1 * 'snd) and ('fst2 * 'snd), for any arbitrary 'snd.
val fst<'fst1, 'fst2, 'snd> : Teq<'fst1, 'fst2> -> Teq<'fst1 * 'snd, 'fst2 * 'snd>
/// Given a type equality between two types 'snd1 and 'snd2, returns the type equality
/// on the pair types ('fst * 'snd1) and ('fst * 'snd2), for any arbitrary 'fst.
val snd<'snd1, 'snd2, 'fst> : Teq<'snd1, 'snd2> -> Teq<'fst * 'snd1, 'fst * 'snd2>
/// Given a pair of type equalities, one for the first element of a pair and one for the second element of a pair,
/// returns the type equality for the corresponding pair types.
val pair<'fst1, 'snd1, 'fst2, 'snd2> :
Teq<'fst1, 'fst2> -> Teq<'snd1, 'snd2> -> Teq<'fst1 * 'snd1, 'fst2 * 'snd2>
"""
[<Test>]
let ``intrinsic type extension member signature, 413`` () =
formatSourceString
true
"""namespace ExtensionParts
type T =
new: unit -> T
type T with
member Foo: int
"""
config
|> prepend newline
|> should
equal
"""
namespace ExtensionParts
type T =
new: unit -> T
type T with
member Foo: int
"""
[<Test>]
let ``comment above static member, 680`` () =
formatSourceString
true
"""
namespace Fantomas
open Fantomas.FormatConfig
open Fantomas.SourceOrigin
open FSharp.Compiler.Ast
open FSharp.Compiler.Range
open FSharp.Compiler.SourceCodeServices
[<Sealed>]
type CodeFormatter =
/// Parse a source string using given config
static member ParseAsync : fileName:string * source:SourceOrigin * parsingOptions: FSharpParsingOptions * checker:FSharpChecker -> Async<(ParsedInput * string list) array>
"""
config
|> prepend newline
|> should
equal
"""
namespace Fantomas
open Fantomas.FormatConfig
open Fantomas.SourceOrigin
open FSharp.Compiler.Ast
open FSharp.Compiler.Range
open FSharp.Compiler.SourceCodeServices
[<Sealed>]
type CodeFormatter =
/// Parse a source string using given config
static member ParseAsync:
fileName: string * source: SourceOrigin * parsingOptions: FSharpParsingOptions * checker: FSharpChecker ->
Async<(ParsedInput * string list) array>
"""
[<Test>]
let ``type restrictions, 797`` () =
formatSourceString
true
"""namespace Foo
type internal Foo2 =
abstract member Bar<'k> : unit -> unit when 'k : comparison
"""
config
|> prepend newline
|> should
equal
"""
namespace Foo
type internal Foo2 =
abstract member Bar<'k> : unit -> unit when 'k: comparison
"""
[<Test>]
let ``operator with constraint`` () =
formatSourceString
true
"""namespace Bar
val inline (.+.) : x : ^a Foo -> y : ^b Foo -> ^c Foo when (^a or ^b) : (static member (+) : ^a * ^b -> ^c)
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace Bar
val inline (.+.) : x : ^a Foo -> y : ^b Foo -> ^c Foo when (^a or ^b) : (static member (+) : ^a * ^b -> ^c)
"""
[<Test>]
let ``operator with named constraint`` () =
formatSourceString
true
"""namespace Bar
val inline (.+.) : x : ^a Foo -> y : ^b Foo -> z: ^c Foo when (^a or ^b) : (static member (+) : ^a * ^b -> ^c)
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace Bar
val inline (.+.) : x : ^a Foo -> y : ^b Foo -> z : ^c Foo when (^a or ^b) : (static member (+) : ^a * ^b -> ^c)
"""
[<Test>]
let ``preserve abstract keyword`` () =
formatSourceString
true
"""namespace Foo
type internal Blah =
abstract Baz : unit
"""
config
|> prepend newline
|> should
equal
"""
namespace Foo
type internal Blah =
abstract Baz: unit
"""
[<Test>]
let ``internal keyword before short record type, 830`` () =
formatSourceString
true
"""namespace Bar
type 'a Baz =
internal {
Value : 'a
}
"""
config
|> prepend newline
|> should
equal
"""
namespace Bar
type 'a Baz = internal { Value: 'a }
"""
[<Test>]
let ``internal keyword before long record type`` () =
formatSourceString
true
"""namespace Bar
type A = internal { ALongIdentifier: string; YetAnotherLongIdentifier: bool }"""
config
|> prepend newline
|> should
equal
"""
namespace Bar
type A =
internal
{ ALongIdentifier: string
YetAnotherLongIdentifier: bool }
"""
[<Test>]
let ``multiple constraints on function declaration, 886`` () =
formatSourceString
true
"""namespace Blah
module Foo =
val inline sum : ('a -> ^value) -> 'a Foo -> ^value
when ^value : (static member (+) : ^value * ^value -> ^value) and ^value : (static member Zero : ^value)
"""
config
|> prepend newline
|> should
equal
"""
namespace Blah
module Foo =
val inline sum: ('a -> ^value) -> 'a Foo -> ^value
when ^value: (static member (+): ^value * ^value -> ^value) and ^value: (static member Zero: ^value)
"""
[<Test>]
let ``preserve with get property, 945`` () =
formatSourceString
true
"""
namespace B
type Foo =
| Bar of int
member Item : unit -> int with get
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace B
type Foo =
| Bar of int
member Item : unit -> int with get
"""
[<Test>]
let ``preserve with set property`` () =
formatSourceString
true
"""
namespace B
type Foo =
member Item : int -> unit with set
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace B
type Foo =
member Item : int -> unit with set
"""
[<Test>]
let ``preserve with get,set`` () =
formatSourceString
true
"""
namespace B
type Foo =
member Item : int with get, set
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace B
type Foo =
member Item : int with get, set
"""
[<Test>]
let ``with set after constraint`` () =
formatSourceString
true
"""
namespace B
type Foo =
member Item : 't -> unit when 't : comparison with set
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace B
type Foo =
member Item : 't -> unit when 't : comparison with set
"""
[<Test>]
let ``preserve abstract member in type, 944`` () =
formatSourceString
true
"""
namespace Baz
type Foo =
abstract member Bar : Type
abstract Bar2 : Type
member Bar3 : Type
"""
{ config with SpaceBeforeColon = true }
|> prepend newline
|> should
equal
"""
namespace Baz
type Foo =
abstract member Bar : Type
abstract Bar2 : Type
member Bar3 : Type
"""
[<Test>]
let ``comment before union case, 965`` () =
formatSourceString
true
"""namespace Blah
/// Comment
type Foo =
/// Another
| Foo of int
"""
config
|> prepend newline
|> should
equal
"""
namespace Blah
/// Comment
type Foo =
/// Another
| Foo of int
"""
[<Test>]
let ``don't add additional newline before subsequent val, 1029`` () =
formatSourceString
true
"""
module Some_module
type foo = bool
val bar : bool
"""
config
|> prepend newline
|> should
equal
"""
module Some_module
type foo = bool
val bar: bool
"""
[<Test>]
let ``don't add duplicate parentheses for TypeAbbrev, 1057`` () =
formatSourceString
false
"""
type AB = A -> B list * C -> D
type AB = A -> (B list * C -> D)
type AB = A -> ((B list * C -> D))
type AB = A -> (C -> D)
"""
config
|> prepend newline
|> should
equal
"""
type AB = A -> B list * C -> D
type AB = A -> (B list * C -> D)
type AB = A -> ((B list * C -> D))
type AB = A -> (C -> D)
"""
[<Test>]
let ``don't add duplicate parentheses for TypeAbbrev in signature file`` () =
formatSourceString
true
"""
namespace Foo
type AB = A -> (B list * C -> D)
"""
config
|> prepend newline
|> should
equal
"""
namespace Foo
type AB = A -> (B list * C -> D)
"""
[<Test>]
let ``don't add extra new line between attribute and namespace, 1097`` () =
formatSourceString
true
"""
namespace Meh
[<StringEnum>]
[<RequireQualifiedAccess>]
type PayableFilters = | [<CompiledName "statusSelector">] Status
"""
config
|> prepend newline
|> should
equal
"""
namespace Meh
[<StringEnum>]
[<RequireQualifiedAccess>]
type PayableFilters = | [<CompiledName "statusSelector">] Status
"""
[<Test>]
let ``don't add extra new line between nested modules, 1105`` () =
formatSourceString
true
"""
module Example
module Foo =
module Bar =
type t = bool
val lol: unit -> bool
type t = int
val lmao: unit -> bool
module Foo2 =
module Bar =
type t = bool
val lol: unit -> bool
type t = int
val lmao: unit -> bool
"""
config
|> prepend newline
|> should
equal
"""
module Example
module Foo =
module Bar =
type t = bool
val lol: unit -> bool