X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=test%2Fweb%2Fmastodon_api%2Fstatus_view_test.exs;h=dc5cdfe9aab5ddf2e35722cc61f130f5d936d98a;hb=c56d28f96c343d445ec8d06baf351423691036f3;hp=9fa95234bb7fb3bdb692bb706d351836a4dd5303;hpb=7f3ce5c1a0ea9e7ea960b06ca5f40f4cee4b9715;p=akkoma diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 9fa95234b..dc5cdfe9a 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -4,6 +4,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do alias Pleroma.Web.MastodonAPI.{StatusView, AccountView} alias Pleroma.User alias Pleroma.Web.OStatus + alias Pleroma.Web.CommonAPI import Pleroma.Factory test "a note activity" do @@ -36,8 +37,18 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do media_attachments: [], mentions: [], tags: [], - application: nil, - language: nil + application: %{ + name: "Web", + website: nil + }, + language: nil, + emojis: [ + %{ + shortcode: "2hu", + url: "corndog.png", + static_url: "corndog.png" + } + ] } assert status == expected @@ -71,7 +82,8 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do type: "image", url: "someurl", remote_url: "someurl", - preview_url: "someurl" + preview_url: "someurl", + text_url: "someurl" } assert expected == StatusView.render("attachment.json", %{attachment: object}) @@ -80,4 +92,16 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do object = Map.put(object, "id", 2) assert %{id: 2} = StatusView.render("attachment.json", %{attachment: object}) end + + test "a reblog" do + user = insert(:user) + activity = insert(:note_activity) + + {:ok, reblog, _} = CommonAPI.repeat(activity.id, user) + + represented = StatusView.render("status.json", %{for: user, activity: reblog}) + + assert represented[:id] == reblog.id + assert represented[:reblog][:id] == activity.id + end end