82 lines
2.5 KiB
Elixir
82 lines
2.5 KiB
Elixir
|
defmodule EventosWeb.CommentControllerTest do
|
||
|
use EventosWeb.ConnCase
|
||
|
|
||
|
alias Eventos.Events
|
||
|
alias Eventos.Events.Comment
|
||
|
|
||
|
@create_attrs %{text: "some text", url: "some url"}
|
||
|
@update_attrs %{text: "some updated text", url: "some updated url"}
|
||
|
@invalid_attrs %{text: nil, url: nil}
|
||
|
|
||
|
def fixture(:comment) do
|
||
|
{:ok, comment} = Events.create_comment(@create_attrs)
|
||
|
comment
|
||
|
end
|
||
|
|
||
|
setup %{conn: conn} do
|
||
|
{:ok, conn: put_req_header(conn, "accept", "application/json")}
|
||
|
end
|
||
|
|
||
|
describe "index" do
|
||
|
test "lists all comments", %{conn: conn} do
|
||
|
conn = get conn, comment_path(conn, :index)
|
||
|
assert json_response(conn, 200)["data"] == []
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "create comment" do
|
||
|
test "renders comment when data is valid", %{conn: conn} do
|
||
|
conn = post conn, comment_path(conn, :create), comment: @create_attrs
|
||
|
assert %{"id" => id} = json_response(conn, 201)["data"]
|
||
|
|
||
|
conn = get conn, comment_path(conn, :show, id)
|
||
|
assert json_response(conn, 200)["data"] == %{
|
||
|
"id" => id,
|
||
|
"text" => "some text",
|
||
|
"url" => "some url"}
|
||
|
end
|
||
|
|
||
|
test "renders errors when data is invalid", %{conn: conn} do
|
||
|
conn = post conn, comment_path(conn, :create), comment: @invalid_attrs
|
||
|
assert json_response(conn, 422)["errors"] != %{}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "update comment" do
|
||
|
setup [:create_comment]
|
||
|
|
||
|
test "renders comment when data is valid", %{conn: conn, comment: %Comment{id: id} = comment} do
|
||
|
conn = put conn, comment_path(conn, :update, comment), comment: @update_attrs
|
||
|
assert %{"id" => ^id} = json_response(conn, 200)["data"]
|
||
|
|
||
|
conn = get conn, comment_path(conn, :show, id)
|
||
|
assert json_response(conn, 200)["data"] == %{
|
||
|
"id" => id,
|
||
|
"text" => "some updated text",
|
||
|
"url" => "some updated url"}
|
||
|
end
|
||
|
|
||
|
test "renders errors when data is invalid", %{conn: conn, comment: comment} do
|
||
|
conn = put conn, comment_path(conn, :update, comment), comment: @invalid_attrs
|
||
|
assert json_response(conn, 422)["errors"] != %{}
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe "delete comment" do
|
||
|
setup [:create_comment]
|
||
|
|
||
|
test "deletes chosen comment", %{conn: conn, comment: comment} do
|
||
|
conn = delete conn, comment_path(conn, :delete, comment)
|
||
|
assert response(conn, 204)
|
||
|
assert_error_sent 404, fn ->
|
||
|
get conn, comment_path(conn, :show, comment)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
defp create_comment(_) do
|
||
|
comment = fixture(:comment)
|
||
|
{:ok, comment: comment}
|
||
|
end
|
||
|
end
|