defmodule Bones73kWeb.AdminDashboardLiveTest do
  use Bones73kWeb.ConnCase

  import Phoenix.LiveViewTest
  import Bones73k.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, "/admin_dashboard")
  end

  test "disconnected and connected render authenticated with user role should redirect to index page",
       %{
         conn: conn
       } do
    conn = conn |> log_in_user(user_fixture())
    assert {:error, {:redirect, %{to: "/"}}} = live(conn, "/admin_dashboard")
  end

  test "disconnected and connected render authenticated with admin role should redirect to index page",
       %{
         conn: conn
       } do
    conn = conn |> log_in_user(admin_fixture())
    {:ok, admin_dashboard, disconnected_html} = live(conn, "/admin_dashboard")
    assert disconnected_html =~ "Welcome to the admin dashboard!"
    assert render(admin_dashboard) =~ "Welcome to the admin dashboard!"
  end

  test "logs out when force logout on logged user", %{
    conn: conn
  } do
    admin = admin_fixture()
    conn = conn |> log_in_user(admin)

    {:ok, admin_dashboard, disconnected_html} = live(conn, "/admin_dashboard")
    assert disconnected_html =~ "Welcome to the admin dashboard!"
    assert render(admin_dashboard) =~ "Welcome to the admin dashboard!"

    Bones73k.Accounts.logout_user(admin)

    # Assert our liveview process is down
    ref = Process.monitor(admin_dashboard.pid)
    assert_receive {:DOWN, ^ref, _, _, _}
    refute Process.alive?(admin_dashboard.pid)

    # Assert our liveview was redirected, following first to /users/force_logout, then to "/", and then to "/users/log_in"
    assert_redirect(admin_dashboard, "/users/force_logout")

    conn = get(conn, "/users/force_logout")
    assert "/" = redir_path = redirected_to(conn, 302)
    conn = get(recycle(conn), redir_path)

    assert html_response(conn, 200) =~
             "You were logged out. Please login again to continue using our application."
  end

  test "doesn't log out when force logout on another user", %{
    conn: conn
  } do
    admin1 = admin_fixture()
    admin2 = admin_fixture()
    conn = conn |> log_in_user(admin1)

    {:ok, admin_dashboard, disconnected_html} = live(conn, "/admin_dashboard")
    assert disconnected_html =~ "Welcome to the admin dashboard!"
    assert render(admin_dashboard) =~ "Welcome to the admin dashboard!"

    Bones73k.Accounts.logout_user(admin2)

    # Assert our liveview is alive
    ref = Process.monitor(admin_dashboard.pid)
    refute_receive {:DOWN, ^ref, _, _, _}
    assert Process.alive?(admin_dashboard.pid)

    # If we are able to rerender the page it means nothing happened
    assert render(admin_dashboard) =~ "Welcome to the admin dashboard!"
  end
end