Files
Claper/test/claper_web/live/event_live_test.exs

65 lines
2.1 KiB
Elixir

defmodule ClaperWeb.EventLiveTest do
use ClaperWeb.ConnCase
import Phoenix.LiveViewTest
import Claper.{PresentationsFixtures}
@update_attrs %{name: "some updated name"}
defp create_event(params) do
presentation_file = presentation_file_fixture(%{user: params.user}, [:event])
presentation_state_fixture(%{presentation_file: presentation_file})
params |> Map.put(:presentation_file, presentation_file)
end
describe "Index" do
setup [:register_and_log_in_user, :create_event]
test "lists all events", %{conn: conn, presentation_file: presentation_file} do
{:ok, _index_live, html} = live(conn, ~p"/events")
assert html =~ "events"
assert html =~ presentation_file.event.name
end
test "updates event in listing", %{conn: conn, presentation_file: presentation_file} do
{:ok, index_live, _html} = live(conn, ~p"/events/#{presentation_file.event.uuid}/edit")
{:ok, conn} =
index_live
|> form("#event-form", event: @update_attrs)
|> render_submit()
|> follow_redirect(conn, ~p"/events")
assert html_response(conn, 200) =~ "Updated successfully"
assert html_response(conn, 200) =~ "some updated name"
end
test "deletes event in listing", %{conn: conn, presentation_file: presentation_file} do
{:ok, index_live, _html} = live(conn, ~p"/events/#{presentation_file.event.uuid}/edit")
{:ok, conn} =
index_live
|> element(~s{a[phx-click="delete"][phx-value-id=#{presentation_file.event.uuid}]})
|> render_click()
|> follow_redirect(conn, ~p"/events")
{:ok, index_live, _html} = live(conn, ~p"/events")
refute has_element?(index_live, "#event-#{presentation_file.event.uuid}")
end
end
describe "Show" do
setup [:register_and_log_in_user, :create_event]
test "displays event", %{conn: conn, presentation_file: presentation_file} do
{:ok, _show_live, html} =
live(conn, ~p"/e/#{presentation_file.event.code}")
assert html =~ "Be the first to react !"
assert html =~ presentation_file.event.name
end
end
end