forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceUntypedParseTests.fs
1567 lines (1412 loc) · 53.5 KB
/
ServiceUntypedParseTests.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 FSharp.Compiler.Service.Tests.ServiceUntypedParseTests
open System.IO
open FsUnit
open FSharp.Compiler.EditorServices
open FSharp.Compiler.Service.Tests.Common
open FSharp.Compiler.Syntax
open FSharp.Compiler.SyntaxTreeOps
open FSharp.Compiler.Text
open FSharp.Compiler.Text.Position
open Xunit
let [<Literal>] private Marker = "(* marker *)"
let private assertCompletionContext (checker: CompletionContext option -> bool) (source: string) =
let lines =
use reader = new StringReader(source)
[| let mutable line = reader.ReadLine()
while not (isNull line) do
yield line
line <- reader.ReadLine()
if source.EndsWith "\n" then
yield "" |]
let markerPos =
lines
|> Array.mapi (fun i x -> i, x)
|> Array.tryPick (fun (lineIdx, line) ->
match line.IndexOf Marker with
| -1 -> None
| idx -> Some (mkPos (Line.fromZ lineIdx) idx))
match markerPos with
| None -> failwithf "Marker '%s' was not found in the source code" Marker
| Some markerPos ->
let parseTree = parseSourceCode("C:\\test.fs", source)
let actual = ParsedInput.TryGetCompletionContext(markerPos, parseTree, lines[Line.toZ markerPos.Line])
if not (checker actual) then
printfn "ParseTree: %A" parseTree
failwithf "Completion context '%A' was not expected" actual
module AttributeCompletion =
[<Fact>]
let ``at [<|, applied to nothing``() =
"""
[<(* marker *)
"""
|> assertCompletionContext (fun x -> x = Some CompletionContext.AttributeApplication)
[<Theory>]
[<InlineData ("[<(* marker *)", true)>]
[<InlineData ("[<AnAttr(* marker *)", true)>]
[<InlineData ("[<type:(* marker *)", true)>]
[<InlineData ("[<type:AnAttr(* marker *)", true)>]
[<InlineData ("[< (* marker *)", true)>]
[<InlineData ("[<AnAttribute;(* marker *)", true)>]
[<InlineData ("[<AnAttribute; (* marker *)", true)>]
[<InlineData ("[<AnAttribute>][<(* marker *)", true)>]
[<InlineData ("[<AnAttribute>][< (* marker *)", true)>]
let ``incomplete``(lineStr: string, expectAttributeApplicationContext: bool) =
let code = $"""
{lineStr}
type T =
{{ F: int }}
"""
code |> assertCompletionContext (fun x -> x = (if expectAttributeApplicationContext then Some CompletionContext.AttributeApplication else None))
[<Theory>]
[<InlineData ("[<(* marker *)>]", true)>]
[<InlineData ("[<AnAttr(* marker *)>]", true)>]
[<InlineData ("[<type:(* marker *)>]", true)>]
[<InlineData ("[<type:AnAttr(* marker *)>]", true)>]
[<InlineData ("[< (* marker *)>]", true)>]
[<InlineData ("[<AnAttribute>][<(* marker *)>]", true)>]
[<InlineData ("[<AnAttribute>][< (* marker *)>]", true)>]
[<InlineData ("[<AnAttribute;(* marker *)>]", true)>]
[<InlineData ("[<AnAttribute; (* marker *) >]", true)>]
[<InlineData ("[<AnAttribute>][<AnAttribute;(* marker *)>]", true)>]
[<InlineData ("[<AnAttribute (* marker *) >]", false)>]
let ``complete``(lineStr: string, expectAttributeApplicationContext: bool) =
let code = $"""
{lineStr}
type T =
{{ F: int }}
"""
code |> assertCompletionContext (fun x -> x = (if expectAttributeApplicationContext then Some CompletionContext.AttributeApplication else None))
module AttributeConstructorCompletion =
[<Theory>]
[<InlineData ("[<AnAttribute((* marker *)")>]
[<InlineData ("[<AnAttribute( (* marker *)")>]
[<InlineData ("[<AnAttribute>][<AnAttribute((* marker *)")>]
[<InlineData ("[<AnAttribute; AnAttribute((* marker *)")>]
let ``incomplete``(lineStr: string) =
let code = $"""
{lineStr}
type T =
{{ F: int }}
"""
code |> assertCompletionContext (fun x -> match x with Some (CompletionContext.ParameterList _) -> true | _ -> false)
[<Theory>]
[<InlineData ("[<AnAttribute((* marker *)>]")>]
[<InlineData ("[<AnAttribute>][<AnAttribute((* marker *)>]")>]
[<InlineData ("[<AnAttribute; AnAttribute((* marker *)>]")>]
[<InlineData ("[<AnAttribute; AnAttribute( (* marker *)>]")>]
[<InlineData ("[<AnAttribute>][<AnAttribute; AnAttribute((* marker *)>]")>]
let ``complete``(lineStr: string) =
let code = $"""
{lineStr}
type T =
{{ F: int }}
"""
code |> assertCompletionContext (fun x -> match x with Some (CompletionContext.ParameterList _) -> true | _ -> false)
[<Fact>]
let ``Attribute lists`` () =
let source = """
[<A>]
let foo1 = ()
[<A>]
[<B;C>]
let foo2 = ()
[<A>] [<B;C>]
let foo3 = ()
[<A
let foo4 = ()
[<A;
let foo5 = ()
[<
let foo6 = ()
[<>]
let foo7 = ()
[<A;>]
let foo8 = ()
"""
let (SynModuleOrNamespace (decls = decls)) = parseSourceCodeAndGetModule source
decls |> List.map (fun decl ->
match decl with
| SynModuleDecl.Let (_, [SynBinding (attributes = attributeLists)], _) ->
attributeLists |> List.map (fun list -> list.Attributes.Length, getRangeCoords list.Range)
| _ -> failwith "Could not get binding")
|> shouldEqual
[ [ (1, ((2, 0), (2, 5))) ]
[ (1, ((5, 0), (5, 5))); (2, ((6, 0), (6, 7))) ]
[ (1, ((9, 0), (9, 5))); (2, ((9, 6), (9, 13))) ]
[ (1, ((12, 0), (13, 0))) ]
[ (1, ((15, 0), (15, 4))) ]
[ (0, ((18, 0), (18, 2))) ]
[ (0, ((21, 0), (21, 4))) ]
[ (1, ((24, 0), (24, 6))) ] ]
let rec getParenTypes (synType: SynType): SynType list =
[ match synType with
| SynType.Paren (innerType, _) ->
yield synType
yield! getParenTypes innerType
| SynType.Fun (argType = argType; returnType = returnType) ->
yield! getParenTypes argType
yield! getParenTypes returnType
| SynType.Tuple(path = segment) ->
for synType in getTypeFromTuplePath segment do
yield! getParenTypes synType
| SynType.AnonRecd (_, fields, _) ->
for _, synType in fields do
yield! getParenTypes synType
| SynType.App (typeName = typeName; typeArgs = typeArgs)
| SynType.LongIdentApp (typeName = typeName; typeArgs = typeArgs) ->
yield! getParenTypes typeName
for synType in typeArgs do
yield! getParenTypes synType
| _ -> () ]
[<Fact>]
let ``SynType.Paren ranges`` () =
let source = """
((): int * (int * int))
((): (int -> int) -> int)
((): ((int)))
"""
let (SynModuleOrNamespace (decls = decls)) = parseSourceCodeAndGetModule source
decls |> List.map (fun decl ->
match decl with
| SynModuleDecl.Expr (expr = SynExpr.Paren (expr = SynExpr.Typed (_, synType ,_))) ->
getParenTypes synType
|> List.map (fun synType -> getRangeCoords synType.Range)
| _ -> failwith "Could not get binding")
|> shouldEqual
[ [ (2, 11), (2, 22) ]
[ (3, 5), (3, 17) ]
[ (4, 5), (4, 12); (4, 6), (4, 11) ] ]
module TypeMemberRanges =
let getTypeMemberRange source =
let (SynModuleOrNamespace (decls = decls)) = parseSourceCodeAndGetModule source
match decls with
| [ SynModuleDecl.Types (typeDefns=[ SynTypeDefn (typeRepr=SynTypeDefnRepr.ObjectModel (members=memberDecls)) ]) ] ->
memberDecls |> List.map (fun memberDecl -> getRangeCoords memberDecl.Range)
| _ -> failwith "Could not get member"
[<Fact>]
let ``Member range 01 - Simple``() =
let source = """
type T =
member x.Foo() = ()
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 23) ]
[<Fact>]
let ``Member range 02 - Static``() =
let source = """
type T =
static member Foo() = ()
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 28) ]
[<Fact>]
let ``Member range 03 - Attribute``() =
let source = """
type T =
[<Foo>]
static member Foo() = ()
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (4, 28) ]
[<Fact>]
let ``Member range 04 - Property``() =
let source = """
type T =
member x.P = ()
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 19) ]
[<Fact>]
let ``Member range 05 - Setter only property``() =
let source = """
type T =
member x.P with set (value) = v <- value
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 44) ]
[<Fact>]
let ``Member range 06 - Read-write property``() =
let source = """
type T =
member this.MyReadWriteProperty
with get () = x
and set (value) = x <- value
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (5, 36) ]
[<Fact>]
let ``Member range 07 - Auto property``() =
let source = """
type T =
member val Property1 = ""
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 29) ]
[<Fact>]
let ``Member range 08 - Auto property with setter``() =
let source = """
type T =
member val Property1 = "" with get, set
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 43) ]
[<Fact>]
let ``Member range 09 - Abstract slot``() =
let source = """
type T =
abstract P: int
abstract M: unit -> unit
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 19)
(4, 4), (4, 28) ]
[<Fact>]
let ``Member range 10 - Val field``() =
let source = """
type T =
val x: int
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 14) ]
[<Fact>]
let ``Member range 11 - Ctor``() =
let source = """
type T =
new (x:int) = ()
"""
getTypeMemberRange source |> shouldEqual [ (3, 4), (3, 20) ]
[<Fact>]
let ``TryRangeOfRefCellDereferenceContainingPos - simple``() =
let source = """
let x = false
let y = !x
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfRefCellDereferenceContainingPos (mkPos 3 9)
match res with
| Some res ->
res
|> tups
|> fst
|> shouldEqual (3, 8)
| None ->
failwith("No deref operator found in source.")
[<Fact>]
let ``TryRangeOfRefCellDereferenceContainingPos - parens``() =
let source = """
let x = false
let y = !(x)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfRefCellDereferenceContainingPos (mkPos 3 10)
match res with
| Some res ->
res
|> tups
|> fst
|> shouldEqual (3, 8)
| None ->
failwith("No deref operator found in source.")
[<Fact>]
let ``TryRangeOfRefCellDereferenceContainingPos - binary expr``() =
let source = """
let x = false
let y = !(x = false)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfRefCellDereferenceContainingPos (mkPos 3 10)
match res with
| Some res ->
res
|> tups
|> fst
|> shouldEqual (3, 8)
| None ->
failwith("No deref operator found in source.")
[<Fact>]
let ``TryRangeOfRecordExpressionContainingPos - contained``() =
let source = """
let x = { Name = "Hello" }
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfRecordExpressionContainingPos (mkPos 2 10)
match res with
| Some res ->
res
|> tups
|> shouldEqual ((2, 8), (2, 26))
| None ->
failwith("No range of record found in source.")
[<Fact>]
let ``TryRangeOfRecordExpressionContainingPos - not contained``() =
let source = """
let x = { Name = "Hello" }
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfRecordExpressionContainingPos (mkPos 2 7)
Assert.True(res.IsNone, "Expected not to find a range.")
module FunctionApplicationArguments =
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - Single arg``() =
let source = """
let f x = ()
f 12
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 2)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - Multi arg``() =
let source = """
let f x y z = ()
f 1 2 3
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 2); (3, 4); (3, 6)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - Multi arg parentheses``() =
let source = """
let f x y z = ()
f (1) (2) (3)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 2); (3, 6); (3, 10)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - Multi arg nested parentheses``() =
let source = """
let f x y z = ()
f ((1)) (((2))) ((((3))))
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 3); (3, 10); (3, 19)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - unit``() =
let source = """
let f () = ()
f ()
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
Assert.True(res.IsNone, "Found argument for unit-accepting function, which shouldn't be the case.")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - curried function``() =
let source = """
let f x y = x + y
f 12
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 2)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - tuple value``() =
let source = """
let f (t: int * int) = ()
let t = (1, 2)
f t
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 4 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(4, 2)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - tuple literal``() =
let source = """
let f (t: int * int) = ()
f (1, 2)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 3); (3, 6)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - tuple value with definition that has explicit names``() =
let source = """
let f ((x, y): int * int) = ()
let t = (1, 2)
f t
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 4 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(4, 2)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - tuple literal inside parens``() =
let source = """
let f (x, y) = ()
f ((1, 2))
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 4); (3, 7)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - tuples with elements as arguments``() =
let source = """
let f (a, b) = ()
f (1, 2)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 3); (3, 6)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - top-level arguments with nested function call``() =
let source = """
let f x y = x + y
f (f 1 2) 3
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 0)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 2); (3, 10)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - nested function argument positions``() =
let source = """
let f x y = x + y
f (f 1 2) 3
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 3 3)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(3, 5); (3, 7)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - nested function application in infix expression``() =
let source = """
let addStr x y = string x + y
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 2 17)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(2, 24)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - nested function application outside of infix expression``() =
let source = """
let addStr x y = x + string y
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 2 21)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(2, 28)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``GetAllArgumentsForFunctionApplicationAtPosition - nested function applications both inside and outside of infix expression``() =
let source = """
let addStr x y = string x + string y
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 2 17)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(2, 24)]
| None ->
failwith("No arguments found in source code")
let res = parseFileResults.GetAllArgumentsForFunctionApplicationAtPosition (mkPos 2 28)
match res with
| Some res ->
res
|> List.map (tups >> fst)
|> shouldEqual [(2, 35)]
| None ->
failwith("No arguments found in source code")
[<Fact>]
let ``IsPosContainedInApplication - no``() =
let source = """
sqrt x
12
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.False(parseFileResults.IsPosContainedInApplication (mkPos 3 2), "Pos should not be in application")
[<Fact>]
let ``IsPosContainedInApplication - yes, single arg``() =
let source = """
sqrt x
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.True(parseFileResults.IsPosContainedInApplication (mkPos 2 5), "Pos should be in application")
[<Fact>]
let ``IsPosContainedInApplication - yes, multi arg``() =
let source = """
let add2 x y = x + y
add2 x y
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.True(parseFileResults.IsPosContainedInApplication (mkPos 3 6), "Pos should be in application")
[<Fact>]
let ``IsPosContainedInApplication - inside computation expression - no``() =
let source = """
async {
sqrt
}
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.False(parseFileResults.IsPosContainedInApplication (mkPos 2 5), "Pos should not be in application")
[<Fact>]
let ``IsPosContainedInApplication - inside CE return - no``() =
let source = """
async {
return sqrt
}
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.False(parseFileResults.IsPosContainedInApplication (mkPos 2 5), "Pos should not be in application")
[<Fact>]
let ``IsPosContainedInApplication - inside CE - yes``() =
let source = """
let myAdd x y = x + y
async {
return myAdd 1
}
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.False(parseFileResults.IsPosContainedInApplication (mkPos 3 18), "Pos should not be in application")
[<Fact>]
let ``IsPosContainedInApplication - inside type application``() =
let source = """
let f<'x> x = ()
f<int>
"""
let parseFileResults, _ = getParseAndCheckResults source
Assert.True(parseFileResults.IsPosContainedInApplication (mkPos 3 6), "A type application is an application, expected True.")
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - no application``() =
let source = """
let add2 x y = x + y
add2 x y
12
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 4 2)
Assert.True(res.IsNone, "Not in a function application but got one")
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - single arg application``() =
let source = """
sqrt 12.0
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 2 9)
match res with
| None -> failwith("Expected 'sqrt' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((2, 0), (2, 4))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - multi arg application``() =
let source = """
let f x y z = ()
f 1 2 3
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 5)
match res with
| None -> failwith("Expected 'f' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 0), (3, 1))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - multi arg application but at function itself``() =
let source = """
let f x y z = ()
f 1 2 3
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 1)
match res with
| None -> failwith("Expected 'f' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 0), (3, 1))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - function in pipeline``() =
let source = """
[1..10] |> List.map id
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 2 20)
match res with
| None -> failwith("Expected 'List.map' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((2, 11), (2, 19))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - function in middle of pipeline``() =
let source = """
[1..10]
|> List.filter (fun x -> x > 3)
|> List.map id
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 14)
match res with
| None -> failwith("Expected 'List.filter' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 3), (3, 14))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - function in middle of pipeline, no qualification``() =
let source = """
[1..10]
|> id
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 5)
match res with
| None -> failwith("Expected 'id' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 3), (3, 5))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - incomplete infix app``() =
let source = """
let add2 x y = x + y
let square x = x *
add2 1 2
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 18)
match res with
| None -> failwith("Expected '*' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 17), (3, 18))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside CE``() =
let source = """
let myAdd x y = x + y
async {
return myAdd 1
}
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 4 18)
match res with
| None -> failwith("Expected 'myAdd' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((4, 11), (4, 16))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside lambda - binding``() =
let source = """
let add n1 n2 = n1 + n2
let lst = [1; 2; 3]
let mapped =
lst |> List.map (fun n ->
let sum = add
n.ToString()
)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 6 21)
match res with
| None -> failwith("Expected 'add' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((6, 18), (6, 21))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside lambda - if expression``() =
let source = """
let add n1 n2 = n1 + n2
let lst = [1; 2; 3]
let mapped =
lst |> List.map (fun n ->
if true then
add
else
match add 1 2 with
| 0 when 0 = 0 -> add 1 2
| _ -> add 1 2
)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 7 15)
match res with
| None -> failwith("Expected 'add' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((7, 12), (7, 15))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside lambda - match expression``() =
let source = """
let add n1 n2 = n1 + n2
let lst = [1; 2; 3]
let mapped =
lst |> List.map (fun n ->
if true then
add
else
match add 1 2 with
| 0 when 0 = 0 -> add 1 2
| _ -> add 1 2
)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 7 15)
match res with
| None -> failwith("Expected 'add' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((7, 12), (7, 15))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside lambda - match expr``() =
let source = """
let add n1 n2 = n1 + n2
let lst = [1; 2; 3]
let mapped =
lst |> List.map (fun n ->
if true then
add
else
match add with
| 0 when 0 = 0 -> add 1 2
| _ -> add 1 2
)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 9 21)
match res with
| None -> failwith("Expected 'add' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((9, 18), (9, 21))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside lambda - match case``() =
let source = """
let add n1 n2 = n1 + n2
let lst = [1; 2; 3]
let mapped =
lst |> List.map (fun n ->
if true then
add
else
match add 1 2 with
| 0 when 0 = 0 -> add 1 2
| _ -> add
)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 11 22)
match res with
| None -> failwith("Expected 'add' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((11, 19), (11, 22))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside method call``() =
let source = """
type C() = static member Yeet(x, y, z) = ()
C.Yeet(1, 2, sqrt)
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 17)
match res with
| None -> failwith("Expected 'sqrt' but got nothing")
| Some range ->
range
|> tups
|> shouldEqual ((3, 13), (3, 17))
[<Fact>]
let ``TryRangeOfFunctionOrMethodBeingApplied - inside method call - parenthesized lambda``() =
let source = """
type C() = static member Yeet(x, y, z) = ()
C.Yeet(1, 2, (fun x -> sqrt))
"""
let parseFileResults, _ = getParseAndCheckResults source
let res = parseFileResults.TryRangeOfFunctionOrMethodBeingApplied (mkPos 3 27)
match res with
| None -> failwith("Expected 'sqrt' but got nothing")
| Some range ->
range