Sumitforyou

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

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.

Where Next?

Popular in Questions Top

Tee
can someone please explain to me how Enum.reduce works with maps
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
Harrisonl
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
Kagamiiiii
Student &amp; New to elixir. Nice language. I want to convert a english character, e.g. “a”, which is stored in a variable, to it’s asci...
New
vac
Hi, I'm quite new in Elixir and I'm trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and ...
New
stefanluptak
Hello everybody, usually, I use a 29" ultra-wide monitor for VSCode which can easily accomodate explorer (files panel) + file with code ...
New
LegitStack
I’m trying to make a websocket server in Phoenix or raw Elixir. I heard about gun, I think I could use cowboy, but since I’m not that sma...
New
kostonstyle
Hi all I want to have a unix time, from the current time plus 1 hour. DateTime.now + 1 hour How to get it in elixir? Thanks
New
beno
I will often find my self writing things similar to: case some_value do nil -&gt; something() "" -&gt; something() _ -&gt; someth...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New

Other popular topics Top

JakeBecker
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
1140 51847 244
New
William
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
lessless
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
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
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
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
beno
I will often find my self writing things similar to: case some_value do nil -&gt; something() "" -&gt; something() _ -&gt; someth...
New
skosch
To my knowledge, put_in, Map.update etc. all have the one limitation of not automatically creating intermediate keys when needed (for exa...
New

We're in Beta

About us Mission Statement