forked from fsprojects/fantomas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppTests.fs
879 lines (819 loc) · 22.5 KB
/
AppTests.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
module Fantomas.Tests.AppTests
open NUnit.Framework
open FsUnit
open Fantomas.Tests.TestHelper
// the current behavior results in a compile error since the |> is merged to the last line
[<Test>]
let ``no nln before lambda, #503`` () =
formatSourceString
false
"""
let a =
b
|> List.exists (fun p ->
p.a && p.b |> List.exists (fun o -> o.a = "lorem ipsum dolor sit amet"))
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
let a =
b
|> List.exists (fun p ->
p.a
&& p.b
|> List.exists (fun o -> o.a = "lorem ipsum dolor sit amet"))
"""
// compile error due to expression starting before the beginning of the function expression
[<Test>]
let ``require to ident at least +1 after function name #545`` () =
formatSourceString
false
@"
let a s =
if s <> """" then
printfn """"""fooo
%s
%s
%s
%s"""""" (llloooooooooooooooooooooooooo s)
s
s
s"
config
|> prepend newline
|> should
equal
@"
let a s =
if s <> """" then
printfn
""""""fooo
%s
%s
%s
%s""""""
(llloooooooooooooooooooooooooo s)
s
s
s
"
// compile error due to expression starting before the beginning of the function expression
[<Test>]
let ``require to ident at least +1 after function name #545 (long expression and short line settings)`` () =
formatSourceString
false
@"
let a s =
if s <> """" then
printfn """"""fooo
%s
%s
%s
%s"""""" (llloooooooooooooooooooooooooo s)
s
(llloooooooooooooooooooooooooo s)
(llloooooooooooooooooooooooooo s)"
{ config with MaxLineLength = 50 }
|> prepend newline
|> should
equal
@"
let a s =
if s <> """" then
printfn
""""""fooo
%s
%s
%s
%s""""""
(llloooooooooooooooooooooooooo s)
s
(llloooooooooooooooooooooooooo s)
(llloooooooooooooooooooooooooo s)
"
[<Test>]
let ``should split parameters over multiple lines when they exceed page width`` () =
formatSourceString
false
"""module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress)
(currency: Currency): NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem compoundBalance None currency address sessionCachedNetworkData
()
)
()"""
{ config with MaxLineLength = 60 }
|> prepend newline
|> should
equal
"""
module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance
(address: PublicAddress)
(currency: Currency)
: NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem
compoundBalance
None
currency
address
sessionCachedNetworkData
())
()
"""
[<Test>]
let ``should split single parameter over multiple lines when it exceeds page width`` () =
formatSourceString
false
"""module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress)
(currency: Currency): NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
()
)
()"""
{ config with MaxLineLength = 60 }
|> prepend newline
|> should
equal
"""
module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance
(address: PublicAddress)
(currency: Currency)
: NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem
looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong
())
()
"""
[<Test>]
let ``should not split parameters over multiple lines when they do not exceed page width`` () =
formatSourceString
false
"""module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress)
(currency: Currency): NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem compoundBalance None currency address sessionCachedNetworkData
()
)
()"""
{ config with MaxLineLength = 120 }
|> prepend newline
|> should
equal
"""
module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress) (currency: Currency) : NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem compoundBalance None currency address sessionCachedNetworkData
())
()
"""
[<Test>]
let ``should not split single parameter over multiple lines when it does not exceed page width`` () =
formatSourceString
false
"""module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress)
(currency: Currency): NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem compoundBalance
()
)
()"""
{ config with MaxLineLength = 120 }
|> prepend newline
|> should
equal
"""
module Caching =
type MainCache() =
member __.RetrieveLastCompoundBalance (address: PublicAddress) (currency: Currency) : NotFresh<decimal> =
lock cacheFiles.CachedNetworkData (fun _ ->
match balance with
| NotAvailable -> NotAvailable
| Cached (balance, time) ->
if compoundBalance < 0.0m then
ReportProblem compoundBalance
())
()
"""
[<Test>]
let ``single line constructor without new keyword`` () =
formatSourceString
false
"""
let smallTree = BinaryNode(BinaryValue 3, BinaryValue 4)
"""
config
|> prepend newline
|> should
equal
"""
let smallTree = BinaryNode(BinaryValue 3, BinaryValue 4)
"""
[<Test>]
let ``multiline constructor without new keyword`` () =
formatSourceString
false
"""
let tree1 =
BinaryNode(BinaryNode(BinaryValue 1, BinaryValue 2), BinaryNode(BinaryValue 3, BinaryValue 4))
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
let tree1 =
BinaryNode(
BinaryNode(BinaryValue 1, BinaryValue 2),
BinaryNode(BinaryValue 3, BinaryValue 4)
)
"""
[<Test>]
let ``short constructor with new keyword`` () =
formatSourceString
false
"""
let person = new Person("Jim", 33)
"""
config
|> prepend newline
|> should
equal
"""
let person = new Person("Jim", 33)
"""
[<Test>]
let ``multiline constructor with new keyword`` () =
formatSourceString
false
"""
let otherThing =
new Foobar(longname1, longname2, longname3, longname4, longname5, longname6, longname7)
"""
{ config with MaxLineLength = 90 }
|> prepend newline
|> should
equal
"""
let otherThing =
new Foobar(
longname1,
longname2,
longname3,
longname4,
longname5,
longname6,
longname7
)
"""
[<Test>]
let ``short static member call`` () =
formatSourceString
false
"""
let myRegexMatch = Regex.Match(input, regex)
"""
config
|> prepend newline
|> should
equal
"""
let myRegexMatch = Regex.Match(input, regex)
"""
[<Test>]
let ``multiline static member call`` () =
formatSourceString
false
"""
let myRegexMatch =
Regex.Match("my longer input string with some interesting content in it","myRegexPattern")
"""
{ config with MaxLineLength = 90 }
|> prepend newline
|> should
equal
"""
let myRegexMatch =
Regex.Match(
"my longer input string with some interesting content in it",
"myRegexPattern"
)
"""
[<Test>]
let ``short instance member call`` () =
formatSourceString
false
"""
let untypedRes = checker.ParseFile(file, source, opts)
"""
config
|> prepend newline
|> should
equal
"""
let untypedRes = checker.ParseFile(file, source, opts)
"""
[<Test>]
let ``multiline instance member call`` () =
formatSourceString
false
"""
let untypedRes =
checker.ParseFile(fileName, sourceText, parsingOptionsWithDefines, somethingElseWithARatherLongVariableName)
"""
{ config with MaxLineLength = 90 }
|> prepend newline
|> should
equal
"""
let untypedRes =
checker.ParseFile(
fileName,
sourceText,
parsingOptionsWithDefines,
somethingElseWithARatherLongVariableName
)
"""
[<Test>]
let ``multiline string in function application, 1259`` () =
formatSourceString
false
"
[<Test>]
let ``classes and private implicit constructors`` () =
formatSourceString false \"\"\"
type MyClass2 private (dataIn) as self =
let data = dataIn
do self.PrintMessage()
member this.PrintMessage() =
printf \"Creating MyClass2 with Data %d\" data\"\"\" { config with
MaxFunctionBindingWidth = 120 }
"
config
|> prepend newline
|> should
equal
"
[<Test>]
let ``classes and private implicit constructors`` () =
formatSourceString
false
\"\"\"
type MyClass2 private (dataIn) as self =
let data = dataIn
do self.PrintMessage()
member this.PrintMessage() =
printf \"Creating MyClass2 with Data %d\" data\"\"\"
{ config with MaxFunctionBindingWidth = 120 }
"
[<Test>]
let ``space between function and argument in DotIndexedGet, 1261`` () =
formatSourceString
false
"""
type Queue<'T>(data: list<'T []>, length: int) =
member this.Head =
if length > 0
then (List.head data).[0]
else raise (System.Exception("Queue is empty"))
"""
config
|> prepend newline
|> should
equal
"""
type Queue<'T>(data: list<'T []>, length: int) =
member this.Head =
if length > 0 then
(List.head data).[0]
else
raise (System.Exception("Queue is empty"))
"""
[<Test>]
let ``parenthesis around composed function expression, 1341`` () =
formatSourceString
false
"""
(f >> g) (bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb, c)
"""
config
|> prepend newline
|> should
equal
"""
(f >> g)
(
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb,
c
)
"""
[<Test>]
let ``parenthesis around short composed function expression, tuple, 1700`` () =
formatSourceString false """((=) (ownerName, username))""" config
|> should
equal
"""((=) (ownerName, username))
"""
[<Test>]
let ``parenthesis around short composed function expression, tuple in if, 1700`` () =
formatSourceString false """if ((=) (ownerName, username)) then 6""" config
|> should
equal
"""if ((=) (ownerName, username)) then 6
"""
[<Test>]
let ``parenthesis around short composed function expression, no tuple, 1700`` () =
formatSourceString false """((=) ownerName)""" config
|> should
equal
"""((=) ownerName)
"""
[<Test>]
let ``parenthesis around short composed function expression, no tuple in if, 1700, part 2`` () =
formatSourceString false """if ((=) ownerName) then 6""" config
|> should
equal
"""if ((=) ownerName) then 6
"""
[<Test>]
let ``parenthesis around simple function expression`` () =
formatSourceString
false
"""
(ignore) ("Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn tooooooooooooooooooooooo stooooooooooooooooooooooooone", 42)
"""
config
|> prepend newline
|> should
equal
"""
(ignore)
(
"Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn Tuuuuuuuuuuuuurn tooooooooooooooooooooooo stooooooooooooooooooooooooone",
42
)
"""
[<Test>]
let ``parenthesis around simple function expression with single parenthesis argument`` () =
formatSourceString
false
"""
(ignore) ("Tuuuuuuuuuuuuurn tooooooooooooooooooooooo stooooooooooooooooooooooooone")
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
(ignore)
("Tuuuuuuuuuuuuurn tooooooooooooooooooooooo stooooooooooooooooooooooooone")
"""
[<Test>]
let ``parenthesis around simple function expression with single multiline parenthesis argument`` () =
formatSourceString
false
"
(ignore) (\"\"\"Tuuuuuuuuuuuuurn
tooooooooooooooooooooooo
stooooooooooooooooooooooooone\"\"\")
"
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"
(ignore)
(
\"\"\"Tuuuuuuuuuuuuurn
tooooooooooooooooooooooo
stooooooooooooooooooooooooone\"\"\"
)
"
[<Test>]
let ``multiline function application with single unit argument, 1469`` () =
formatSourceString
false
"""
namespace SomeNs
module SomeModule =
let GetNormalAccountsPairingInfoForWatchWallet(): Option<WatchWalletInfo> =
let initialAbs = initialFeeWithAMinimumGasPriceInWeiDictatedByAvailablePublicFullNodes.CalculateAbsoluteValue()
initialAbs / 100
"""
{ config with MaxLineLength = 80 }
|> prepend newline
|> should
equal
"""
namespace SomeNs
module SomeModule =
let GetNormalAccountsPairingInfoForWatchWallet
()
: Option<WatchWalletInfo> =
let initialAbs =
initialFeeWithAMinimumGasPriceInWeiDictatedByAvailablePublicFullNodes.CalculateAbsoluteValue
()
initialAbs / 100
"""
[<Test>]
let ``comment after app with single tuple arg, 1276`` () =
formatSourceString
false
"""
SomeFunction(arg1,
arg2,
arg3) // does something
SomeOtherFunction(arg1, arg2) // does another thing
"""
config
|> prepend newline
|> should
equal
"""
SomeFunction(arg1, arg2, arg3) // does something
SomeOtherFunction(arg1, arg2) // does another thing
"""
[<Test>]
let ``comment after app with single tuple arg, multiline format`` () =
formatSourceString
false
"""
SomeFunction(arg1,
arg2,
arg3) // does something
SomeOtherFunction(arg1, arg2) // does another thing
"""
{ config with MaxLineLength = 20 }
|> prepend newline
|> should
equal
"""
SomeFunction(
arg1,
arg2,
arg3
) // does something
SomeOtherFunction(
arg1,
arg2
) // does another thing
"""
[<Test>]
let ``string interpolation should not affect multiline function applications, 1771`` () =
formatSourceString
false
"""
let tryDataOperation =
let body =
let clauses =
[ mkSynMatchClause
(mkSynPatLongIdentSimple "Some")
(mkSynExprAppNonAtomic
(mkSynExprLongIdent $"this.{memberName}")
(mkSynExprParen (
mkSynExprTuple
[ mkSynExprIdent "state" ]
))) ]
mkSynExprMatch clauses
mkMember $"this.Try{memberName}" None [ mkSynAttribute "CustomOperation" (mkSynExprConstString $"try{memberName}") ] [ parameters ] (objectStateExpr body)
"""
{ config with
IndentSize = 2
DisableElmishSyntax = true }
|> prepend newline
|> should
equal
"""
let tryDataOperation =
let body =
let clauses =
[ mkSynMatchClause
(mkSynPatLongIdentSimple "Some")
(mkSynExprAppNonAtomic
(mkSynExprLongIdent $"this.{memberName}")
(mkSynExprParen (mkSynExprTuple [ mkSynExprIdent "state" ]))) ]
mkSynExprMatch clauses
mkMember
$"this.Try{memberName}"
None
[ mkSynAttribute "CustomOperation" (mkSynExprConstString $"try{memberName}") ]
[ parameters ]
(objectStateExpr body)
"""
[<Test>]
let ``comment after lambda inside parenthesis argument, 1822`` () =
formatSourceString
false
"""
module Foo =
let blah =
it
|> List.iter (fun (_, output) ->
thing
|> Map.iter (fun key value ->
match value with
| Ok (TestResult.Failure f) -> failwith ""
| Error e -> failwith ""
| _ -> () // hi!
)
)
"""
config
|> prepend newline
|> should
equal
"""
module Foo =
let blah =
it
|> List.iter (fun (_, output) ->
thing
|> Map.iter (fun key value ->
match value with
| Ok (TestResult.Failure f) -> failwith ""
| Error e -> failwith ""
| _ -> () // hi!
))
"""
[<Test>]
let ``comment after typeApp greater sign, 1861`` () =
formatSourceString
false
"""
x |> f<y> // some comment
"""
config
|> prepend newline
|> should
equal
"""
x |> f<y> // some comment
"""
[<Test>]
let ``single named arguments should have space surrounding the '=', 1877`` () =
formatSourceString
false
"""
let makeStreamReader x = new System.IO.StreamReader(path=x)"""
config
|> prepend newline
|> should
equal
"""
let makeStreamReader x = new System.IO.StreamReader(path = x)
"""
[<Test>]
let ``multiple named arguments should have space surrounding the '=', 1877`` () =
formatSourceString
false
"""
let makeStreamReader x y = new StreamReader(arg1=x, arg2=y)"""
config
|> prepend newline
|> should
equal
"""
let makeStreamReader x y = new StreamReader(arg1 = x, arg2 = y)
"""
[<Test>]
let ``print comments before named argument application`` () =
formatSourceString
false
"""
let Ok (content: string) =
// #if API_GATEWAY || MADAPI
APIGatewayHttpApiV2ProxyResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
// #if API_GATEWAY
//Headers = Map.empty.Add("Content-Type", "text/plain")
// #else
Headers = Map.empty.Add("Content-Type", "application/json")
// #endif
)
// #else
ApplicationLoadBalancerResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
Headers = Map.empty.Add("Content-Type", "text/plain")
)
// #endif
"""
config
|> prepend newline
|> should
equal
"""
let Ok (content: string) =
// #if API_GATEWAY || MADAPI
APIGatewayHttpApiV2ProxyResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
// #if API_GATEWAY
//Headers = Map.empty.Add("Content-Type", "text/plain")
// #else
Headers = Map.empty.Add("Content-Type", "application/json")
// #endif
)
// #else
ApplicationLoadBalancerResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
Headers = Map.empty.Add("Content-Type", "text/plain")
)
// #endif
"""
[<Test>]
let ``print trivia before named argument application, 2068`` () =
formatSourceString
false
"""
let Ok (content: string) =
#if API_GATEWAY || MADAPI
APIGatewayHttpApiV2ProxyResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
#if API_GATEWAY
Headers = Map.empty.Add("Content-Type", "text/plain")
#else
Headers = Map.empty.Add("Content-Type", "application/json")
#endif
)
#else
ApplicationLoadBalancerResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
Headers = Map.empty.Add("Content-Type", "text/plain")
)
#endif
"""
config
|> prepend newline
|> should
equal
"""
let Ok (content: string) =
#if API_GATEWAY || MADAPI
APIGatewayHttpApiV2ProxyResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
#if API_GATEWAY
Headers = Map.empty.Add("Content-Type", "text/plain")
#else
Headers = Map.empty.Add("Content-Type", "application/json")
#endif
)
#else
ApplicationLoadBalancerResponse(
StatusCode = int HttpStatusCode.OK,
Body = content,
Headers = Map.empty.Add("Content-Type", "text/plain")
)
#endif
"""