forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterpolatedStringTests.fs
364 lines (333 loc) · 7.99 KB
/
InterpolatedStringTests.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
module Fantomas.Tests.InterpolatedStringTests
open NUnit.Framework
open FsUnit
open Fantomas.Tests.TestHelper
[<Test>]
let ``basic string interpolation`` () =
formatSourceString
false
"""
let text = "foo"
let s = $"%s{text} bar"
"""
config
|> prepend newline
|> should
equal
"""
let text = "foo"
let s = $"%s{text} bar"
"""
[<Test>]
let ``modifiers before interpolation`` () =
formatSourceString
false
"""
let x = 1
let pi = 3.1414
let text = "cats"
let s = $"I say {x} is one and %0.2f{pi} is pi and %10s{text} are dogs"
"""
config
|> prepend newline
|> should
equal
"""
let x = 1
let pi = 3.1414
let text = "cats"
let s = $"I say {x} is one and %0.2f{pi} is pi and %10s{text} are dogs"
"""
[<Test>]
let ``triple quote string interpolation`` () =
formatSourceString
false
"
let text = \"foo\"
let s = $\"\"\"%s{text} bar\"\"\"
"
config
|> prepend newline
|> should
equal
"
let text = \"foo\"
let s = $\"\"\"%s{text} bar\"\"\"
"
[<Test>]
let ``interpolation in strict mode`` () =
formatSourceString
false
"""
let text = "foo"
let s = $"%s{text} bar"
"""
{ config with StrictMode = true }
|> prepend newline
|> should
equal
"""
let text = "foo"
let s = $"%s{text} bar"
"""
[<Test>]
let ``multiline expression in multiline string`` () =
formatSourceString
false
"
let str =
$\"\"\"
{
let square x = x * x
let isOdd x = x % 2 <> 0
let oddSquares =
List.filter isOdd >> List.map square
oddSquares [ 1 .. 0 ]
}\"\"\"
"
config
|> prepend newline
|> should
equal
"
let str =
$\"\"\"
{let square x = x * x
let isOdd x = x % 2 <> 0
let oddSquares = List.filter isOdd >> List.map square
oddSquares [ 1..0 ]}\"\"\"
"
[<Test>]
let ``keep indentation in interpolation`` () =
formatSourceString
false
"""
$"abc {let x = 3
x + x} def {let x = 4
x + x} xyz"
"""
config
|> prepend newline
|> should
equal
"""
$"abc {let x = 3
x + x} def {let x = 4
x + x} xyz"
"""
[<Test>]
let ``backslash in interpolation, issue 1344`` () =
formatSourceString
false
"""
$"\"{bar}\" {1} {2}"
"""
config
|> prepend newline
|> should
equal
"""
$"\"{bar}\" {1} {2}"
"""
[<Test>]
let ``multiline string literal, issue 1451`` () =
formatSourceString
false
"
$\"\"\"one: {1}<
>two: {2}\"\"\"
"
config
|> prepend newline
|> should
equal
"
$\"\"\"one: {1}<
>two: {2}\"\"\"
"
[<Test>]
let ``prefix application, 1414`` () =
formatSourceString
false
"""
!- $".{s}"
"""
config
|> prepend newline
|> should
equal
"""
!- $".{s}"
"""
[<Test>]
let ``format in FillExpr, 1549`` () =
formatSourceString
false
"""
let percent =0.1548486
Console.WriteLine($"Formatted: {percent:p2}")
"""
config
|> prepend newline
|> should
equal
"""
let percent = 0.1548486
Console.WriteLine($"Formatted: {percent:p2}")
"""
[<Test>]
let ``extra newlines in interpolated string, 1613`` () =
formatSourceString
false
"
$\"\"\"
{1}
{2}
\"\"\"
$\"\"\"
- {1}
- 2
- {4}
- 5
\"\"\"
"
config
|> prepend newline
|> should
equal
"
$\"\"\"
{1}
{2}
\"\"\"
$\"\"\"
- {1}
- 2
- {4}
- 5
\"\"\"
"
[<Test>]
let ``verbatim interpolated strings, 1645 `` () =
formatSourceString
false
"
let main _ =
let oldId = 1
let newId = 2
printfn $@\"Migrate notes of file \"\"{oldId}\"\" to new file \"\"{newId}\"\".\"
0
"
config
|> prepend newline
|> should
equal
"
let main _ =
let oldId = 1
let newId = 2
printfn $@\"Migrate notes of file \"\"{oldId}\"\" to new file \"\"{newId}\"\".\"
0
"
[<Test>]
let ``multiline expression should not receive any extra indentation, 1511`` () =
formatSourceString
false
"""
let storageConnection = $"DefaultEndpointsProtocol=https;AccountName=%s{storageAccount.Name};AccountKey=%s{storageAccountKey.Value}"
let serviceStorageConnection = $"DefaultEndpointsProtocol=https;AccountName=%s{serviceStorageAccount.Name};AccountKey=%s{serviceStorageAccountKey.Value}"
"""
config
|> prepend newline
|> should
equal
"""
let storageConnection =
$"DefaultEndpointsProtocol=https;AccountName=%s{storageAccount.Name};AccountKey=%s{storageAccountKey.Value}"
let serviceStorageConnection =
$"DefaultEndpointsProtocol=https;AccountName=%s{serviceStorageAccount.Name};AccountKey=%s{serviceStorageAccountKey.Value}"
"""
[<Test>]
let ``indentation inside try with is correct`` () =
formatSourceString
false
"""
$"
{
try
let a = 0
let b = y
let c = 9
foo ()
with ex -> interpolationFailed ()
}
"
"""
config
|> prepend newline
|> should
equal
"""
$"
{try
let a = 0
let b = y
let c = 9
foo ()
with
| ex -> interpolationFailed ()}
"
"""
[<Test>]
let ``construct url with Fable`` () =
formatSourceString
false
"""
let newUrl =
$"{window.location.protocol}//{window.location.host}{ window.location.pathname}{newHash}?{``params``.ToString()}"
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
let newUrl =
$"{window.location.protocol}//{window.location.host}{window.location.pathname}{newHash}?{``params``.ToString()}"
"""
[<Test>]
let ``multiline function application inside interpolated expression is printed as multiline`` () =
formatSourceString
false
"""
let foo = $"
longLeadingStringPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaart{bar.ToString(window.location.protocol,window.location.host,window.location.pathname,newHash,``params``)}
"
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
let foo =
$"
longLeadingStringPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaart{bar.ToString(
window.location.protocol,
window.location.host,
window.location.pathname,
newHash,
``params``
)}
"
"""
[<Test>]
let ``very long triple-quoted strings do not cause the interpolated string active pattern to stack overflow, 1837`` () =
let loremIpsum =
String.replicate
1000
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\n\n"
formatSourceString false $"let value = \"\"\"{loremIpsum}\"\"\"" config
|> should
equal
$"let value =
\"\"\"{loremIpsum}\"\"\"
"