ryanzidago
Hi all,
In this article, I make the case for each test owning its setup.
Usually I forbid my AI agents to use the setup callbacks; I much prefer when tests are portable.
For example at work during code reviews, I often ask the AI agent to prove its finding by writing a failing test. Once the test is drafted, I ask it to publish it as a GitHub inline comment:
- I use the test as a tool to illustrate the agent’s point
- If the test assertions are valid, the author of the PR just needs to fix it
- the setup does not get in the way because the test is self-sufficient to be understood, you can just read the comment and get it, instead of trying to find the corresponding setup.
Even with huge setups, I prefer no common setup callbacks and have each test manually defininig their setup.
Let me know what you think!
Trending in Blog Posts
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Hey everyone! :waving_hand:
I’ve published Part 7 of the Building Distributed Systems in Elixir series, where we build core distributed ...
New
An educational side project in Elixir, Phoenix, and Tauri. I share what I learned while wiring Automerge into the BEAM, including how I s...
New
So, instead of wasting my afternoon arguing with anonymous handles on X, I turned to my trusty, soulless assistant and said: “Listen, ple...
New
Process labels are useful for visualization and debugging. Here’s why you should use them.
New
New article: Elixir Project Structure — From mix new to a Growing Codebase
I’ve published a new article in my Elixir learning series on d...
New
What happens if you design tools for LLMs instead of letting LLM use human tools ?
Wrote a blog on why and what that enables.
As I see ...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
nathanl
I strongly agree. If we want to DRY up duplication, we can do it like we do anywhere else, using functions.
test "does a thing" do%{stuff: stuff} = setup_the_stuff(%{which: :stuff})# test content hereendWith this approach, if I want to know what stuff was setup, I know to inspect the function(s) that the test called and/or the data they returned.
Another article that argues the same case:
ryanzidago
Ah yes! Strong article as well with strong arguments, especially with unused data and mystery guests!
Awlexus
Nitpick for the first example, I think you can completely side-step problem with the magic number by using the product price, like the test said it would
wrt to large, shared setup blocks like the one in your example
Elixir already provides tools that make it possible to balance the of setup blocks
Setup functions can be changed
Instead of writing one large block you can build composable setup blocks. for example
Then define the setup blocks
Using tags to modify setups per test
using
@tagwe can inject some values into the context ourselves, which we can use to modify shared setups to the needs of the test.Using these features the first test could be rewritten like this, allowing you to keep the tests (Not that I recommend this in particular, because using the product price directly would be preferred)
I do not disagree with the points presented, but I prefer the ability to compose and to extend when possible. Also dicipline your Agents early on with DRY or else you’ll find the same function 5 times in different places and with different names.
johantell
yes! I’ve been advocating for this for a long time and I’m happy that I managed to fully align my team around it early on
krasenyp
Good article but there’s an issue with the examples. Too much reliance on ExMachina. This can bite you pretty bad because inserts like this might not encode invariants which the business logic expects. Use your app’s API to prepare the data for your tests. If you can’t then you have a big problem.
ryanzidago
Interesting, and it might be worth another blog post!
I agree that
insert(:product)can potentially create a database-valid record that would be impossible to create through the real application.There is a tradeoff to using your application’s business logic for test setup:
I haven’t encountered enough factory-related problems to justify paying those costs in every test.
For focused tests, I still prefer simple ExMachina-style factories whose defaults represent valid domain state, while keeping the values relevant to the behavior explicit in the test.
Though I would definitely use the application’s business logic when the workflow or the invariants it establishes are part of what the test needs to prove / if it makes setting up the test scenario significantly easier:
fuelen
I argued the general case for this in another thread so I won’t repeat it.
I’d say mocks are a one-time cost with Mox rather than a per-test one. Global
stubin setup,expectonly in the tests that assert on the interaction.Side effects are real, and my answer is the same as in that thread. Skip the normal flow for the one step that’s too heavy, with a comment saying why.
I’d flip this around. The absence of it is the bigger cost. The schema grows an intermediate table, the real flow starts creating a membership, and
insert(:user, company: company)stays green. Nothing failed, so nothing told you that your setup now describes a state your application no longer produces. Setup that goes through your context functions either breaks loudly when the flow changes or picks up the change on its own.The “centralized setup layer built on functions” I recommended there is a library I maintain, I just didn’t name it at the time: seed_factory. It resolves dependent entities automatically, which is what makes going through business logic affordable.
Which brings me back to your original point. Rewriting ex_machina tests this way over the last three years, the setup often comes out shorter. I noticed that we mostly stopped moving setup into
setupblocks. My read is that people extract setup mainly once it gets long, so shared setup is partly a symptom of expensive setup.One day I’ll write the blog post about the road from ex_machina to seed_factory