diff options
| author | William Pitcock <nenolod@dereferenced.org> | 2018-07-12 20:32:05 +0000 | 
|---|---|---|
| committer | William Pitcock <nenolod@dereferenced.org> | 2018-07-12 20:32:56 +0000 | 
| commit | f1a29fc43c2ef47786ff932b7afb42825159a067 (patch) | |
| tree | 33f375652fef2f9275a163826f20b8074e477f95 /test | |
| parent | 0899588e4dfba7b7e65ee606378a1c1c710e4a82 (diff) | |
| download | pleroma-f1a29fc43c2ef47786ff932b7afb42825159a067.tar.gz pleroma-f1a29fc43c2ef47786ff932b7afb42825159a067.zip | |
test: ostatus controller: add AS2 fetching tests
Diffstat (limited to 'test')
| -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}" | 
