memEx/test/memex_web/live/note_live_test.exs

115 lines
3.5 KiB
Elixir
Raw Normal View History

2022-07-25 20:08:40 -04:00
defmodule MemexWeb.NoteLiveTest do
use MemexWeb.ConnCase
import Phoenix.LiveViewTest
import Memex.NotesFixtures
@create_attrs %{content: "some content", tag: [], title: "some title", visibility: :public}
2022-07-25 22:05:54 -04:00
@update_attrs %{
content: "some updated content",
tag: [],
title: "some updated title",
visibility: :private
}
2022-07-25 20:08:40 -04:00
@invalid_attrs %{content: nil, tag: [], title: nil, visibility: nil}
defp create_note(_) do
note = note_fixture()
%{note: note}
end
describe "Index" do
setup [:create_note]
test "lists all notes", %{conn: conn, note: note} do
{:ok, _index_live, html} = live(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:30:01 -05:00
assert html =~ "notes"
2022-07-25 20:08:40 -04:00
assert html =~ note.content
end
test "saves new note", %{conn: conn} do
{:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:30:01 -05:00
assert index_live |> element("a", "new note") |> render_click() =~
"new note"
2022-07-25 20:08:40 -04:00
assert_patch(index_live, Routes.note_index_path(conn, :new))
assert index_live
|> form("#note-form", note: @invalid_attrs)
|> render_change() =~ "can't be blank"
{:ok, _, html} =
index_live
|> form("#note-form", note: @create_attrs)
|> render_submit()
|> follow_redirect(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:30:01 -05:00
assert html =~ "#{@create_attrs |> Map.get("title")} created"
2022-07-25 20:08:40 -04:00
assert html =~ "some content"
end
test "updates note in listing", %{conn: conn, note: note} do
{:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index))
assert index_live |> element("#note-#{note.id} a", "Edit") |> render_click() =~
2022-11-17 22:30:01 -05:00
"edit"
2022-07-25 20:08:40 -04:00
assert_patch(index_live, Routes.note_index_path(conn, :edit, note))
assert index_live
|> form("#note-form", note: @invalid_attrs)
|> render_change() =~ "can't be blank"
{:ok, _, html} =
index_live
|> form("#note-form", note: @update_attrs)
|> render_submit()
|> follow_redirect(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:30:01 -05:00
assert html =~ "#{@update_attrs |> Map.get("title")} saved"
2022-07-25 20:08:40 -04:00
assert html =~ "some updated content"
end
test "deletes note in listing", %{conn: conn, note: note} do
{:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index))
assert index_live |> element("#note-#{note.id} a", "Delete") |> render_click()
refute has_element?(index_live, "#note-#{note.id}")
end
end
2022-11-17 22:30:01 -05:00
describe "show" do
setup [:register_and_log_in_user, :create_note]
2022-07-25 20:08:40 -04:00
test "displays note", %{conn: conn, note: note} do
{:ok, _show_live, html} = live(conn, Routes.note_show_path(conn, :show, note))
2022-11-17 22:30:01 -05:00
assert html =~ "show note"
2022-07-25 20:08:40 -04:00
assert html =~ note.content
end
test "updates note within modal", %{conn: conn, note: note} do
{:ok, show_live, _html} = live(conn, Routes.note_show_path(conn, :show, note))
2022-11-17 22:30:01 -05:00
assert show_live |> element("a", "edit") |> render_click() =~ "edit"
2022-07-25 20:08:40 -04:00
assert_patch(show_live, Routes.note_show_path(conn, :edit, note))
assert show_live
|> form("#note-form", note: @invalid_attrs)
|> render_change() =~ "can't be blank"
{:ok, _, html} =
show_live
|> form("#note-form", note: @update_attrs)
|> render_submit()
|> follow_redirect(conn, Routes.note_show_path(conn, :show, note))
2022-11-17 22:30:01 -05:00
assert html =~ "#{@update_attrs |> Map.get("title")} saved"
2022-07-25 20:08:40 -04:00
assert html =~ "some updated content"
end
end
end