2020-12-15 14:24:14 +01:00
|
|
|
defmodule RecycledCloud.AccountsFixtures do
|
|
|
|
@moduledoc """
|
|
|
|
This module defines test helpers for creating
|
|
|
|
entities via the `RecycledCloud.Accounts` context.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def unique_user_email, do: "user#{System.unique_integer()}@example.com"
|
2021-01-04 13:14:16 +01:00
|
|
|
def unique_user_name, do: "user#{System.unique_integer()}"
|
2020-12-15 14:24:14 +01:00
|
|
|
def valid_user_password, do: "hello world!"
|
|
|
|
|
|
|
|
def user_fixture(attrs \\ %{}) do
|
|
|
|
{:ok, user} =
|
|
|
|
attrs
|
|
|
|
|> Enum.into(%{
|
2021-01-04 13:14:16 +01:00
|
|
|
username: unique_user_name(),
|
2020-12-15 14:24:14 +01:00
|
|
|
email: unique_user_email(),
|
|
|
|
password: valid_user_password()
|
|
|
|
})
|
|
|
|
|> RecycledCloud.Accounts.register_user()
|
|
|
|
|
|
|
|
user
|
|
|
|
end
|
|
|
|
|
|
|
|
def extract_user_token(fun) do
|
|
|
|
{:ok, captured} = fun.(&"[TOKEN]#{&1}[TOKEN]")
|
|
|
|
[_, token, _] = String.split(captured.body, "[TOKEN]")
|
|
|
|
token
|
|
|
|
end
|
|
|
|
end
|