feat(auth): add auth through phx.gen.auth

This commit is contained in:
2024-10-22 00:19:26 +00:00
parent 64016ef098
commit 3f40253559
30 changed files with 3377 additions and 9 deletions

View File

@@ -0,0 +1,31 @@
defmodule Slax.AccountsFixtures do
@moduledoc """
This module defines test helpers for creating
entities via the `Slax.Accounts` context.
"""
def unique_user_email, do: "user#{System.unique_integer()}@example.com"
def valid_user_password, do: "hello world!"
def valid_user_attributes(attrs \\ %{}) do
Enum.into(attrs, %{
email: unique_user_email(),
password: valid_user_password()
})
end
def user_fixture(attrs \\ %{}) do
{:ok, user} =
attrs
|> valid_user_attributes()
|> Slax.Accounts.register_user()
user
end
def extract_user_token(fun) do
{:ok, captured_email} = fun.(&"[TOKEN]#{&1}[TOKEN]")
[_, token | _] = String.split(captured_email.text_body, "[TOKEN]")
token
end
end