memEx/test/memex_web/live/context_live_test.exs

175 lines
5.2 KiB
Elixir
Raw Normal View History

2022-07-25 20:11:08 -04:00
defmodule MemexWeb.ContextLiveTest do
2023-04-14 23:50:16 -04:00
use MemexWeb.ConnCase, async: true
2022-07-25 20:11:08 -04:00
import Phoenix.LiveViewTest
2023-03-22 22:08:37 -04:00
import Memex.Fixtures
2022-07-25 20:11:08 -04:00
2022-11-17 22:38:52 -05:00
@create_attrs %{
2023-03-22 22:08:37 -04:00
content: "some content",
tags_string: "tag1",
slug: "some-slug",
visibility: :public
2022-11-17 22:38:52 -05:00
}
2022-07-25 22:05:54 -04:00
@update_attrs %{
2023-03-22 22:08:37 -04:00
content: "some updated content",
tags_string: "tag1,tag2",
slug: "some-updated-slug",
visibility: :private
2022-11-17 22:38:52 -05:00
}
@invalid_attrs %{
2023-03-22 22:08:37 -04:00
content: nil,
2023-04-13 23:29:29 -04:00
tags_string: "invalid tags",
2023-03-22 22:08:37 -04:00
slug: nil,
visibility: nil
2022-07-25 22:05:54 -04:00
}
2022-07-25 20:11:08 -04:00
2023-02-04 17:22:06 -05:00
defp create_context(%{current_user: current_user}) do
[context: context_fixture(current_user)]
2022-07-25 20:11:08 -04:00
end
describe "Index" do
2022-11-24 12:44:34 -05:00
setup [:register_and_log_in_user, :create_context]
2022-07-25 20:11:08 -04:00
test "lists all contexts", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, _index_live, html} = live(conn, ~p"/contexts")
2022-07-25 20:11:08 -04:00
2022-11-24 12:44:34 -05:00
assert html =~ "contexts"
2022-11-27 21:18:35 -05:00
assert html =~ context.slug
2022-07-25 20:11:08 -04:00
end
2023-03-22 22:08:37 -04:00
test "searches by tag", %{conn: conn, context: %{tags: [tag]}} do
2023-04-13 23:29:29 -04:00
{:ok, index_live, html} = live(conn, ~p"/contexts")
2022-12-15 22:33:10 -05:00
2023-03-22 22:08:37 -04:00
assert html =~ tag
assert index_live |> element("a", tag) |> render_click()
2023-04-13 23:29:29 -04:00
assert_patch(index_live, ~p"/contexts/#{tag}")
2022-12-15 22:33:10 -05:00
end
2022-07-25 20:11:08 -04:00
test "saves new context", %{conn: conn} do
2023-04-13 23:29:29 -04:00
{:ok, index_live, _html} = live(conn, ~p"/contexts")
2023-03-22 22:08:37 -04:00
assert index_live |> element("a", "new context") |> render_click() =~ "new context"
2023-04-13 23:29:29 -04:00
assert_patch(index_live, ~p"/contexts/new")
2022-07-25 20:11:08 -04:00
assert index_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_change(context: @invalid_attrs) =~ "can't be blank"
2022-07-25 20:11:08 -04:00
2023-02-04 17:36:27 -05:00
{:ok, _live, html} =
2022-07-25 20:11:08 -04:00
index_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_submit(context: @create_attrs)
2023-04-13 23:29:29 -04:00
|> follow_redirect(conn, ~p"/contexts")
2022-07-25 20:11:08 -04:00
2023-03-22 22:08:37 -04:00
assert html =~ "#{@create_attrs.slug} created"
assert html =~ @create_attrs.slug
2022-07-25 20:11:08 -04:00
end
test "updates context in listing", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, index_live, _html} = live(conn, ~p"/contexts")
2022-07-25 20:11:08 -04:00
2023-03-14 23:51:50 -04:00
assert index_live |> element(~s/a[aria-label="edit #{context.slug}"]/) |> render_click() =~
2022-11-24 12:44:34 -05:00
"edit"
2022-07-25 20:11:08 -04:00
2023-04-13 23:29:29 -04:00
assert_patch(index_live, ~p"/contexts/#{context}/edit")
2022-07-25 20:11:08 -04:00
assert index_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_change(context: @invalid_attrs) =~ "can't be blank"
2022-07-25 20:11:08 -04:00
2023-02-04 17:36:27 -05:00
{:ok, _live, html} =
2022-07-25 20:11:08 -04:00
index_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_submit(context: @update_attrs)
2023-04-13 23:29:29 -04:00
|> follow_redirect(conn, ~p"/contexts")
2022-07-25 20:11:08 -04:00
2023-03-22 22:08:37 -04:00
assert html =~ "#{@update_attrs.slug} saved"
2022-11-27 21:18:35 -05:00
assert html =~ "some-updated-slug"
2022-07-25 20:11:08 -04:00
end
test "deletes context in listing", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, index_live, _html} = live(conn, ~p"/contexts")
2022-07-25 20:11:08 -04:00
2023-03-14 23:51:50 -04:00
assert index_live |> element(~s/a[aria-label="delete #{context.slug}"]/) |> render_click()
2022-07-25 20:11:08 -04:00
refute has_element?(index_live, "#context-#{context.id}")
end
end
2022-11-17 22:30:01 -05:00
describe "show" do
2022-11-24 12:44:34 -05:00
setup [:register_and_log_in_user, :create_context]
2022-07-25 20:11:08 -04:00
test "displays context", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, _show_live, html} = live(conn, ~p"/context/#{context}")
2022-07-25 20:11:08 -04:00
2022-11-24 17:44:01 -05:00
assert html =~ "context"
2022-11-27 21:18:35 -05:00
assert html =~ context.slug
2022-07-25 20:11:08 -04:00
end
test "updates context within modal", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, show_live, _html} = live(conn, ~p"/context/#{context}")
2022-11-24 12:44:34 -05:00
assert show_live |> element("a", "edit") |> render_click() =~ "edit"
2023-04-13 23:29:29 -04:00
assert_patch(show_live, ~p"/context/#{context}/edit")
2022-07-25 20:11:08 -04:00
2022-12-19 22:29:26 -05:00
html =
show_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_change(context: @invalid_attrs)
2022-12-19 22:29:26 -05:00
assert html =~ "can't be blank"
assert html =~ "tags must be comma-delimited"
2022-07-25 20:11:08 -04:00
2023-02-04 17:36:27 -05:00
{:ok, _live, html} =
2022-07-25 20:11:08 -04:00
show_live
2023-03-22 22:08:37 -04:00
|> form("#context-form")
|> render_submit(context: Map.put(@update_attrs, "slug", context.slug))
2023-04-13 23:29:29 -04:00
|> follow_redirect(conn, ~p"/context/#{context}")
2022-07-25 20:11:08 -04:00
2022-11-26 14:51:18 -05:00
assert html =~ "#{context.slug} saved"
2022-11-27 21:18:35 -05:00
assert html =~ "tag2"
2022-07-25 20:11:08 -04:00
end
2022-11-24 12:44:34 -05:00
test "deletes context", %{conn: conn, context: context} do
2023-04-13 23:29:29 -04:00
{:ok, show_live, _html} = live(conn, ~p"/context/#{context}")
2022-11-24 12:44:34 -05:00
{:ok, index_live, _html} =
show_live
2023-03-14 23:51:50 -04:00
|> element(~s/button[aria-label="delete #{context.slug}"]/)
2022-11-24 12:44:34 -05:00
|> render_click()
2023-04-13 23:29:29 -04:00
|> follow_redirect(conn, ~p"/contexts")
2022-11-24 12:44:34 -05:00
refute has_element?(index_live, "#context-#{context.id}")
end
2022-07-25 20:11:08 -04:00
end
2022-11-26 16:36:30 -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-11-26 16:36:30 -05:00
[
note: note,
context:
2023-02-04 17:22:06 -05:00
context_fixture(
%{content: "example with backlink to [[#{note_slug}]] note"},
current_user
)
2022-11-26 16:36:30 -05:00
]
end
2023-03-22 22:08:37 -04:00
test "searches by tag", %{conn: conn, context: %{tags: [tag]} = context} do
2023-04-13 23:29:29 -04:00
{:ok, show_live, html} = live(conn, ~p"/context/#{context}")
2022-12-15 22:33:10 -05:00
2023-03-22 22:08:37 -04:00
assert html =~ tag
assert show_live |> element("a", tag) |> render_click()
2023-04-13 23:29:29 -04:00
assert_redirect(show_live, ~p"/contexts/#{tag}")
2022-12-15 22:33:10 -05:00
end
2022-11-26 16:36:30 -05:00
test "displays context", %{conn: conn, context: context, note: %{slug: note_slug}} do
2023-04-13 23:29:29 -04:00
{:ok, show_live, html} = live(conn, ~p"/context/#{context}")
2022-11-26 16:36:30 -05:00
assert html =~ "context"
2023-04-13 23:29:29 -04:00
assert html =~ ~p"/note/#{note_slug}"
2023-03-14 23:51:50 -04:00
assert has_element?(show_live, "a", note_slug)
2022-11-26 16:36:30 -05:00
end
end
2022-07-25 20:11:08 -04:00
end