forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTriviaTests.fs
434 lines (340 loc) · 11.7 KB
/
TriviaTests.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
module Fantomas.Core.Tests.TriviaTests
open NUnit.Framework
open Fantomas.Core
open Fantomas.Core.SourceParser
open Fantomas.Core.Tests.TestHelper
open Fantomas.Core.TriviaTypes
open Fantomas.Core.FormatConfig
let private toTrivia source =
let sourceText = CodeFormatterImpl.getSourceText source
let ast, _ = Fantomas.FCS.Parse.parseFile false sourceText []
Trivia.collectTrivia FormatConfig.Default sourceText ast None
let private toTriviaWithDefines source =
let sourceText = CodeFormatterImpl.getSourceText source
let ast, _diagnostics = Fantomas.FCS.Parse.parseFile false sourceText []
let hashDirectives =
match ast with
| ImplFile (ParsedImplFileInput (_, _, directives, _))
| SigFile (ParsedSigFileInput (_, _, directives, _)) -> directives
let defineCombinations = Defines.getDefineCombination hashDirectives
defineCombinations
|> List.map (fun dc -> dc, Trivia.collectTrivia FormatConfig.Default sourceText ast None)
|> Map.ofList
(*
[<Test>]
let ``line comment that starts at the beginning of a line added to trivia`` () =
let source =
"""// meh
let a = 9
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (LineCommentOnSingleLine lineComment) ] } ] -> lineComment == "// meh"
| _ -> failwith "Expected line comment"
[<Test>]
let ``line comment that is alone on the single, preceded by whitespaces`` () =
let source =
""" // foo
let a = 'c'
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (LineCommentOnSingleLine lineComment) ] } ] -> lineComment == "// foo"
| _ -> failwith "Expected line comment"
[<Test>]
let ``line comment on same line, is after last AST item`` () =
let source = "let foo = 7 // should be 8"
let triviaNodes = toTrivia source
match triviaNodes with
| [ { Type = SynConst_Int32
ContentAfter = [ Comment (LineCommentAfterSourceCode lineComment) ] } ] -> lineComment == "// should be 8"
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" triviaNodes)
[<Test>]
let ``newline pick up before let binding`` () =
let source =
"""let a = 7
let b = 9"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Newline ] } ] -> pass ()
| _ -> fail ()
[<Test>]
let ``multiple comments should be linked to same trivia node`` () =
let source =
"""// foo
// bar
let a = 7
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (LineCommentOnSingleLine c1); Comment (LineCommentOnSingleLine c2) ] } ] ->
c1 == "// foo"
c2 == "// bar"
| _ -> fail ()
[<Test>]
let ``comments inside record`` () =
let source =
"""let a =
{ // foo
B = 7 }"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { Type = SynExpr_Record_OpeningBrace
ContentAfter = [ Comment (LineCommentAfterSourceCode "// foo") ] } ] -> pass ()
| _ -> fail ()
[<Test>]
let ``comment after all source code`` () =
let source =
"""type T() =
let x = 123
// override private x.ToString() = ""
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { Type = mn
ContentAfter = [ Comment (LineCommentOnSingleLine lineComment) ] } ] ->
mn == SynModuleDecl_Types
lineComment
== "// override private x.ToString() = \"\""
pass ()
| _ -> fail ()
[<Test>]
let ``block comment added to trivia`` () =
let source = """let a = (* meh *) 9"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentAfter = [ Comment (BlockComment (comment, _, _)) ] } ] -> comment == "(* meh *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``block comment and newline added to trivia`` () =
let source =
"""(* meh *)
let a = b
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (comment, _, true)) ] } ] -> comment == "(* meh *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``block comment on newline EOF added to trivia`` () =
let source =
"""let a = b
(* meh *)"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentAfter = [ Comment (BlockComment (comment, true, _)) ] } ] -> comment == "(* meh *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``block comment on EOF added to trivia`` () =
let source = """let a = 9 (* meh *)"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentAfter = [ Comment (BlockComment (comment, _, _)) ] } ] -> comment == "(* meh *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``nested block comment parsed correctly`` () =
let source =
"""(* (* meh *) *)
let a = c + d
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (comment, _, true)) ] } ] -> comment == "(* (* meh *) *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``line comment inside block comment parsed correctly`` () =
let source =
"""(* // meh *)
let a = 9
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (comment, _, true)) ] } ] -> comment == "(* // meh *)"
| _ -> failwith "Expected block comment"
[<Test>]
let ``multiline block comment added to trivia`` () =
let source =
"""(* meh
bla *)
let a = b
"""
let triviaNodes = toTrivia source
let expectedComment =
"""(* meh
bla *)"""
|> String.normalizeNewLine
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (comment, _, true)) ] } ] ->
String.normalizeNewLine comment == expectedComment
| _ -> failwith "Expected block comment"
[<Test>]
let ``multiple block comments should be linked to same trivia node`` () =
let source =
"""let x = y / z
(* foo *)
(* bar *)
x
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (bc1, true, true)); Comment (BlockComment (bc2, true, true)) ] } ] ->
bc1 == "(* foo *)"
bc2 == "(* bar *)"
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" triviaNodes)
[<Test>]
let ``block comment inside line comment parsed correctly`` () =
let source =
"""// (* meh *)
let a = b + c
"""
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (LineCommentOnSingleLine comment) ] } ] -> comment == "// (* meh *)"
| _ -> failwith "Expected line comment"
[<Test>]
let ``newlines inside a block comment should not counts as newlines`` () =
let comment =
"""(*
MEH
*)"""
let source = sprintf "%s\nprintfn message" comment
let triviaNodes = toTrivia source
match triviaNodes with
| [ { ContentBefore = [ Comment (BlockComment (c, _, true)) ] } ] ->
String.normalizeNewLine c
== String.normalizeNewLine comment
| _ -> failwith "Expected block comment"
[<Test>]
let ``directives before and after are linked to let binding`` () =
let source =
"""#if NOT_DEFINED
#else
doSomething()
#endif
"""
let triviaNodes = toTriviaWithDefines source
let withDefine = Map.find [ "NOT_DEFINED" ] triviaNodes
let withoutDefine = Map.find [] triviaNodes
match withoutDefine with
| [ { Type = SynModuleDecl_Expr
ContentBefore = [ Directive "#if NOT_DEFINED"; Directive "#else" ]
ContentAfter = [ Directive "#endif" ] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" withoutDefine)
match withDefine with
| [ { Type = LongIdent_
ContentBefore = [ Directive "#if NOT_DEFINED"; Directive "#else"; Directive "#endif" ]
ContentAfter = [] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" withDefine)
[<Test>]
let ``directive without else clause`` () =
let source =
"""#if NOT_DEFINED
let x = 1
#endif
"""
let triviaNodes = toTriviaWithDefines source
let withDefine = Map.find [ "NOT_DEFINED" ] triviaNodes
let withoutDefine = Map.find [] triviaNodes
match withoutDefine with
| [ { Type = LongIdent_
ContentAfter = [ Directive "#if NOT_DEFINED"; Directive "#endif" ]
ContentBefore = [] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" withoutDefine)
match withDefine with
| [ { Type = LongIdent_
ContentBefore = [ Directive "#if NOT_DEFINED" ]
ContentAfter = [] }
{ Type = SynModuleDecl_Let
ContentBefore = []
ContentAfter = [ Directive "#endif" ] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" withDefine)
[<Test>]
let ``unreachable directive should be present in trivia`` () =
let source =
"""namespace Internal.Utilities.Diagnostic
#if EXTENSIBLE_DUMPER
#if DEBUG
type ExtensibleDumper = A | B
#endif
#endif"""
let triviaNodes = toTriviaWithDefines source
let trivias = Map.find [ "DEBUG" ] triviaNodes
match trivias with
| [ { Type = SynModuleOrNamespace_DeclaredNamespace
ContentAfter = [ Directive "#if EXTENSIBLE_DUMPER"
Directive "#if DEBUG"
Directive "#endif"
Directive "#endif" ] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia %A" trivias)
[<Test>]
let ``trailing newlines should not be picked up in trivia`` () =
let source =
"""printfn someLogMessage
"""
let trivia = toTrivia source
match trivia with
| [] -> pass ()
| _ -> fail ()
[<Test>]
let ``code in non-active defines should be returned in trivia`` () =
let source =
"""#if SOMETHING
let foo = 42
#endif"""
let trivia = toTriviaWithDefines source |> Map.find []
match trivia with
| [ { Type = LongIdent_
ContentAfter = [ Directive "#if SOMETHING"; Directive "#endif" ] } ] -> pass ()
| _ -> Assert.Fail $"Expected trivia in content after, got {trivia}"
[<Test>]
let ``leading newlines should not be captured as trivia`` () =
let source =
"""
let a = b
"""
let trivia = toTrivia source
match trivia with
| [] -> pass ()
| _ -> fail ()
[<Test>]
let ``multiple line comments form a single trivia`` () =
let source =
"""
// Represents a long identifier with possible '.' at end.
//
// Typically dotms.Length = lid.Length-1, but they may be same if (incomplete) code ends in a dot, e.g. "Foo.Bar."
// The dots mostly matter for parsing, and are typically ignored by the typechecker, but
// if dotms.Length = lid.Length, then the parser must have reported an error, so the typechecker is allowed
// more freedom about typechecking these expressions.
// LongIdent can be empty list - it is used to denote that name of some AST element is absent (i.e. empty type name in inherit)
type LongIdentWithDots =
| LongIdentWithDots of id: LongIdent * dotms: range list
"""
let trivia = toTrivia source
match trivia with
| [ { ContentBefore = cb } ] ->
Assert.True(
List.forall
(function
| Comment (LineCommentOnSingleLine _) -> true
| _ -> false)
cb
)
| _ -> fail ()
[<Test>]
let ``collect multiple hash directive as one`` () =
let source =
"""
let x =
#if DEBUG
printfn "DEBUG"
#endif
()
"""
let trivia = toTriviaWithDefines source |> Map.find []
printfn "%A" trivia
match trivia with
| [ { Type = SynConst_Unit
ContentBefore = [ Directive "#if DEBUG"; Directive "#endif" ] } ] -> pass ()
| _ -> Assert.Fail(sprintf "Unexpected trivia: %A" trivia)
*)