memEx/test/memex_web/live/note_live_test.exs

184 lines
5.7 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
2022-12-15 22:43:18 -05:00
alias MemexWeb.Endpoint
2022-07-25 20:08:40 -04:00
2022-11-17 22:38:52 -05:00
@create_attrs %{
"content" => "some content",
"tags_string" => "tag1",
2022-11-26 14:51:18 -05:00
"slug" => "some-slug",
2022-11-17 22:38:52 -05:00
"visibility" => :public
}
2022-07-25 22:05:54 -04:00
@update_attrs %{
2022-11-17 22:38:52 -05:00
"content" => "some updated content",
"tags_string" => "tag1,tag2",
2022-11-26 14:51:18 -05:00
"slug" => "some-updated-slug",
2022-11-17 22:38:52 -05:00
"visibility" => :private
}
@invalid_attrs %{
"content" => nil,
2022-12-19 22:29:26 -05:00
"tags_string" => " ",
2022-11-26 14:51:18 -05:00
"slug" => nil,
2022-11-17 22:38:52 -05:00
"visibility" => nil
2022-07-25 22:05:54 -04:00
}
2022-07-25 20:08:40 -04:00
2023-02-04 17:22:06 -05:00
defp create_note(%{current_user: current_user}) do
[note: note_fixture(current_user)]
2022-07-25 20:08:40 -04:00
end
describe "Index" do
2022-11-17 22:38:52 -05:00
setup [:register_and_log_in_user, :create_note]
2022-07-25 20:08:40 -04:00
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-11-27 21:18:35 -05:00
assert html =~ note.slug
2022-07-25 20:08:40 -04:00
end
2022-12-15 22:33:10 -05:00
test "searches by tag", %{conn: conn} do
{:ok, index_live, html} = live(conn, Routes.note_index_path(conn, :index))
assert html =~ "example-tag"
assert index_live |> element("a", "example-tag") |> render_click()
assert_patch(index_live, Routes.note_index_path(conn, :search, "example-tag"))
end
2022-07-25 20:08:40 -04:00
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))
2022-12-19 22:29:26 -05:00
html =
index_live
|> form("#note-form", note: @invalid_attrs)
|> render_change()
assert html =~ "can't be blank"
assert html =~ "tags must be comma-delimited"
2022-07-25 20:08:40 -04:00
{:ok, _, html} =
index_live
|> form("#note-form", note: @create_attrs)
|> render_submit()
|> follow_redirect(conn, Routes.note_index_path(conn, :index))
2022-11-26 14:51:18 -05:00
assert html =~ "#{@create_attrs |> Map.get("slug")} created"
2022-11-27 21:18:35 -05:00
assert html =~ "some-slug"
2022-07-25 20:08:40 -04:00
end
test "updates note in listing", %{conn: conn, note: note} do
{:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:38:52 -05:00
assert index_live |> element("[data-qa=\"note-edit-#{note.id}\"]") |> render_click() =~
2022-11-17 22:30:01 -05:00
"edit"
2022-07-25 20:08:40 -04:00
2022-11-26 14:51:18 -05:00
assert_patch(index_live, Routes.note_index_path(conn, :edit, note.slug))
2022-07-25 20:08:40 -04:00
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-26 14:51:18 -05:00
assert html =~ "#{@update_attrs |> Map.get("slug")} saved"
2022-11-27 21:18:35 -05:00
assert html =~ "some-updated-slug"
2022-07-25 20:08:40 -04:00
end
test "deletes note in listing", %{conn: conn, note: note} do
{:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index))
2022-11-17 22:38:52 -05:00
assert index_live |> element("[data-qa=\"delete-note-#{note.id}\"]") |> render_click()
2022-07-25 20:08:40 -04:00
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
2022-11-26 14:51:18 -05:00
{:ok, _show_live, html} = live(conn, Routes.note_show_path(conn, :show, note.slug))
2022-07-25 20:08:40 -04:00
2022-11-24 17:44:01 -05:00
assert html =~ "note"
2022-11-27 21:18:35 -05:00
assert html =~ note.slug
2022-07-25 20:08:40 -04:00
end
test "updates note within modal", %{conn: conn, note: note} do
2022-11-26 14:51:18 -05:00
{:ok, show_live, _html} = live(conn, Routes.note_show_path(conn, :show, note.slug))
2022-07-25 20:08:40 -04:00
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
2022-11-26 14:51:18 -05:00
assert_patch(show_live, Routes.note_show_path(conn, :edit, note.slug))
2022-07-25 20:08:40 -04:00
assert show_live
|> form("#note-form", note: @invalid_attrs)
|> render_change() =~ "can't be blank"
{:ok, _, html} =
show_live
2022-11-26 14:51:18 -05:00
|> form("#note-form", note: Map.put(@update_attrs, "slug", note.slug))
2022-07-25 20:08:40 -04:00
|> render_submit()
2022-11-26 14:51:18 -05:00
|> follow_redirect(conn, Routes.note_show_path(conn, :show, note.slug))
2022-07-25 20:08:40 -04:00
2022-11-26 14:51:18 -05:00
assert html =~ "#{note.slug} saved"
2022-11-27 21:18:35 -05:00
assert html =~ "tag2"
2022-07-25 20:08:40 -04:00
end
2022-11-24 12:43:34 -05:00
test "deletes note", %{conn: conn, note: note} do
2022-11-26 14:51:18 -05:00
{:ok, show_live, _html} = live(conn, Routes.note_show_path(conn, :show, note.slug))
2022-11-24 12:43:34 -05:00
{:ok, index_live, _html} =
show_live
|> element("[data-qa=\"delete-note-#{note.id}\"]")
|> render_click()
|> follow_redirect(conn, Routes.note_index_path(conn, :index))
refute has_element?(index_live, "#note-#{note.id}")
end
2022-07-25 20:08:40 -04:00
end
2022-12-15 22:43:18 -05:00
describe "show with note" do
setup [:register_and_log_in_user]
2023-02-04 17:22:06 -05:00
setup %{current_user: current_user} do
%{slug: note_slug} = note = note_fixture(current_user)
2022-12-15 22:43:18 -05:00
[
note: note,
backlinked_note:
2023-02-04 17:22:06 -05:00
note_fixture(%{content: "example with backlink to [[#{note_slug}]] note"}, current_user)
2022-12-15 22:43:18 -05:00
]
end
2022-12-15 22:33:10 -05:00
test "searches by tag", %{conn: conn, note: note} do
{:ok, show_live, html} = live(conn, Routes.note_show_path(conn, :show, note.slug))
assert html =~ "example-tag"
assert show_live |> element("a", "example-tag") |> render_click()
assert_redirect(show_live, Routes.note_index_path(conn, :search, "example-tag"))
end
2022-12-15 22:43:18 -05:00
test "displays context", %{
conn: conn,
backlinked_note: %{slug: backlinked_note_slug},
note: %{slug: note_slug}
} do
{:ok, show_live, html} =
live(conn, Routes.note_show_path(conn, :show, backlinked_note_slug))
assert html =~ "context"
assert html =~ Routes.note_show_path(Endpoint, :show, note_slug)
assert has_element?(show_live, "[data-qa=\"note-link-#{note_slug}\"]")
end
end
2022-07-25 20:08:40 -04:00
end