diff options
| author | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-07-19 17:42:00 +0900 |
|---|---|---|
| committer | Hakaba Hitoyo <hakabahitoyo@example.com> | 2018-07-19 17:42:00 +0900 |
| commit | cc9c062b553e20018e406dc605e6e504ad3134a6 (patch) | |
| tree | 9cf2a1e19697ceefa99671980f42901e0025eaa0 /test/web/ostatus/ostatus_controller_test.exs | |
| parent | b12d17d2ce270e0d964f599efd4f16fba95b17ce (diff) | |
| parent | 41b0ecef959df0a1cda71e56e256cacebe48d56f (diff) | |
| download | pleroma-cc9c062b553e20018e406dc605e6e504ad3134a6.tar.gz pleroma-cc9c062b553e20018e406dc605e6e504ad3134a6.zip | |
merge
Diffstat (limited to 'test/web/ostatus/ostatus_controller_test.exs')
| -rw-r--r-- | test/web/ostatus/ostatus_controller_test.exs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/web/ostatus/ostatus_controller_test.exs b/test/web/ostatus/ostatus_controller_test.exs index d5adf3bf3..c23b175e8 100644 --- a/test/web/ostatus/ostatus_controller_test.exs +++ b/test/web/ostatus/ostatus_controller_test.exs @@ -155,6 +155,31 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do assert response(conn, 200) end + test "gets a notice in AS2 format", %{conn: conn} do + note_activity = insert(:note_activity) + url = "/notice/#{note_activity.id}" + + conn = + conn + |> put_req_header("accept", "application/activity+json") + |> get(url) + + assert json_response(conn, 200) + end + + test "gets an activity in AS2 format", %{conn: conn} do + note_activity = insert(:note_activity) + [_, uuid] = hd(Regex.scan(~r/.+\/([\w-]+)$/, note_activity.data["id"])) + url = "/activities/#{uuid}" + + conn = + conn + |> put_req_header("accept", "application/activity+json") + |> get(url) + + assert json_response(conn, 200) + end + test "404s a private notice", %{conn: conn} do note_activity = insert(:direct_note_activity) url = "/notice/#{note_activity.id}" |
