This commit is contained in:
2024-03-30 13:33:13 +01:00
parent 2a3656018b
commit 5b9e380a86
32 changed files with 3378 additions and 4 deletions

View File

@ -35,4 +35,30 @@ defmodule WebmonWeb.ConnCase do
Webmon.DataCase.setup_sandbox(tags)
{:ok, conn: Phoenix.ConnTest.build_conn()}
end
@doc """
Setup helper that registers and logs in users.
setup :register_and_log_in_user
It stores an updated connection and a registered user in the
test context.
"""
def register_and_log_in_user(%{conn: conn}) do
user = Webmon.AccountFixtures.user_fixture()
%{conn: log_in_user(conn, user), user: user}
end
@doc """
Logs the given `user` into the `conn`.
It returns an updated `conn`.
"""
def log_in_user(conn, user) do
token = Webmon.Account.generate_user_session_token(user)
conn
|> Phoenix.ConnTest.init_test_session(%{})
|> Plug.Conn.put_session(:user_token, token)
end
end