Export an event though ics

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-01-15 11:40:01 +01:00
parent a1f60cf386
commit 8414f9a098
4 changed files with 40 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ defmodule EventosWeb.EventControllerTest do
alias Eventos.Events
alias Eventos.Events.Event
alias Eventos.Export.ICalendar
@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"}
@@ -51,6 +52,17 @@ defmodule EventosWeb.EventControllerTest do
end
end
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
describe "update event" do
setup [:create_event]