2017-12-08 09:58:14 +01:00
|
|
|
defmodule EventosWeb.EventControllerTest do
|
|
|
|
use EventosWeb.ConnCase
|
2018-01-13 23:33:03 +01:00
|
|
|
import Eventos.Factory
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
alias Eventos.Events
|
2018-01-13 23:33:03 +01:00
|
|
|
alias Eventos.Events.Event
|
2018-01-15 11:40:01 +01:00
|
|
|
alias Eventos.Export.ICalendar
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
@create_attrs %{begins_on: "2010-04-17 14:00:00.000000Z", description: "some description", ends_on: "2010-04-17 14:00:00.000000Z", title: "some title"}
|
|
|
|
@update_attrs %{begins_on: "2011-05-18 15:01:01.000000Z", description: "some updated description", ends_on: "2011-05-18 15:01:01.000000Z", title: "some updated title"}
|
|
|
|
@invalid_attrs %{begins_on: nil, description: nil, ends_on: nil, title: nil}
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
def fixture(:event) do
|
|
|
|
{:ok, event} = Events.create_event(@create_attrs)
|
|
|
|
event
|
|
|
|
end
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
setup %{conn: conn} do
|
|
|
|
account = insert(:account)
|
|
|
|
user = insert(:user, account: account)
|
|
|
|
{:ok, conn: conn, user: user}
|
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
describe "index" do
|
|
|
|
test "lists all events", %{conn: conn} do
|
|
|
|
conn = get conn, event_path(conn, :index)
|
2018-01-13 23:33:03 +01:00
|
|
|
assert json_response(conn, 200)["data"] == []
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "create event" do
|
2018-01-13 23:33:03 +01:00
|
|
|
test "renders event when data is valid", %{conn: conn, user: user} do
|
2018-01-16 19:45:09 +01:00
|
|
|
attrs = Map.put(@create_attrs, :organizer_account_id, user.account.id)
|
2018-01-15 12:04:09 +01:00
|
|
|
|
|
|
|
category = insert(:category)
|
|
|
|
attrs = Map.put(attrs, :category_id, category.id)
|
2018-01-13 23:33:03 +01:00
|
|
|
conn = auth_conn(conn, user)
|
|
|
|
conn = post conn, event_path(conn, :create), event: attrs
|
|
|
|
assert %{"id" => id} = json_response(conn, 201)["data"]
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
conn = get conn, event_path(conn, :show, id)
|
2018-01-13 23:33:03 +01:00
|
|
|
assert json_response(conn, 200)["data"] == %{
|
|
|
|
"id" => id,
|
|
|
|
"begins_on" => "2010-04-17T14:00:00Z",
|
|
|
|
"description" => "some description",
|
|
|
|
"ends_on" => "2010-04-17T14:00:00Z",
|
2018-01-16 19:45:09 +01:00
|
|
|
"title" => "some title",
|
|
|
|
"group" => nil,
|
|
|
|
"organizer" => %{
|
|
|
|
"description" => nil,
|
|
|
|
"display_name" => nil,
|
|
|
|
"domain" => nil,
|
|
|
|
"id" => user.account.id,
|
|
|
|
"suspended" => false,
|
|
|
|
"uri" => "https://",
|
|
|
|
"url" => "https://",
|
|
|
|
"username" => user.account.username
|
|
|
|
},
|
|
|
|
"participants" => []
|
|
|
|
}
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
test "renders errors when data is invalid", %{conn: conn, user: user} do
|
|
|
|
conn = auth_conn(conn, user)
|
2018-01-16 19:45:09 +01:00
|
|
|
attrs = Map.put(@invalid_attrs, :organizer_account_id, user.account.id)
|
2018-01-13 23:33:03 +01:00
|
|
|
conn = post conn, event_path(conn, :create), event: attrs
|
|
|
|
assert json_response(conn, 422)["errors"] != %{}
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-15 11:40:01 +01:00
|
|
|
describe "export event" do
|
|
|
|
setup [:create_event]
|
|
|
|
|
|
|
|
test "renders ics export of event", %{conn: conn, event: %Event{id: id} = event, user: user} do
|
|
|
|
conn = auth_conn(conn, user)
|
|
|
|
conn = get conn, event_path(conn, :export_to_ics, id)
|
|
|
|
exported_event = ICalendar.export_event(event)
|
|
|
|
assert exported_event == response(conn, 200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-12-08 09:58:14 +01:00
|
|
|
describe "update event" do
|
|
|
|
setup [:create_event]
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
test "renders event when data is valid", %{conn: conn, event: %Event{id: id} = event, user: user} do
|
|
|
|
conn = auth_conn(conn, user)
|
2018-01-16 19:45:09 +01:00
|
|
|
attrs = Map.put(@update_attrs, :organizer_account_id, user.account.id)
|
2018-01-13 23:33:03 +01:00
|
|
|
conn = put conn, event_path(conn, :update, event), event: attrs
|
|
|
|
assert %{"id" => ^id} = json_response(conn, 200)["data"]
|
2017-12-08 09:58:14 +01:00
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
conn = get conn, event_path(conn, :show, id)
|
|
|
|
assert json_response(conn, 200)["data"] == %{
|
|
|
|
"id" => id,
|
|
|
|
"begins_on" => "2011-05-18T15:01:01Z",
|
|
|
|
"description" => "some updated description",
|
|
|
|
"ends_on" => "2011-05-18T15:01:01Z",
|
2018-01-16 19:45:09 +01:00
|
|
|
"title" => "some updated title",
|
|
|
|
"group" => nil,
|
|
|
|
"organizer" => %{
|
|
|
|
"description" => nil,
|
|
|
|
"display_name" => nil,
|
|
|
|
"domain" => nil,
|
|
|
|
"id" => user.account.id,
|
|
|
|
"suspended" => false,
|
|
|
|
"uri" => "https://",
|
|
|
|
"url" => "https://",
|
|
|
|
"username" => user.account.username
|
|
|
|
},
|
|
|
|
"participants" => []
|
|
|
|
}
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
test "renders errors when data is invalid", %{conn: conn, event: event, user: user} do
|
|
|
|
conn = auth_conn(conn, user)
|
2018-01-16 19:45:09 +01:00
|
|
|
attrs = Map.put(@invalid_attrs, :organizer_account_id, user.account.id)
|
2018-01-13 23:33:03 +01:00
|
|
|
conn = put conn, event_path(conn, :update, event), event: attrs
|
|
|
|
assert json_response(conn, 422)["errors"] != %{}
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "delete event" do
|
|
|
|
setup [:create_event]
|
|
|
|
|
2018-01-13 23:33:03 +01:00
|
|
|
test "deletes chosen event", %{conn: conn, event: event, user: user} do
|
|
|
|
conn = auth_conn(conn, user)
|
2017-12-08 09:58:14 +01:00
|
|
|
conn = delete conn, event_path(conn, :delete, event)
|
2018-01-13 23:33:03 +01:00
|
|
|
assert response(conn, 204)
|
2017-12-08 09:58:14 +01:00
|
|
|
assert_error_sent 404, fn ->
|
|
|
|
get conn, event_path(conn, :show, event)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp create_event(_) do
|
2018-01-13 23:33:03 +01:00
|
|
|
account = insert(:account)
|
2018-01-16 19:45:09 +01:00
|
|
|
event = insert(:event, organizer_account: account)
|
2018-01-13 23:33:03 +01:00
|
|
|
{:ok, event: event, account: account}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp auth_conn(conn, %Eventos.Accounts.User{} = user) do
|
|
|
|
{:ok, token, _claims} = EventosWeb.Guardian.encode_and_sign(user)
|
|
|
|
conn
|
|
|
|
|> put_req_header("authorization", "Bearer #{token}")
|
|
|
|
|> put_req_header("accept", "application/json")
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|