Papillon6814
Hello.
I’m reading elixir-lang/elixir for my study. I found a strange point in ExUnit.
That’s this.
defmacro assert({:=, meta, [left, right]} = assertion) do
code = escape_quoted(:assert, meta, assertion)
# If the match works, we need to check if the value
# is not nil nor false. We need to rewrite the if
# to avoid silly warnings though.
check =
suppress_warning(
quote do
case right do
x when x in [nil, false] ->
raise ExUnit.AssertionError,
expr: expr,
message: "Expected truthy, got #{inspect(right)}"
_ ->
:ok
end
end
)
__match__(left, right, code, check, __CALLER__)
end
I think the right variable should be unquoted.
defmacro my_if(condition, clauses) do
do_clause = Keyword.get(clauses, :do, nil)
else_clause = Keyword.get(clauses, :else, nil)
quote do
case unquote(condition) do
x when x in [false, nil] ->
unquote(else_clause)
_ ->
unquote(do_clause)
end
end
end
This is my_if function which is written in a book. I don’t know why both my_if and the assert work.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #elixirconf-us
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Aetherus
This clause of
asserthandles the pattern matching case likewhere
foois a pattern andbarcan be anything.Remember that atoms keep as is in the code and in the AST, and
falseandnilare atoms. So, ifrightis literallynilorfalsein the code, it isnilorfalsein the AST, too. And ifrightisnilorfalse, the assertion will definitely fail because pattern matching using=always returns the right hand side if it matches the left hand side, or raises an error if it does not match. So, in this specific case,unquote(right)should not be used.The other cases of pattern matching when
rightis not literallyfalseornilis handled by the linePapillon6814
Thank you for your answer!
Sorry, I’m not sure why it should not be unquoted…
I think variables in
quoteshould occurs an error without being unquoted.But
rightin above code is not unquoted. Why it does not occur any errors?Aetherus
Sorry, It was my misunderstanding of the code in ExUnit.
I stared at the code closely, and saw this:
Aetherus
By the way, it’s totally OK to access an undeclared variable inside
quote, for example, in a brand new IEx session,It does not raise error.
Papillon6814
Wow that’s true!
I don’t understand why

assertfunction works with the__match__function… Would you explain why?kip
When you try to perform a match that fails using
=then aMatchErrorexception will be raised. For example if you try{x} = 1iniexyou’ll get a match exception. That’s the normal expected behaviour.But …
In a test where we want to assert that a match occured and it doesn’t then we don’t want the match exception, we want a better error message. So what I think the code is doing is rewriting the match-and-bind expression into a
match?/2call.That is, its re-writing
{x} = 1into something likematch?({x}, 1). That way the assertion will get a Boolean result and it can then accept or refute the assertion and return a better error message.Papillon6814
Thank you for explaining that!