2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.UserSettingsControllerTest do
|
|
|
|
use Shift73kWeb.ConnCase, async: true
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
alias Shift73k.Accounts
|
|
|
|
import Shift73k.AccountsFixtures
|
2020-09-12 20:07:02 -04:00
|
|
|
|
|
|
|
setup :register_and_log_in_user
|
|
|
|
|
|
|
|
describe "GET /users/settings" do
|
|
|
|
test "renders settings page", %{conn: conn} do
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :edit))
|
|
|
|
response = html_response(conn, 200)
|
2021-03-03 08:15:14 -05:00
|
|
|
assert response =~ "User Settings\n</h2>"
|
2020-09-12 20:07:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "redirects if user is not logged in" do
|
|
|
|
conn = build_conn()
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :edit))
|
|
|
|
assert redirected_to(conn) == Routes.user_session_path(conn, :new)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET /users/settings/confirm_email/:token" do
|
|
|
|
setup %{user: user} do
|
|
|
|
email = unique_user_email()
|
|
|
|
|
|
|
|
token =
|
|
|
|
extract_user_token(fn url ->
|
|
|
|
Accounts.deliver_update_email_instructions(%{user | email: email}, user.email, url)
|
|
|
|
end)
|
|
|
|
|
|
|
|
%{token: token, email: email}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "updates the user email once", %{conn: conn, user: user, token: token, email: email} do
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :confirm_email, token))
|
|
|
|
assert redirected_to(conn) == Routes.user_settings_path(conn, :edit)
|
|
|
|
assert get_flash(conn, :info) =~ "Email changed successfully"
|
|
|
|
refute Accounts.get_user_by_email(user.email)
|
|
|
|
assert Accounts.get_user_by_email(email)
|
|
|
|
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :confirm_email, token))
|
|
|
|
assert redirected_to(conn) == Routes.user_settings_path(conn, :edit)
|
|
|
|
assert get_flash(conn, :error) =~ "Email change link is invalid or it has expired"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "does not update email with invalid token", %{conn: conn, user: user} do
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :confirm_email, "oops"))
|
|
|
|
assert redirected_to(conn) == Routes.user_settings_path(conn, :edit)
|
|
|
|
assert get_flash(conn, :error) =~ "Email change link is invalid or it has expired"
|
|
|
|
assert Accounts.get_user_by_email(user.email)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "redirects if user is not logged in", %{token: token} do
|
|
|
|
conn = build_conn()
|
|
|
|
conn = get(conn, Routes.user_settings_path(conn, :confirm_email, token))
|
|
|
|
assert redirected_to(conn) == Routes.user_session_path(conn, :new)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|