114 lines
3.1 KiB
Elixir
114 lines
3.1 KiB
Elixir
|
|
defmodule ZoeyscomputerWeb.LinkLiveTest do
|
||
|
|
use ZoeyscomputerWeb.ConnCase
|
||
|
|
|
||
|
|
import Phoenix.LiveViewTest
|
||
|
|
import Zoeyscomputer.LinksFixtures
|
||
|
|
|
||
|
|
@create_attrs %{url: "some url"}
|
||
|
|
@update_attrs %{url: "some updated url"}
|
||
|
|
@invalid_attrs %{url: nil}
|
||
|
|
|
||
|
|
defp create_link(_) do
|
||
|
|
link = link_fixture()
|
||
|
|
%{link: link}
|
||
|
|
end
|
||
|
|
|
||
|
|
describe "Index" do
|
||
|
|
setup [:create_link]
|
||
|
|
|
||
|
|
test "lists all links", %{conn: conn, link: link} do
|
||
|
|
{:ok, _index_live, html} = live(conn, ~p"/links")
|
||
|
|
|
||
|
|
assert html =~ "Listing Links"
|
||
|
|
assert html =~ link.url
|
||
|
|
end
|
||
|
|
|
||
|
|
test "saves new link", %{conn: conn} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/links")
|
||
|
|
|
||
|
|
assert index_live |> element("a", "New Link") |> render_click() =~
|
||
|
|
"New Link"
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/links/new")
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#link-form", link: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#link-form", link: @create_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/links")
|
||
|
|
|
||
|
|
html = render(index_live)
|
||
|
|
assert html =~ "Link created successfully"
|
||
|
|
assert html =~ "some url"
|
||
|
|
end
|
||
|
|
|
||
|
|
test "updates link in listing", %{conn: conn, link: link} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/links")
|
||
|
|
|
||
|
|
assert index_live |> element("#links-#{link.id} a", "Edit") |> render_click() =~
|
||
|
|
"Edit Link"
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/links/#{link}/edit")
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#link-form", link: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert index_live
|
||
|
|
|> form("#link-form", link: @update_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(index_live, ~p"/links")
|
||
|
|
|
||
|
|
html = render(index_live)
|
||
|
|
assert html =~ "Link updated successfully"
|
||
|
|
assert html =~ "some updated url"
|
||
|
|
end
|
||
|
|
|
||
|
|
test "deletes link in listing", %{conn: conn, link: link} do
|
||
|
|
{:ok, index_live, _html} = live(conn, ~p"/links")
|
||
|
|
|
||
|
|
assert index_live |> element("#links-#{link.id} a", "Delete") |> render_click()
|
||
|
|
refute has_element?(index_live, "#links-#{link.id}")
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|
||
|
|
describe "Show" do
|
||
|
|
setup [:create_link]
|
||
|
|
|
||
|
|
test "displays link", %{conn: conn, link: link} do
|
||
|
|
{:ok, _show_live, html} = live(conn, ~p"/links/#{link}")
|
||
|
|
|
||
|
|
assert html =~ "Show Link"
|
||
|
|
assert html =~ link.url
|
||
|
|
end
|
||
|
|
|
||
|
|
test "updates link within modal", %{conn: conn, link: link} do
|
||
|
|
{:ok, show_live, _html} = live(conn, ~p"/links/#{link}")
|
||
|
|
|
||
|
|
assert show_live |> element("a", "Edit") |> render_click() =~
|
||
|
|
"Edit Link"
|
||
|
|
|
||
|
|
assert_patch(show_live, ~p"/links/#{link}/show/edit")
|
||
|
|
|
||
|
|
assert show_live
|
||
|
|
|> form("#link-form", link: @invalid_attrs)
|
||
|
|
|> render_change() =~ "can't be blank"
|
||
|
|
|
||
|
|
assert show_live
|
||
|
|
|> form("#link-form", link: @update_attrs)
|
||
|
|
|> render_submit()
|
||
|
|
|
||
|
|
assert_patch(show_live, ~p"/links/#{link}")
|
||
|
|
|
||
|
|
html = render(show_live)
|
||
|
|
assert html =~ "Link updated successfully"
|
||
|
|
assert html =~ "some updated url"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|