This commit is contained in:
parent
ff9b3bc5f3
commit
a6f9de3eab
6 changed files with 201 additions and 145 deletions
|
|
@ -34,14 +34,14 @@ defmodule MvWeb.ConnCase do
|
|||
@doc """
|
||||
Creates a test user and returns the user struct.
|
||||
Accepts attrs to override default values.
|
||||
|
||||
|
||||
Password handling:
|
||||
- If `hashed_password` is provided in attrs, it's used directly
|
||||
- If `password` is provided in attrs, it gets hashed automatically
|
||||
- If neither is provided, uses default password "password"
|
||||
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
create_test_user() # Default user with unique email
|
||||
create_test_user(%{email: "custom@example.com"}) # Custom email
|
||||
create_test_user(%{password: "secret123"}) # Custom password (gets hashed)
|
||||
|
|
@ -50,35 +50,38 @@ defmodule MvWeb.ConnCase do
|
|||
def create_test_user(attrs \\ %{}) do
|
||||
# Generate unique values to avoid conflicts
|
||||
unique_id = System.unique_integer([:positive])
|
||||
|
||||
|
||||
default_attrs = %{
|
||||
email: "user#{unique_id}@example.com",
|
||||
oidc_id: "oidc#{unique_id}"
|
||||
}
|
||||
|
||||
|
||||
# Merge provided attrs with defaults
|
||||
user_attrs = Map.merge(default_attrs, attrs)
|
||||
|
||||
|
||||
# Handle password/hashed_password
|
||||
final_attrs = cond do
|
||||
# If hashed_password is already provided, use it as-is
|
||||
Map.has_key?(user_attrs, :hashed_password) ->
|
||||
user_attrs
|
||||
|
||||
# If password is provided, hash it
|
||||
Map.has_key?(user_attrs, :password) ->
|
||||
password = Map.get(user_attrs, :password)
|
||||
{:ok, hashed_password} = AshAuthentication.BcryptProvider.hash(password)
|
||||
user_attrs
|
||||
|> Map.delete(:password) # Remove plain password
|
||||
|> Map.put(:hashed_password, hashed_password)
|
||||
|
||||
# Neither provided, use default password
|
||||
true ->
|
||||
password = "password"
|
||||
{:ok, hashed_password} = AshAuthentication.BcryptProvider.hash(password)
|
||||
Map.put(user_attrs, :hashed_password, hashed_password)
|
||||
end
|
||||
final_attrs =
|
||||
cond do
|
||||
# If hashed_password is already provided, use it as-is
|
||||
Map.has_key?(user_attrs, :hashed_password) ->
|
||||
user_attrs
|
||||
|
||||
# If password is provided, hash it
|
||||
Map.has_key?(user_attrs, :password) ->
|
||||
password = Map.get(user_attrs, :password)
|
||||
{:ok, hashed_password} = AshAuthentication.BcryptProvider.hash(password)
|
||||
|
||||
user_attrs
|
||||
# Remove plain password
|
||||
|> Map.delete(:password)
|
||||
|> Map.put(:hashed_password, hashed_password)
|
||||
|
||||
# Neither provided, use default password
|
||||
true ->
|
||||
password = "password"
|
||||
{:ok, hashed_password} = AshAuthentication.BcryptProvider.hash(password)
|
||||
Map.put(user_attrs, :hashed_password, hashed_password)
|
||||
end
|
||||
|
||||
Ash.Seed.seed!(Mv.Accounts.User, final_attrs)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue