mobilizon.chapril.org-mobil.../test/eventos_web/controllers/category_controller_test.exs

89 lines
2.8 KiB
Elixir
Raw Normal View History

defmodule EventosWeb.CategoryControllerTest do
use EventosWeb.ConnCase
alias Eventos.Events
@create_attrs %{picture: "some picture", title: "some title"}
@update_attrs %{picture: "some updated picture", title: "some updated title"}
@invalid_attrs %{picture: nil, title: nil}
def fixture(:category) do
{:ok, category} = Events.create_category(@create_attrs)
category
end
describe "index" do
test "lists all categories", %{conn: conn} do
conn = get conn, category_path(conn, :index)
assert html_response(conn, 200) =~ "Listing Categories"
end
end
describe "new category" do
test "renders form", %{conn: conn} do
conn = get conn, category_path(conn, :new)
assert html_response(conn, 200) =~ "New Category"
end
end
describe "create category" do
test "redirects to show when data is valid", %{conn: conn} do
conn = post conn, category_path(conn, :create), category: @create_attrs
assert %{id: id} = redirected_params(conn)
assert redirected_to(conn) == category_path(conn, :show, id)
conn = get conn, category_path(conn, :show, id)
assert html_response(conn, 200) =~ "Show Category"
end
test "renders errors when data is invalid", %{conn: conn} do
conn = post conn, category_path(conn, :create), category: @invalid_attrs
assert html_response(conn, 200) =~ "New Category"
end
end
describe "edit category" do
setup [:create_category]
test "renders form for editing chosen category", %{conn: conn, category: category} do
conn = get conn, category_path(conn, :edit, category)
assert html_response(conn, 200) =~ "Edit Category"
end
end
describe "update category" do
setup [:create_category]
test "redirects when data is valid", %{conn: conn, category: category} do
conn = put conn, category_path(conn, :update, category), category: @update_attrs
assert redirected_to(conn) == category_path(conn, :show, category)
conn = get conn, category_path(conn, :show, category)
assert html_response(conn, 200) =~ "some updated picture"
end
test "renders errors when data is invalid", %{conn: conn, category: category} do
conn = put conn, category_path(conn, :update, category), category: @invalid_attrs
assert html_response(conn, 200) =~ "Edit Category"
end
end
describe "delete category" do
setup [:create_category]
test "deletes chosen category", %{conn: conn, category: category} do
conn = delete conn, category_path(conn, :delete, category)
assert redirected_to(conn) == category_path(conn, :index)
assert_error_sent 404, fn ->
get conn, category_path(conn, :show, category)
end
end
end
defp create_category(_) do
category = fixture(:category)
{:ok, category: category}
end
end