111 lines
3.4 KiB
Elixir
111 lines
3.4 KiB
Elixir
|
defmodule AggieditWeb.PostLiveTest do
|
||
|
use AggieditWeb.ConnCase
|
||
|
|
||
|
import Phoenix.LiveViewTest
|
||
|
import Aggiedit.RoomsFixtures
|
||
|
|
||
|
@create_attrs %{body: "some body", title: "some title"}
|
||
|
@update_attrs %{body: "some updated body", title: "some updated title"}
|
||
|
@invalid_attrs %{body: nil, title: nil}
|
||
|
|
||
|
defp create_post(_) do
|
||
|
post = post_fixture()
|
||
|
%{post: post}
|
||
|
end
|
||
|
|
||
|
describe "Index" do
|
||
|
setup [:create_post]
|
||
|
|
||
|
test "lists all posts", %{conn: conn, post: post} do
|
||
|
{:ok, _index_live, html} = live(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Listing Posts"
|
||
|
assert html =~ post.body
|
||
|
end
|
||
|
|
||
|
test "saves new post", %{conn: conn} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("a", "New Post") |> render_click() =~
|
||
|
"New Post"
|
||
|
|
||
|
assert_patch(index_live, Routes.post_index_path(conn, :new))
|
||
|
|
||
|
assert index_live
|
||
|
|> form("#post-form", post: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
index_live
|
||
|
|> form("#post-form", post: @create_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Post created successfully"
|
||
|
assert html =~ "some body"
|
||
|
end
|
||
|
|
||
|
test "updates post in listing", %{conn: conn, post: post} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("#post-#{post.id} a", "Edit") |> render_click() =~
|
||
|
"Edit Post"
|
||
|
|
||
|
assert_patch(index_live, Routes.post_index_path(conn, :edit, post))
|
||
|
|
||
|
assert index_live
|
||
|
|> form("#post-form", post: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
index_live
|
||
|
|> form("#post-form", post: @update_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert html =~ "Post updated successfully"
|
||
|
assert html =~ "some updated body"
|
||
|
end
|
||
|
|
||
|
test "deletes post in listing", %{conn: conn, post: post} do
|
||
|
{:ok, index_live, _html} = live(conn, Routes.post_index_path(conn, :index))
|
||
|
|
||
|
assert index_live |> element("#post-#{post.id} a", "Delete") |> render_click()
|
||
|
refute has_element?(index_live, "#post-#{post.id}")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "Show" do
|
||
|
setup [:create_post]
|
||
|
|
||
|
test "displays post", %{conn: conn, post: post} do
|
||
|
{:ok, _show_live, html} = live(conn, Routes.post_show_path(conn, :show, post))
|
||
|
|
||
|
assert html =~ "Show Post"
|
||
|
assert html =~ post.body
|
||
|
end
|
||
|
|
||
|
test "updates post within modal", %{conn: conn, post: post} do
|
||
|
{:ok, show_live, _html} = live(conn, Routes.post_show_path(conn, :show, post))
|
||
|
|
||
|
assert show_live |> element("a", "Edit") |> render_click() =~
|
||
|
"Edit Post"
|
||
|
|
||
|
assert_patch(show_live, Routes.post_show_path(conn, :edit, post))
|
||
|
|
||
|
assert show_live
|
||
|
|> form("#post-form", post: @invalid_attrs)
|
||
|
|> render_change() =~ "can't be blank"
|
||
|
|
||
|
{:ok, _, html} =
|
||
|
show_live
|
||
|
|> form("#post-form", post: @update_attrs)
|
||
|
|> render_submit()
|
||
|
|> follow_redirect(conn, Routes.post_show_path(conn, :show, post))
|
||
|
|
||
|
assert html =~ "Post updated successfully"
|
||
|
assert html =~ "some updated body"
|
||
|
end
|
||
|
end
|
||
|
end
|