ijunaidfarooq
I have a simple GenServer making an HTTP request
defmodule GamePlay do
use GenServer
alias Wrapper
def start_link(_args) do
GenServer.start_link(__MODULE__, %{}, name: __MODULE__)
end
def init(state) do
{:ok, state, {:continue, :put_mapping}}
end
def handle_continue(:put_mapping, state) do
mapping = %{
"index_patterns" => ["game_play-*"]
}
config = Application.get_env(:search_flask, :elasticsearch_seeds, [])
if Keyword.get(config, :enabled?, true) do
Wrapper.create_template_mappings("game_play", mapping)
end
{:noreply, state}
end
end
and I am trying to put to test using Req, in Wrapper, I am sending an HTTP request using Req. but it only works once when I delete _build/test folder after that it stops working
defmodule GamePlayTest do
use ExUnit.Case, async: true
alias GamePlay
alias Wrapper
describe "GamePlay" do
setup do
on_exit(fn ->
Req.Test.verify_on_exit!()
end)
:ok
end
test "sends the correct request to Elasticsearch" do
Req.Test.stub(Wrapper, fn conn ->
Req.Test.json(
conn,
%{"acknowledged" => true}
)
end)
assert {:ok, pid} = GamePlay.start_link(%{})
assert %Req.Response{body: %{"acknowledged" => true}, status: 200} =
Req.get!(Application.get_env(:search_flask, :elasticsearch_req_options, []))
end
end
end
I have this in test.exs as well.
config :search_flask,
elasticsearch_req_options: [
plug: {Req.Test, Wrapper}
]
the is the error.
** (EXIT from #PID<0.570.0>) an exception was raised:
** (RuntimeError) cannot find mock/stub Wrapper in process #PID<0.571.0>
(req 0.5.6) lib/req/test.ex:399: Req.Test.__fetch_plug__/1
(req 0.5.6) lib/req/test.ex:632: Req.Test.call/2
(req 0.5.6) lib/req/steps.ex:927: Req.Steps.run_plug/1
(req 0.5.6) lib/req/request.ex:1103: Req.Request.run_request/1
(req 0.5.6) lib/req/request.ex:1047: Req.Request.run/1
(search_flask 1.3.0) lib/game_play.ex:47: GamePlay.handle_continue/2
(stdlib 6.0) gen_server.erl:2163: :gen_server.try_handle_continue/3
(stdlib 6.0) gen_server.erl:2072: :gen_server.loop/7
(stdlib 6.0) proc_lib.erl:329: :proc_lib.init_p_do_apply/3
the test is simple as well but it only reaches to Wrapper.create_template_mappings only once after that it just keep failing.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Other Trending Topics
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
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
The issue is that you’re setting the stub in the test process, but then attempting to use the stub in the
GamePlayprocess.Using an explicit allowance should help - the second example for
Req.Testis nearly identical to your setup.ijunaidfarooq
Thank you. one last thing though when I add this geneserver to application.ex in children, this error rises again but without being in children list this works fine.
Should I just exclude them from children when running in test mode?
tubedude
@ijunaidfarooq I came up to a similar issue and solved like this:
Check that out and see if it helps. It is working. But I still don’t know if that is the best solution.
ijunaidfarooq
Thank you.