Fix return type of /api/v1/follows
[akkoma] / test / web / mastodon_api / status_view_test.exs
index 870a205f110c5d30d663370aebcdb0fc52d0539b..dc5cdfe9aab5ddf2e35722cc61f130f5d936d98a 100644 (file)
@@ -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
@@ -40,7 +41,14 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
         name: "Web",
         website: nil
       },
-      language: nil
+      language: nil,
+      emojis: [
+        %{
+          shortcode: "2hu",
+          url: "corndog.png",
+          static_url: "corndog.png"
+        }
+      ]
     }
 
     assert status == expected
@@ -84,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