cannery/test/support/fixtures/accounts_fixtures.ex

39 lines
948 B
Elixir
Raw Normal View History

2021-03-11 21:12:55 -05:00
defmodule Cannery.AccountsFixtures do
@moduledoc """
This module defines test helpers for creating
entities via the `Cannery.Accounts` context.
"""
2022-01-22 21:40:29 -05:00
alias Cannery.Accounts
2022-01-22 17:21:13 -05:00
2021-03-11 21:12:55 -05:00
def unique_user_email, do: "user#{System.unique_integer()}@example.com"
def valid_user_password, do: "hello world!"
2022-01-22 17:21:13 -05:00
@spec user_fixture() :: Accounts.User.t()
@spec user_fixture(attrs :: map()) :: Accounts.User.t()
2021-03-11 21:12:55 -05:00
def user_fixture(attrs \\ %{}) do
{:ok, user} =
attrs
|> Enum.into(%{
email: unique_user_email(),
password: valid_user_password()
})
2022-01-22 17:21:13 -05:00
|> Accounts.register_user()
2021-03-11 21:12:55 -05:00
user
end
def extract_user_token(fun) do
{:ok, captured} = fun.(&"[TOKEN]#{&1}[TOKEN]")
[_, token, _] = String.split(captured.body, "[TOKEN]")
token
end
def valid_user_attributes(attrs \\ %{}) do
Enum.into(attrs, %{
email: unique_user_email(),
password: valid_user_password()
})
end
end