live_beats/test/support/conn_case.ex

67 lines
1.9 KiB
Elixir
Raw Permalink Normal View History

2021-09-02 18:00:57 +00:00
defmodule LiveBeatsWeb.ConnCase do
@moduledoc """
This module defines the test case to be used by
tests that require setting up a connection.
Such tests rely on `Phoenix.ConnTest` and also
import other functionality to make it easier
to build common data structures and query the data layer.
Finally, if the test case interacts with the database,
we enable the SQL sandbox, so changes done to the database
are reverted at the end of every test. If you are using
PostgreSQL, you can even run database tests asynchronously
by setting `use LiveBeatsWeb.ConnCase, async: true`, although
this option is not recommended for other databases.
"""
use ExUnit.CaseTemplate
2021-12-14 15:35:51 +00:00
@endpoint LiveBeatsWeb.Endpoint
import Phoenix.ConnTest
2021-09-02 18:00:57 +00:00
using do
quote do
# Import conveniences for testing with connections
2022-11-17 20:36:58 +00:00
use LiveBeatsWeb, :verified_routes
2021-09-02 18:00:57 +00:00
import Plug.Conn
import Phoenix.ConnTest
import LiveBeatsWeb.ConnCase
2021-12-14 15:35:51 +00:00
import unquote(__MODULE__)
2021-09-02 18:00:57 +00:00
alias LiveBeatsWeb.Router.Helpers, as: Routes
# The default endpoint for testing
@endpoint LiveBeatsWeb.Endpoint
end
end
2021-12-16 17:19:02 +00:00
defp wait_for_children(children_lookup) when is_function(children_lookup) do
Process.sleep(100)
for pid <- children_lookup.() do
ref = Process.monitor(pid)
assert_receive {:DOWN, ^ref, _, _, _}, 1000
end
end
2021-09-02 18:00:57 +00:00
setup tags do
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(LiveBeats.Repo, shared: not tags[:async])
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end)
2021-12-16 17:19:02 +00:00
on_exit(fn ->
wait_for_children(fn -> LiveBeatsWeb.Presence.fetchers_pids() end)
end)
2021-09-02 18:00:57 +00:00
{:ok, conn: Phoenix.ConnTest.build_conn()}
end
2021-12-14 15:35:51 +00:00
def log_in_user(conn, user) do
conn
|> Phoenix.ConnTest.bypass_through(LiveBeatsWeb.Router, [:browser])
|> get("/")
|> LiveBeatsWeb.UserAuth.log_in_user(user)
|> Phoenix.ConnTest.recycle()
end
2021-09-02 18:00:57 +00:00
end