mix phx.gen.live Articles Article articles title:string\ /Crucial/git/phoenix-liveview-book content:text url:string language:string\ date:utc_datetime author_id:references:authors
111 lines
3.5 KiB
Elixir
111 lines
3.5 KiB
Elixir
defmodule OutlookWeb.ArticleLiveTest do
|
|
use OutlookWeb.ConnCase
|
|
|
|
import Phoenix.LiveViewTest
|
|
import Outlook.ArticlesFixtures
|
|
|
|
@create_attrs %{content: "some content", date: "2022-12-25T16:16:00Z", language: "some language", title: "some title", url: "some url"}
|
|
@update_attrs %{content: "some updated content", date: "2022-12-26T16:16:00Z", language: "some updated language", title: "some updated title", url: "some updated url"}
|
|
@invalid_attrs %{content: nil, date: nil, language: nil, title: nil, url: nil}
|
|
|
|
defp create_article(_) do
|
|
article = article_fixture()
|
|
%{article: article}
|
|
end
|
|
|
|
describe "Index" do
|
|
setup [:create_article]
|
|
|
|
test "lists all articles", %{conn: conn, article: article} do
|
|
{:ok, _index_live, html} = live(conn, ~p"/articles")
|
|
|
|
assert html =~ "Listing Articles"
|
|
assert html =~ article.content
|
|
end
|
|
|
|
test "saves new article", %{conn: conn} do
|
|
{:ok, index_live, _html} = live(conn, ~p"/articles")
|
|
|
|
assert index_live |> element("a", "New Article") |> render_click() =~
|
|
"New Article"
|
|
|
|
assert_patch(index_live, ~p"/articles/new")
|
|
|
|
assert index_live
|
|
|> form("#article-form", article: @invalid_attrs)
|
|
|> render_change() =~ "can't be blank"
|
|
|
|
{:ok, _, html} =
|
|
index_live
|
|
|> form("#article-form", article: @create_attrs)
|
|
|> render_submit()
|
|
|> follow_redirect(conn, ~p"/articles")
|
|
|
|
assert html =~ "Article created successfully"
|
|
assert html =~ "some content"
|
|
end
|
|
|
|
test "updates article in listing", %{conn: conn, article: article} do
|
|
{:ok, index_live, _html} = live(conn, ~p"/articles")
|
|
|
|
assert index_live |> element("#articles-#{article.id} a", "Edit") |> render_click() =~
|
|
"Edit Article"
|
|
|
|
assert_patch(index_live, ~p"/articles/#{article}/edit")
|
|
|
|
assert index_live
|
|
|> form("#article-form", article: @invalid_attrs)
|
|
|> render_change() =~ "can't be blank"
|
|
|
|
{:ok, _, html} =
|
|
index_live
|
|
|> form("#article-form", article: @update_attrs)
|
|
|> render_submit()
|
|
|> follow_redirect(conn, ~p"/articles")
|
|
|
|
assert html =~ "Article updated successfully"
|
|
assert html =~ "some updated content"
|
|
end
|
|
|
|
test "deletes article in listing", %{conn: conn, article: article} do
|
|
{:ok, index_live, _html} = live(conn, ~p"/articles")
|
|
|
|
assert index_live |> element("#articles-#{article.id} a", "Delete") |> render_click()
|
|
refute has_element?(index_live, "#article-#{article.id}")
|
|
end
|
|
end
|
|
|
|
describe "Show" do
|
|
setup [:create_article]
|
|
|
|
test "displays article", %{conn: conn, article: article} do
|
|
{:ok, _show_live, html} = live(conn, ~p"/articles/#{article}")
|
|
|
|
assert html =~ "Show Article"
|
|
assert html =~ article.content
|
|
end
|
|
|
|
test "updates article within modal", %{conn: conn, article: article} do
|
|
{:ok, show_live, _html} = live(conn, ~p"/articles/#{article}")
|
|
|
|
assert show_live |> element("a", "Edit") |> render_click() =~
|
|
"Edit Article"
|
|
|
|
assert_patch(show_live, ~p"/articles/#{article}/show/edit")
|
|
|
|
assert show_live
|
|
|> form("#article-form", article: @invalid_attrs)
|
|
|> render_change() =~ "can't be blank"
|
|
|
|
{:ok, _, html} =
|
|
show_live
|
|
|> form("#article-form", article: @update_attrs)
|
|
|> render_submit()
|
|
|> follow_redirect(conn, ~p"/articles/#{article}")
|
|
|
|
assert html =~ "Article updated successfully"
|
|
assert html =~ "some updated content"
|
|
end
|
|
end
|
|
end
|