defmodule MemexWeb.NoteLiveTest do use MemexWeb.ConnCase import Phoenix.LiveViewTest import Memex.NotesFixtures alias MemexWeb.Endpoint @create_attrs %{ "content" => "some content", "tags_string" => "tag1", "slug" => "some-slug", "visibility" => :public } @update_attrs %{ "content" => "some updated content", "tags_string" => "tag1,tag2", "slug" => "some-updated-slug", "visibility" => :private } @invalid_attrs %{ "content" => nil, "tags_string" => " ", "slug" => nil, "visibility" => nil } defp create_note(%{current_user: current_user}) do [note: note_fixture(current_user)] end describe "Index" do setup [:register_and_log_in_user, :create_note] test "lists all notes", %{conn: conn, note: note} do {:ok, _index_live, html} = live(conn, Routes.note_index_path(conn, :index)) assert html =~ "notes" assert html =~ note.slug end 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 test "saves new note", %{conn: conn} do {:ok, index_live, _html} = live(conn, Routes.note_index_path(conn, :index)) assert index_live |> element("a", "new note") |> render_click() =~ "new note" assert_patch(index_live, Routes.note_index_path(conn, :new)) html = index_live |> form("#note-form", note: @invalid_attrs) |> render_change() assert html =~ "can't be blank" assert html =~ "tags must be comma-delimited" {:ok, _live, html} = index_live |> form("#note-form", note: @create_attrs) |> render_submit() |> follow_redirect(conn, Routes.note_index_path(conn, :index)) assert html =~ "#{@create_attrs |> Map.get("slug")} created" assert html =~ "some-slug" 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("[data-qa=\"note-edit-#{note.id}\"]") |> render_click() =~ "edit" assert_patch(index_live, Routes.note_index_path(conn, :edit, note.slug)) assert index_live |> form("#note-form", note: @invalid_attrs) |> render_change() =~ "can't be blank" {:ok, _live, html} = index_live |> form("#note-form", note: @update_attrs) |> render_submit() |> follow_redirect(conn, Routes.note_index_path(conn, :index)) assert html =~ "#{@update_attrs |> Map.get("slug")} saved" assert html =~ "some-updated-slug" 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("[data-qa=\"delete-note-#{note.id}\"]") |> render_click() refute has_element?(index_live, "#note-#{note.id}") end end describe "show" do setup [:register_and_log_in_user, :create_note] test "displays note", %{conn: conn, note: note} do {:ok, _show_live, html} = live(conn, Routes.note_show_path(conn, :show, note.slug)) assert html =~ "note" assert html =~ note.slug end test "updates note within modal", %{conn: conn, note: note} do {:ok, show_live, _html} = live(conn, Routes.note_show_path(conn, :show, note.slug)) assert show_live |> element("a", "edit") |> render_click() =~ "edit" assert_patch(show_live, Routes.note_show_path(conn, :edit, note.slug)) assert show_live |> form("#note-form", note: @invalid_attrs) |> render_change() =~ "can't be blank" {:ok, _live, html} = show_live |> form("#note-form", note: Map.put(@update_attrs, "slug", note.slug)) |> render_submit() |> follow_redirect(conn, Routes.note_show_path(conn, :show, note.slug)) assert html =~ "#{note.slug} saved" assert html =~ "tag2" end test "deletes note", %{conn: conn, note: note} do {:ok, show_live, _html} = live(conn, Routes.note_show_path(conn, :show, note.slug)) {: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 end describe "show with note" do setup [:register_and_log_in_user] setup %{current_user: current_user} do %{slug: note_slug} = note = note_fixture(current_user) [ note: note, backlinked_note: note_fixture(%{content: "example with backlink to [[#{note_slug}]] note"}, current_user) ] end 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 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 end