wceolin
I’m using Mox to mock some modules in my app. Usually, it works fine but I have a function that I’m calling inside FLAME.call/2 and it broke my mock:
FLAME.call(Zoonk.FLAME.ImageOptimization, fn ->
Zoonk.Storage.optimize!(key, args["size"] || 500)
end)
After I added it to FLAME.call/2, I started getting the following error:
** (Mox.UnexpectedCallError) no expectation defined for Zoonk.Storage.StorageAPIMock.optimize!/2 in process #PID<0.5593.0> with args ["16.png", 500]
(mox 1.1.0) lib/mox.ex:820: Mox.__dispatch__/4
(zoonk 0.1.0) lib/storage/storage_context.ex:177: Zoonk.Storage.optimize!/2
(flame 0.2.0) lib/flame/runner.ex:431: anonymous fn/3 in FLAME.Runner.remote_call/4
I’ve tried calling Mox.allow/3 in test_helper.ex but it didn’t work:
Mox.allow(Zoonk.Storage.StorageAPIMock, self(), fn ->
GenServer.whereis(Zoonk.FLAME.ImageOptimization)
end)
Any ideas how to make it work inside FLAME.call/2? Thanks!
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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 have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Other Trending Topics
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
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Latest Phoenix Threads
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
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
Zoonk.FLAME.ImageOptimizationis the name of theFLAME.Poolprocess that manages runners. It receives a:checkoutmessage and returns the actual PID of the runner, which is what you’d need to share the mock with.wceolin
Thanks for the pointer but I’m not sure I understood it (sorry, I’m very new to Elixir). It looks like:
FLAME.Poolis the process that manages runners. That’s the process I need.:checkoutmessages that returns the PID I need.checkout_runnerfunction, which is called on the handle_call callback.Do I need to listen to a callback somewhere? Doing some GPT-driven research, it suggests I need to call
GenServer.call(:flame_pool, :checkout)but that doesn’t seem to return the correct PID. GPT isn’t very good with Elixir, unfortunately.I know I can probably use set_mox_global (that seems to be what the FLAME codebase is using) but I’d love to understand how this actually works because I feel a bit lost here.
al2o3cr
There are three processes involved here:
Moxfunctions and the code-under-testFLAME.Pool, namedZoonk.FLAME.ImageOptimizationZoonk.Storage.optimize!The
Mox.allowyou posted in the original post is sharing the mock with the second process, but it’s actually needed in the third.FLAME.call“checks out” a runner and then sends it work; doing a checkout outside of that will return a different runner process from the pool, so that won’t help.Your options, IMO, are:
FLAME.callin a function and using Mox to replace that. Then, test the code inside theFLAME.callseparately.wceolin
I see, thanks. I thought there was a way to get the PID of that third process to use with
Mox.allow.I was trying to avoid running tests synchronously. In my initial tests, the runtime doubled from 3s to 6s, but moving those sync tests to a separate module brought it back to 3s. It seems like the best option for now.