66 lines
2.2 KiB
Elixir
66 lines
2.2 KiB
Elixir
defmodule Legendary.Content.CommentControllerTest do
|
|
use Legendary.Content.ConnCase
|
|
|
|
alias Legendary.Content.Comments
|
|
alias Legendary.Content.Posts
|
|
|
|
@post_attrs %{id: 456, name: "blergh", status: "publish"}
|
|
@create_attrs %{id: 123, content: "Hello world", post_id: 456}
|
|
@update_attrs %{id: 123, content: "Goodbye", post_id: 456}
|
|
@invalid_attrs %{id: 123, content: "", post_id: 456}
|
|
|
|
def fixture(:post) do
|
|
{:ok, post} = Posts.create_posts(@post_attrs)
|
|
post
|
|
end
|
|
|
|
def fixture(:comment) do
|
|
{:ok, comment} = Comments.create_comment(@create_attrs)
|
|
comment
|
|
end
|
|
|
|
describe "create comment" do
|
|
test "redirects to show when data is valid", %{conn: conn} do
|
|
post = fixture(:post)
|
|
conn = post conn, Routes.comment_path(conn, :create), comment: @create_attrs
|
|
|
|
assert %{id: _} = redirected_params(conn)
|
|
assert redirected_to(conn) == Routes.posts_path(conn, :show, post)
|
|
end
|
|
|
|
test "renders errors when data is invalid", %{conn: conn} do
|
|
post = fixture(:post)
|
|
conn = post conn, Routes.comment_path(conn, :create), comment: @invalid_attrs
|
|
assert redirected_to(conn) == Routes.posts_path(conn, :show, post)
|
|
end
|
|
end
|
|
|
|
describe "update comment" do
|
|
setup [:create_comment]
|
|
|
|
test "redirects when data is valid", %{conn: conn, comment: comment, post: post} do
|
|
conn = put conn, Routes.comment_path(conn, :update, comment), comment: @update_attrs
|
|
assert redirected_to(conn) == Routes.posts_path(conn, :show, post)
|
|
end
|
|
|
|
test "renders errors when data is invalid", %{conn: conn, comment: comment, post: post} do
|
|
conn = put conn, Routes.comment_path(conn, :update, comment), comment: @invalid_attrs
|
|
assert redirected_to(conn) == Routes.posts_path(conn, :show, post)
|
|
end
|
|
end
|
|
|
|
describe "delete comment" do
|
|
setup [:create_comment]
|
|
|
|
test "deletes chosen comment", %{conn: conn, comment: comment, post: post} do
|
|
conn = delete conn, Routes.comment_path(conn, :delete, comment)
|
|
assert redirected_to(conn) == Routes.posts_path(conn, :show, post)
|
|
end
|
|
end
|
|
|
|
defp create_comment(_) do
|
|
comment = fixture(:comment)
|
|
post = fixture(:post)
|
|
{:ok, comment: comment, post: post}
|
|
end
|
|
end
|