diff options
author | William Pitcock <nenolod@dereferenced.org> | 2019-03-21 23:25:41 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2019-03-21 23:25:41 +0000 |
commit | 3cc2554fa3d63ba22dc5f598229a02b928b9fd14 (patch) | |
tree | d1cf286d9aa66a04929cfee2f916fecb42b9cc62 /test | |
parent | fea36967999fed5399ab3533e806e4cbc990ad05 (diff) | |
download | pleroma-3cc2554fa3d63ba22dc5f598229a02b928b9fd14.tar.gz |
mastodon api: add conversation_id extension (ref #674)
Diffstat (limited to 'test')
-rw-r--r-- | test/web/mastodon_api/status_view_test.exs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index ade0ca9f9..e1c9b2c8f 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -9,6 +9,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do alias Pleroma.User alias Pleroma.Web.ActivityPub.ActivityPub alias Pleroma.Web.CommonAPI + alias Pleroma.Web.CommonAPI.Utils alias Pleroma.Web.MastodonAPI.AccountView alias Pleroma.Web.MastodonAPI.StatusView alias Pleroma.Web.OStatus @@ -72,6 +73,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do note = insert(:note_activity) user = User.get_cached_by_ap_id(note.data["actor"]) + convo_id = Utils.context_to_conversation_id(note.data["object"]["context"]) + status = StatusView.render("status.json", %{activity: note}) created_at = @@ -122,7 +125,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do } ], pleroma: %{ - local: true + local: true, + conversation_id: convo_id } } |