-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntax_monadic_test.exs
68 lines (64 loc) · 1.78 KB
/
syntax_monadic_test.exs
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
defmodule SyntaxMonadicTest do
use ExUnit.Case
alias Cat.{Either, Result, Syntax}
require Syntax
test "convert `with` expressions to nested `Monad.flat_map` and `Functor`.map" do
expr = quote do
Syntax.monadic do
with a <- Either.right(1),
_ = IO.puts("a = #{a}"),
b <- Either.left("!"),
_ = IO.puts("b = #{b}"),
do: a + b
end
end
expected =
"""
Cat.Monad.flat_map(Either.right(1), fn a ->
IO.puts(\"a = \#{a}\")
Cat.Functor.map(Either.left(\"!\"), fn b ->
IO.puts(\"b = \#{b}\")
a + b
end)
end)\
"""
assert show_code(expr) == expected
assert eval_code(expr) == Either.left("!")
end
test "convert `with` expressions with `else` clause to `MonadError.recover`" do
expr = quote do
Syntax.monadic do
with a <- Result.lift({:ok, 1}),
_ = IO.puts("a = #{a}"),
b <- Result.fail("!"),
_ = IO.puts("b = #{b}")
do a + b
else
failures ->
Enum.each(failures, &(IO.inspect(&1)))
Result.ok("-")
end
end
end
expected =
"""
Cat.MonadError.recover(Cat.Monad.flat_map(Result.lift({:ok, 1}), fn a ->
IO.puts("a = \#{a}")
Cat.Functor.map(Result.fail("!"), fn b ->
IO.puts("b = \#{b}")
a + b
end)
end), fn failures ->
Enum.each(failures, &(IO.inspect(&1)))
Result.ok("-")
end)\
"""
assert show_code(expr) == expected
assert eval_code(expr) == Result.ok("-")
end
defp show_code(expr), do: Macro.to_string(Macro.expand(expr, __ENV__))
defp eval_code(expr) do
{result, _} = Code.eval_quoted(expr, [], __ENV__)
result
end
end