Sumitforyou
EXQ Mocking for testing fails
Using Exq as below
test.exs
config :exq,
name: Exq.Mock,
# adapter: Exq.Mock,
queue_adapter: Exq.Adapters.Queue.Mock,
start_on_application: false
test_helper.exs
Exq.Mock.start_link(mode: :fake)
MyApp
Exq.enqueue_in(Exq, "sendbird", @time_delay, F, [x, y])
Tests
** (exit) exited in: GenServer.call(Exq.Mock, {:enqueue, #PID<0.1439.0>, :enqueue_in, [Exq, "sendbird", 3, F, [x, y], []]}, 30000)
** (EXIT) an exception was raised:
** (FunctionClauseError) no function clause matching in Exq.Manager.Server.handle_call/3
The following arguments were given to Exq.Manager.Server.handle_call/3:
# 1
{:enqueue, #PID<0.1439.0>, :enqueue_in, [Exq, "sendbird", 3, F, [x, y], []]}
# 2
{#PID<0.1439.0>, [:alias | #Reference<0.2056019793.2766733316.7523>]}
# 3
%Exq.Manager.Server.State{dequeuers: %{"default" => {Exq.Dequeue.Local, %Exq.Dequeue.Local.State{current: 0, max: 100}}}, enqueuer: Exq.Mock.Enqueuer, metadata: Exq.Mock.Worker.Metadata, middleware: Exq.Mock.Middleware.Server, namespace: "exq", node_id: "MacBook-Pro", pid: #PID<0.1436.0>, poll_timeout: 100, queues: ["default"], redis: Exq.Mock.Redis.Client, scheduler_poll_timeout: 200, shutdown_timeout: 5000, stats: Exq.Mock.Stats, workers_sup: Exq.Mock.Worker.Sup}
Attempted function clauses (showing 6 out of 6):
def handle_call(:redis, _from, state)
def handle_call(:subscriptions, _from, state)
def handle_call({:subscribe, queue}, _from, state)
def handle_call({:subscribe, queue, concurrency}, _from, state)
def handle_call({:unsubscribe, queue}, _from, state)
def handle_call(:unsubscribe_all, _from, state)
stacktrace:
(exq 0.16.2) lib/exq/manager/server.ex:183: Exq.Manager.Server.handle_call/3
(stdlib 3.17.2) gen_server.erl:721: :gen_server.try_handle_call/4
(stdlib 3.17.2) gen_server.erl:750: :gen_server.handle_msg/6
(stdlib 3.17.2) proc_lib.erl:226: :proc_lib.init_p_do_apply/3
stacktrace:
(elixir 1.13.4) lib/gen_server.ex:1030: GenServer.call/3
(exq 0.16.2) lib/exq/mock.ex:92: Exq.Mock.enqueue_in/6
Can anyone help me in how to use mock in exq for testing
I am having the above issue.
Am I missing some configuration or implementation of EXQ is incorrect ?
First Post!
ananthakumaran
The message is going to incorrect GenServer, which is the reason for the function clause error.
Exq.Mock.start_link(mode: :fake)
Inspect the return value and if it is {:error, {:already_started, #PID<...>}}, then the issue is due to the incorrect name in the config.
config :exq,
name: Exq.Mock,
Exq.Mock is used by mock server by default, so you can’t use that name elsewhere. Change it to Exq and it might fix your issue.
Popular in Questions
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
In the Dialyzer docs ( http://erlang.org/doc/man/dialyzer.html#requesting-or-suppressing-warnings-in-source-files ), there is a way to tu...
New
What is most correct way to open, read and parse JSON file with poison?
For example if we have example.json file in root of some projec...
New
If I have a string “1000 cfu/ml” . I want to remove the characters and / and space . So the string is like this
"1000"
What is the ...
New
Hi,
I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
Mix format works fine if run from the cmd. I’ve followed this to facilitate the implementation into VSC which involves downloading an ext...
New
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New
To simplify some tasks at work, I wrote and published this package yesterday. It’s a simple macro that enables Access behaviour on struct...
New
Background
Let’s assume I have a typical GenServer that receives messages as requests, does some operation in a DB and returns responses....
New
Other popular topics
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service.
Currently when I de...
New
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
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
Is there a way to get the call stack or stack trace at any point in the code? Not from exceptions, but an expression that returns how the...
New
Hey all,
I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
Hi guys, i’m new in the Elixir world, and i have to say, that i love it!
i’m having some problem to understand anonymous functions with ...
New
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
I have a super simple question about elixir - how would I take a file like this
foo bar baz
and output a new file that enumerates th...
New







