forked from adobe/elixir-styler
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpipes_test.exs
More file actions
1362 lines (1224 loc) · 31.1 KB
/
Copy pathpipes_test.exs
File metadata and controls
1362 lines (1224 loc) · 31.1 KB
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
# Copyright 2024 Adobe. All rights reserved.
# This file is licensed to you under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License. You may obtain a copy
# of the License at http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software distributed under
# the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
# OF ANY KIND, either express or implied. See the License for the specific language
# governing permissions and limitations under the License.
defmodule Styler.Style.PipesTest do
use Styler.StyleCase, async: true
describe "big picture / readability" do
test "unnests multiple steps" do
assert_style("f(g(h(x))) |> j()", "x |> h() |> g() |> f() |> j()")
end
test "doesn't modify valid pipe" do
assert_style("""
a()
|> b()
|> c()
a |> b() |> c()
""")
end
test "extracts >0 arity functions" do
assert_style(
"""
M.f(a, b)
|> g()
|> h()
""",
"""
a
|> M.f(b)
|> g()
|> h()
"""
)
end
test "fixes nested pipes" do
assert_style(
"""
a
|> e(fn x ->
with({:ok, value} <- efoo(x), do: value)
|> ebar()
|> ebaz()
end)
|> b(fn x ->
with({:ok, value} <- foo(x), do: value)
|> bar()
|> baz()
end)
|> c
""",
"""
a
|> e(fn x ->
with_result = with({:ok, value} <- efoo(x), do: value)
with_result
|> ebar()
|> ebaz()
end)
|> b(fn x ->
with_result = with({:ok, value} <- foo(x), do: value)
with_result
|> bar()
|> baz()
end)
|> c()
"""
)
end
test "rewrites anonymous function invocations to use then" do
assert_style("a |> (& &1).()", "then(a, & &1)")
assert_style("a |> (& {&1, &2}).(b)", "(&{&1, &2}).(a, b)")
assert_style("a |> (& &1).() |> c", "a |> then(& &1) |> c()")
assert_style("a |> (fn x, y -> {x, y} end).() |> c", "a |> then(fn x, y -> {x, y} end) |> c()")
assert_style("a |> (fn x -> x end).()", "then(a, fn x -> x end)")
assert_style("a |> (fn x -> x end).() |> c", "a |> then(fn x -> x end) |> c()")
end
end
describe "block pipe starts" do
test "parent is a function invocation" do
assert_style(
"a(if x do y end |> foo(), b)",
"""
if_result =
if x do
y
end
if_result |> foo() |> a(b)
"""
)
end
test "handles arbitrary do-block macros" do
assert_style("""
IO.puts(
foo meow do
:foo
end
)
""")
assert_style(
"""
foo do
"foo"
end
|> IO.puts()
""",
"""
foo_result =
foo do
"foo"
end
IO.puts(foo_result)
"""
)
assert_style(
"""
foo meow? do
:meow
else
:bark
end
|> IO.puts()
""",
"""
foo_result =
foo meow? do
:meow
else
:bark
end
IO.puts(foo_result)
"""
)
end
test "block extraction: names aliased modules" do
assert_style(
"""
Foo.bar do
:ok
end
|> case do
:ok -> :ok
_ -> :error
end
""",
"""
bar_result =
Foo.bar do
:ok
end
case bar_result do
:ok -> :ok
_ -> :error
end
"""
)
end
test "macro with arg and do block" do
assert_style("""
"baz"
|> foo do
"foo"
end
|> IO.puts()
""")
end
test "variable assignment of a block" do
assert_style(
"""
x =
case y do
:ok -> :ok |> IO.puts()
:error -> :error
end
|> bar()
|> baz()
""",
"""
case_result =
case y do
:ok -> IO.puts(:ok)
:error -> :error
end
x =
case_result
|> bar()
|> baz()
"""
)
end
test "rewrites fors" do
assert_style(
"""
for(a <- as, do: a)
|> bar()
|> baz()
""",
"""
for_result = for(a <- as, do: a)
for_result
|> bar()
|> baz()
"""
)
end
test "rewrites unless" do
assert_style(
"""
unless foo do
bar
end
|> wee()
""",
"""
if_result =
if !foo do
bar
end
wee(if_result)
"""
)
end
test "rewrites with" do
assert_style(
"""
with({:ok, value} <- foo(), do: value)
|> bar()
|> baz()
""",
"""
with_result = with({:ok, value} <- foo(), do: value)
with_result
|> bar()
|> baz()
"""
)
end
test "rewrites conds" do
assert_style(
"""
cond do
x -> :ok
end
|> bar()
|> baz()
""",
"""
cond_result =
cond do
x -> :ok
end
cond_result
|> bar()
|> baz()
"""
)
end
test "rewrites case" do
assert_style(
"""
case x do
y -> z
end
|> foo()
""",
"""
y = x
case_result = z
foo(case_result)
"""
)
assert_style(
"""
def foo do
case x do
x -> x
y -> y
end
|> foo()
end
""",
"""
def foo do
case_result =
case x do
x -> x
y -> y
end
foo(case_result)
end
"""
)
end
test "rewrites if" do
assert_style(
"""
def foo do
if true do
nil
end
|> a()
|> b()
end
""",
"""
def foo do
if_result =
if true do
nil
end
if_result
|> a()
|> b()
end
"""
)
end
test "rewrites quote" do
assert_style(
"""
quote do
foo
end
|> bar()
|> baz()
""",
"""
quote_result =
quote do
foo
end
quote_result
|> bar()
|> baz()
"""
)
end
end
describe "single pipe issues" do
test "allows unquote single pipes" do
assert_style("foo |> unquote(bar)")
end
test "fixes simple single pipes" do
assert_style("b(a) |> c()", "a |> b() |> c()")
assert_style("a |> f()", "f(a)")
assert_style("x |> bar", "bar(x)")
assert_style("def a, do: b |> c()", "def a, do: c(b)")
end
test "keeps invocation on a single line" do
assert_style(
"""
foo
|> bar(baz, bop, boom)
""",
"""
bar(foo, baz, bop, boom)
"""
)
assert_style(
"""
foo
|> bar(baz)
""",
"""
bar(foo, baz)
"""
)
assert_style(
"""
def halt(exec, halt_message) do
%{exec | halted: true}
|> put_halt_message(halt_message)
end
""",
"""
def halt(exec, halt_message) do
put_halt_message(%{exec | halted: true}, halt_message)
end
"""
)
assert_style(
"""
if true do
false
end
|> foo(
bar
)
""",
"""
if_result =
if true do
false
end
foo(if_result, bar)
"""
)
end
test "onelines assignments" do
assert_style(
"""
x =
y
|> Enum.map(&f/1)
|> Enum.join()
""",
"x = Enum.map_join(y, &f/1)"
)
end
end
describe "valid pipe starts & unpiping" do
test "kernel unary starts" do
assert_style("!b |> c() |> d()", "!b |> c() |> d()")
assert_style("!x(b) |> c() |> d()")
assert_style("not(b) |> c() |> d()", "not b |> c() |> d()")
assert_style("not x(b) |> c() |> d()")
end
test "writes brackets for unpiped kwl" do
assert_style("foo(kwl: arg) |> bar()", "[kwl: arg] |> foo() |> bar()")
assert_style("%{a: foo(a: b, c: :d) |> bar()}", "%{a: [a: b, c: :d] |> foo() |> bar()}")
assert_style("%{a: foo([a: :b, c: :d]) |> bar()}", "%{a: [a: :b, c: :d] |> foo() |> bar()}")
end
test "allows fn" do
assert_style("""
fn
:ok -> :ok
:error -> :error
end
|> b()
|> c()
""")
end
test "recognizes infix ops as valid pipe starts" do
assert_style("(bar() == 1) |> foo()", "foo(bar() == 1)")
assert_style("(x in 1..100) |> foo()", "foo(x in 1..100)")
end
test "0 arity is just fine!" do
assert_style("foo() |> bar() |> baz()")
assert_style("Module.foo() |> bar() |> baz()")
end
test "ecto funtimes" do
for from <- ~w(from Query.from Ecto.Query.from) do
assert_style("""
#{from}(foo in Bar, where: foo.bool)
|> some_query_helper()
|> Repo.all()
""")
end
assert_style("^foo |> Ecto.Query.bar() |> Ecto.Query.baz()")
end
test "ranges" do
assert_style("start..stop//step |> foo()", "foo(start..stop//step)")
assert_style("start..stop//step |> foo() |> bar()")
assert_style("foo(start..stop//step) |> bar()", "start..stop//step |> foo() |> bar()")
end
end
describe "readability" do
test "rewrites then/2 when the passed function is a named function reference" do
assert_style "a |> then(&fun/1) |> c", "a |> fun() |> c()"
assert_style "a |> then(&(&1 / 1)) |> c", "a |> Kernel./(1) |> c()"
assert_style "a |> then(&(&1 * 2 / 1)) |> c()"
assert_style "a |> then(&fun/1)", "fun(a)"
assert_style "a |> then(&fun(&1)) |> c", "a |> fun() |> c()"
assert_style "a |> then(&fun(&1, d)) |> c", "a |> fun(d) |> c()"
assert_style "a |> then(&M.f(&1)) |> c", "a |> M.f() |> c()"
# Doesn't rewrite multiple refs / non-starting argument
assert_style "a |> then(&fun(d, &1)) |> c()"
assert_style "a |> then(&fun(&1, d, %{foo: &1})) |> c()"
# then + kernel ops
assert_style "a |> then(&(-&1)) |> c", "a |> Kernel.-() |> c()"
assert_style "a |> then(&(+&1)) |> c", "a |> Kernel.+() |> c()"
for op <- ~w(++ -- && || in - * + / > < <= >= == and or != !== === <>) do
assert_style "a |> then(&(&1 #{op} x)) |> c", "a |> Kernel.#{op}(x) |> c()"
end
# Doesn't rewrite non-kernel operators
for op <- ~w(||| &&& <<< >>> <<~ ~>> <~ ~> <~>) do
assert_style "a |> then(&(&1 #{op} x)) |> c()"
end
end
test "adds parens to 1-arity pipes" do
assert_style("a |> b |> c", "a |> b() |> c()")
end
end
describe "optimizations for stdlib functions" do
test "map/intersperse => map_intersperse" do
assert_style "a |> Enum.map(fun) |> Enum.intersperse(sep)", "Enum.map_intersperse(a, sep, fun)"
assert_style(
"""
a
|> Enum.map(fun)
|> Enum.intersperse(sep)
|> foo()
""",
"""
a
|> Enum.map_intersperse(sep, fun)
|> foo()
"""
)
end
test "filter/first => find" do
assert_style "a |> Enum.filter(fun) |> List.first()", "Enum.find(a, fun)"
assert_style "a |> Enum.filter(fun) |> List.first(default)", "Enum.find(a, default, fun)"
assert_style(
"""
a
|> Enum.filter(fun)
|> List.first()
|> foo()
""",
"""
a
|> Enum.find(fun)
|> foo()
"""
)
assert_style(
"""
a
|> Enum.filter(fun)
|> List.first(default)
|> foo()
""",
"""
a
|> Enum.find(default, fun)
|> foo()
"""
)
end
test "Enum.sort/Enum.reverse" do
assert_style("a |> Enum.sort(direction) |> Enum.reverse()")
assert_style("a |> Enum.sort(:asc) |> Enum.reverse()", "Enum.sort(a, :desc)")
assert_style("a |> Enum.sort(:desc) |> Enum.reverse()", "Enum.sort(a, :asc)")
assert_style("a |> Enum.sort() |> Enum.reverse()", "Enum.sort(a, :desc)")
end
test "reverse/concat" do
assert_style("a |> Enum.reverse() |> Enum.concat()")
assert_style("a |> Enum.reverse(bar) |> Enum.concat()")
assert_style("a |> Enum.reverse(bar) |> Enum.concat(foo)")
assert_style("a |> Enum.reverse() |> Enum.concat(foo)", "Enum.reverse(a, foo)")
assert_style(
"""
a
|> Enum.reverse()
|> Enum.concat([bar, baz])
|> Enum.sum()
""",
"""
a
|> Enum.reverse([bar, baz])
|> Enum.sum()
"""
)
end
test "reverse/Kernel.++" do
assert_style("a |> Enum.reverse(bar) |> Kernel.++(foo)")
assert_style("a |> Enum.reverse() |> Kernel.++(foo)", "Enum.reverse(a, foo)")
assert_style(
"""
a
|> Enum.reverse()
|> Kernel.++([bar, baz])
|> Enum.sum()
""",
"""
a
|> Enum.reverse([bar, baz])
|> Enum.sum()
"""
)
end
test "FilterFilter: combines two Enum.filter calls with &&" do
assert_style(
"""
list
|> Enum.filter(f1)
|> Enum.filter(f2)
""",
"""
Enum.filter(list, fn item -> f1.(item) && f2.(item) end)
"""
)
end
test "FilterFilter: inlines captures and inline-fn predicates" do
assert_style(
"""
list
|> Enum.filter(&String.contains?(&1, "x"))
|> Enum.filter(fn s -> String.contains?(s, "a") end)
""",
"""
Enum.filter(list, fn s -> String.contains?(s, "x") && String.contains?(s, "a") end)
"""
)
end
test "RejectFilter: inlines `&fun/1` style captures" do
assert_style(
"""
list
|> Enum.reject(&is_nil/1)
|> Enum.filter(&is_map/1)
""",
"""
Enum.filter(list, fn item -> not is_nil(item) && is_map(item) end)
"""
)
end
test "FilterFilter: skips rewrite when chosen var name would shadow a closure" do
# `item` is closed over by f1; merging with hardcoded `:item` would silently shadow it.
assert_style("""
list
|> Enum.filter(&(&1.thing == item))
|> Enum.filter(f2)
""")
# Bare-reference predicate named `:item` — same trap.
assert_style("""
list
|> Enum.filter(item)
|> Enum.filter(f2)
""")
end
test "FilterFilter / RejectFilter: skips rewrite when a predicate has a multi-statement fn body" do
# The collapsed lambda would be uglier than the original chain — leave it alone.
assert_style("""
schema_modules
|> Enum.reject(&(&1 in context.ignore_list))
|> Enum.filter(fn schema_module ->
schema = schema_module.schema()
schema_title = schema.title
not is_nil(schema.example) and not MapSet.member?(set, schema_title)
end)
""")
assert_style("""
list
|> Enum.filter(fn x ->
y = x.a
y > 0
end)
|> Enum.filter(f2)
""")
end
test "FilterFilter: leaves non-Enum.filter chains alone" do
assert_style("""
list
|> Stream.filter(f1)
|> Stream.filter(f2)
""")
assert_style("""
list
|> Enum.map(f1)
|> Enum.filter(f2)
""")
end
test "RejectReject: combines two Enum.reject calls with ||" do
assert_style(
"""
list
|> Enum.reject(f1)
|> Enum.reject(f2)
""",
"""
Enum.reject(list, fn item -> f1.(item) || f2.(item) end)
"""
)
end
test "FilterReject: collapses Enum.filter |> Enum.reject into one filter with the second negated" do
assert_style(
"""
list
|> Enum.filter(f1)
|> Enum.reject(f2)
""",
"""
Enum.filter(list, fn item -> f1.(item) && !f2.(item) end)
"""
)
end
test "FilterReject: leaves chains alone when the modules don't both match Enum" do
assert_style("""
list
|> Stream.filter(f1)
|> Enum.reject(f2)
""")
assert_style("""
list
|> Enum.filter(f1)
|> Stream.reject(f2)
""")
end
test "RejectFilter: collapses Enum.reject |> Enum.filter into one filter with the first negated" do
assert_style(
"""
list
|> Enum.reject(f1)
|> Enum.filter(f2)
""",
"""
Enum.filter(list, fn item -> !f1.(item) && f2.(item) end)
"""
)
end
test "RejectFilter: leaves chains alone when the modules don't both match Enum" do
assert_style("""
list
|> Stream.reject(f1)
|> Enum.filter(f2)
""")
assert_style("""
list
|> Enum.reject(f1)
|> Stream.filter(f2)
""")
end
test "MapMap: collapses two named-capture maps into a pipe" do
assert_style(
"""
list
|> Enum.map(&Mod.foo/1)
|> Enum.map(&Mod.bar/1)
""",
"""
Enum.map(list, fn arg1 -> arg1 |> Mod.foo() |> Mod.bar() end)
"""
)
assert_style(
"""
list
|> Enum.map(&foo/1)
|> Enum.map(&bar/1)
""",
"""
Enum.map(list, fn arg1 -> arg1 |> foo() |> bar() end)
"""
)
end
test "MapMap: collapses &fun(&1) shorthand into a pipe" do
assert_style(
"""
list
|> Enum.map(&foo(&1))
|> Enum.map(&Mod.bar(&1))
""",
"""
Enum.map(list, fn arg1 -> arg1 |> foo() |> Mod.bar() end)
"""
)
end
test "MapMap: pivots on the first arg of f1 when its placeholder isn't there" do
# User case from billing_core/.../process_bloomberg_import.ex. Both sides are inlineable;
# f1 puts the placeholder in position 2, so the merge pivots on `import_record` (f1's first
# arg). f1 is a capture so contributes no name; the merged lambda picks up `changeset` from
# f2's `fn changeset -> ...`.
assert_style(
"""
list
|> Enum.map(&build_changeset(import_record, &1))
|> Enum.map(fn changeset -> Repo.insert(changeset, on_conflict: :nothing) end)
""",
"""
Enum.map(list, fn changeset -> import_record |> build_changeset(changeset) |> Repo.insert(on_conflict: :nothing) end)
"""
)
end
test "MapMap: skips when either side can't be cleanly inlined" do
# Variables (could be any function), multi-`&1` captures (would call f1 twice), and inline
# fns whose body uses the var more than once or zero times — leave those alone.
assert_style("""
list
|> Enum.map(f1)
|> Enum.map(f2)
""")
assert_style("""
list
|> Enum.map(&foo/1)
|> Enum.map(&(&1 + &1))
""")
assert_style("""
list
|> Enum.map(fn x -> x + x end)
|> Enum.map(&Mod.fun/1)
""")
end
test "MapMap: regression — extends an already-piped fn body without producing a malformed single-arg pipe" do
# Repro from a real codebase: f1's body is itself a pipe (`element |> String.replace(...) |>
# ...`). The merge needs to leave that pipe alone and just extend it with f2's call. Earlier,
# `pipify` mis-treated the inner `:|>` as a regular call and produced `{:|>, _, [single_arg]}`,
# which crashed `fix_pipe_start`.
assert_style(
"""
status
|> Enum.map(fn element ->
element |> String.replace(~r/([A-Z])/, "_\\\\1") |> String.downcase()
end)
|> Enum.map(fn element -> String.to_atom(element) end)
""",
"""
Enum.map(status, fn element -> element |> String.replace(~r/([A-Z])/, "_\\\\1") |> String.downcase() |> String.to_atom() end)
"""
)
end
test "MapMap: skips when the merged body wouldn't make a 2+ stage pipe" do
# `&(&1 + 1)` inlines to `arg + 1` which isn't a pipify-able call, so the merge would only
# produce a single pipe (which Styler immediately undoes). Don't bother starting.
assert_style("""
list
|> Enum.map(&(&1 + 1))
|> Enum.map(&foo/1)
""")
end
test "MapMap: skips when the iteration var name collides with a closure var in f2" do
# Reported by Cursor Bugbot: picking f1's param name as the merged lambda's parameter would
# shadow a same-named closure variable referenced in f2's body, silently changing semantics.
assert_style("""
list
|> Enum.map(fn config -> transform(config) end)
|> Enum.map(fn x -> apply_with(x, config) end)
""")
assert_style("""
list
|> Enum.map(fn config -> transform(config) end)
|> Enum.map(&apply_with(&1, config))
""")
# Default `:arg1` iter-var case (neither side names its iter-var): a closure named `arg1` in
# f1 must also block the merge.
assert_style("""
list
|> Enum.map(&build_changeset(arg1, &1))
|> Enum.map(&Repo.insert/1)
""")
end
test "MapMap: leaves non-Enum.map chains alone" do
assert_style("""
list
|> Stream.map(f1)
|> Stream.map(f2)
""")
assert_style("""
list
|> Enum.map(f1)
|> Enum.filter(f2)
""")
end
test "filter/count" do
for enum <- ~w(Enum Stream) do
assert_style(
"""
a
|> #{enum}.filter(fun)
|> Enum.count()
|> IO.puts()
""",
"""
a
|> Enum.count(fun)
|> IO.puts()
"""
)
assert_style(
"""
a
|> b()
|> #{enum}.filter(fun)
|> Enum.count()
""",
"""
a
|> b()
|> Enum.count(fun)
"""
)
assert_style(
"""
if true do
[]
else
[a, b, c]
end
|> #{enum}.filter(fun)
|> Enum.count()
""",
"""
if_result =
if true do
[]
else
[a, b, c]
end
Enum.count(if_result, fun)
"""
)
end
end