D4no0

D4no0

Reliable way to test Process.send_after/4

I have a few genservers that need to fetch some data from an external resource every 15 minutes. The solution I’m using is just plain Process.send_after/4.

The problem is when it comes to testing.

The way I did it in the past was to make the interval configurable and set it to something like 100ms and check for updates with Process.sleep/1 in tests. This works, however this seems more like a hack to me and slows down tests considerably if you have a lot of tests like this one, not to mention that it makes tests flaky in case the genserver is doing a lot of work.

Is there a better way to do this kind of testing?

Marked As Solved

mudasobwa

mudasobwa

Creator of Cure

I use mox for that.

defmodule Recurrent do
  @callback send_after(pid(), any(), non_neg_integer()) :: :ok
end

defmodule Recurrent.Impl do
  @behaviour Recurrent
  @impl Recurrent
  def send_after(pid, message, milliseconds),
    do: Process.send_after(pid, message, milliseconds)
end

That way you already have a single place to do whatever else while sending a message, like telemetrying it, or writing a log, or something. The testing becomes as easy as defining a mock for it.

Also Liked

LostKobrakai

LostKobrakai

Testing things that happen in isolation within an external process can either be polled (sleep) or you make the process inform the test (it sending a message when it did the thing). Your option here really is the latter.

I lately have sometimes gone the way of doing the latter through telemetry. I add a telemetry emit to the thing I’m interested in and in the test add a handler, which sends a message to the test process. I like this one for it being very not a home grown system, not specific to the tested process and also generally being a useful guidance on where telemetry might be useful given I also want to test it.

ausimian

ausimian

I don’t think your ‘configurable timer’ approach is too bad - why not set it to 1ms?

Other options include calling the genserver callback functions directly from your test process (you have to construct the state parameter yourself), but it rather depends on exactly what you want your tests to demonstrate.

mudasobwa

mudasobwa

Creator of Cure

In finitomata I mock my own internals to provide a fancy testing framework for the library via Finitomata. ExUnit. In a nutshell, it implements a listener which sends a message back to the test process, making it possible to simply assert_receive/2 in it.

Where Next?

Popular in Questions Top

Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
_russellb
I want to try my hand at web scraping. What tools/libraries do I need to use. I’m hoping to turn this into something professional so don’...
New
ycv005
I have followed this StackOverflow post to install the specific version of Erlang. And When I am running mix ecto.setup then getting fol...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
myronmarston
The Elixir Typespec docs show the following syntax for keyword lists in typespecs: # ... | [key: type] # keyword lis...
New
mgjohns61585
Could someone help me? I'm making my first elixir program, number guessing game. I can't figure out how to convert the user's guess from ...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
9mm
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
lanycrost
Hi everyone! I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New

Other popular topics Top

Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
977 41022 311
New
sergio
In Ruby, I can go: User.find_by(email: "foobar@email.com").update(email: "hello@email.com") How can I do something similar in Elixir? ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
Jim
As a follow up to my earlier question: I have the code compiling and running but not getting a successful login from the rest server. ...
New
lastday4you
I wanted to check elixir version in phoenix because i found that my elixir is 1.5 but when i use Enum.chunk_by it said the function is un...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? https://hexdocs.pm/ecto/Ecto.Repo.h...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID<0.412.0> terminating ** (Postgrex.Error) FATAL...
New
magnetic
Hey :wave:t3: Elixir community, I’ve been learning Elixir, and working on some side projects. My editor of choice is VSCode, and althoug...
New

We're in Beta

About us Mission Statement