176 lines
5.7 KiB
Elixir
176 lines
5.7 KiB
Elixir
defmodule MemexWeb.ContextLiveTest do
|
|
use MemexWeb.ConnCase
|
|
import Phoenix.LiveViewTest
|
|
import Memex.Fixtures
|
|
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_context(%{current_user: current_user}) do
|
|
[context: context_fixture(current_user)]
|
|
end
|
|
|
|
describe "Index" do
|
|
setup [:register_and_log_in_user, :create_context]
|
|
|
|
test "lists all contexts", %{conn: conn, context: context} do
|
|
{:ok, _index_live, html} = live(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert html =~ "contexts"
|
|
assert html =~ context.slug
|
|
end
|
|
|
|
test "searches by tag", %{conn: conn, context: %{tags: [tag]}} do
|
|
{:ok, index_live, html} = live(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert html =~ tag
|
|
assert index_live |> element("a", tag) |> render_click()
|
|
assert_patch(index_live, Routes.context_index_path(conn, :search, tag))
|
|
end
|
|
|
|
test "saves new context", %{conn: conn} do
|
|
{:ok, index_live, _html} = live(conn, Routes.context_index_path(conn, :index))
|
|
assert index_live |> element("a", "new context") |> render_click() =~ "new context"
|
|
assert_patch(index_live, Routes.context_index_path(conn, :new))
|
|
|
|
assert index_live
|
|
|> form("#context-form")
|
|
|> render_change(context: @invalid_attrs) =~ "can't be blank"
|
|
|
|
{:ok, _live, html} =
|
|
index_live
|
|
|> form("#context-form")
|
|
|> render_submit(context: @create_attrs)
|
|
|> follow_redirect(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert html =~ "#{@create_attrs.slug} created"
|
|
assert html =~ @create_attrs.slug
|
|
end
|
|
|
|
test "updates context in listing", %{conn: conn, context: context} do
|
|
{:ok, index_live, _html} = live(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert index_live |> element(~s/a[aria-label="edit #{context.slug}"]/) |> render_click() =~
|
|
"edit"
|
|
|
|
assert_patch(index_live, Routes.context_index_path(conn, :edit, context.slug))
|
|
|
|
assert index_live
|
|
|> form("#context-form")
|
|
|> render_change(context: @invalid_attrs) =~ "can't be blank"
|
|
|
|
{:ok, _live, html} =
|
|
index_live
|
|
|> form("#context-form")
|
|
|> render_submit(context: @update_attrs)
|
|
|> follow_redirect(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert html =~ "#{@update_attrs.slug} saved"
|
|
assert html =~ "some-updated-slug"
|
|
end
|
|
|
|
test "deletes context in listing", %{conn: conn, context: context} do
|
|
{:ok, index_live, _html} = live(conn, Routes.context_index_path(conn, :index))
|
|
|
|
assert index_live |> element(~s/a[aria-label="delete #{context.slug}"]/) |> render_click()
|
|
refute has_element?(index_live, "#context-#{context.id}")
|
|
end
|
|
end
|
|
|
|
describe "show" do
|
|
setup [:register_and_log_in_user, :create_context]
|
|
|
|
test "displays context", %{conn: conn, context: context} do
|
|
{:ok, _show_live, html} = live(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
|
|
assert html =~ "context"
|
|
assert html =~ context.slug
|
|
end
|
|
|
|
test "updates context within modal", %{conn: conn, context: context} do
|
|
{:ok, show_live, _html} = live(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
assert show_live |> element("a", "edit") |> render_click() =~ "edit"
|
|
assert_patch(show_live, Routes.context_show_path(conn, :edit, context.slug))
|
|
|
|
html =
|
|
show_live
|
|
|> form("#context-form")
|
|
|> render_change(context: @invalid_attrs)
|
|
|
|
assert html =~ "can't be blank"
|
|
assert html =~ "tags must be comma-delimited"
|
|
|
|
{:ok, _live, html} =
|
|
show_live
|
|
|> form("#context-form")
|
|
|> render_submit(context: Map.put(@update_attrs, "slug", context.slug))
|
|
|> follow_redirect(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
|
|
assert html =~ "#{context.slug} saved"
|
|
assert html =~ "tag2"
|
|
end
|
|
|
|
test "deletes context", %{conn: conn, context: context} do
|
|
{:ok, show_live, _html} = live(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
|
|
{:ok, index_live, _html} =
|
|
show_live
|
|
|> element(~s/button[aria-label="delete #{context.slug}"]/)
|
|
|> render_click()
|
|
|> follow_redirect(conn, Routes.context_index_path(conn, :index))
|
|
|
|
refute has_element?(index_live, "#context-#{context.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,
|
|
context:
|
|
context_fixture(
|
|
%{content: "example with backlink to [[#{note_slug}]] note"},
|
|
current_user
|
|
)
|
|
]
|
|
end
|
|
|
|
test "searches by tag", %{conn: conn, context: %{tags: [tag]} = context} do
|
|
{:ok, show_live, html} = live(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
|
|
assert html =~ tag
|
|
assert show_live |> element("a", tag) |> render_click()
|
|
assert_redirect(show_live, Routes.context_index_path(conn, :search, tag))
|
|
end
|
|
|
|
test "displays context", %{conn: conn, context: context, note: %{slug: note_slug}} do
|
|
{:ok, show_live, html} = live(conn, Routes.context_show_path(conn, :show, context.slug))
|
|
|
|
assert html =~ "context"
|
|
assert html =~ Routes.note_show_path(Endpoint, :show, note_slug)
|
|
assert has_element?(show_live, "a", note_slug)
|
|
end
|
|
end
|
|
end
|