Place our index route under authentication

This commit is contained in:
João Gilberto Balsini Moura 2020-09-14 07:35:58 -03:00
parent d0ab24b9e3
commit 8fbeabc208
2 changed files with 15 additions and 7 deletions
test/real_estate_web/live

View file

@ -2,8 +2,19 @@ defmodule RealEstateWeb.PageLiveTest do
use RealEstateWeb.ConnCase
import Phoenix.LiveViewTest
import RealEstate.AccountsFixtures
test "disconnected and connected render without authentication should redirect to login page",
%{conn: conn} do
# If we don't previously log in we will be redirected to the login page
assert {:error, {:redirect, %{to: "/users/log_in"}}} = live(conn, "/")
end
test "disconnected and connected render with authentication should redirect to index page", %{
conn: conn
} do
conn = conn |> log_in_user(user_fixture())
test "disconnected and connected render", %{conn: conn} do
{:ok, page_live, disconnected_html} = live(conn, "/")
assert disconnected_html =~ "Welcome to Phoenix!"
assert render(page_live) =~ "Welcome to Phoenix!"