Add users/authentication with phx.gen.auth

This commit is contained in:
Thelonius Kort
2022-12-26 15:30:06 +01:00
parent 81466c3941
commit ad2f1e8ea0
31 changed files with 3317 additions and 0 deletions

View File

@ -35,4 +35,30 @@ defmodule OutlookWeb.ConnCase do
Outlook.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 = Outlook.AccountsFixtures.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 = Outlook.Accounts.generate_user_session_token(user)
conn
|> Phoenix.ConnTest.init_test_session(%{})
|> Plug.Conn.put_session(:user_token, token)
end
end