tests: twitter api: add test proving that peertube videos are correctly handled
[akkoma] / test / web / twitter_api / views / activity_view_test.exs
index 09d7a18d44dc984fecccb65c11a76c11077e369f..fd511b5462fc97c9252d4d028e01968a1c6dbfa8 100644 (file)
@@ -265,4 +265,18 @@ defmodule Pleroma.Web.TwitterAPI.ActivityViewTest do
 
     assert result == expected
   end
+
+  test "a peertube video" do
+    {:ok, object} =
+      ActivityPub.fetch_object_from_id(
+        "https://peertube.moe/videos/watch/df5f464b-be8d-46fb-ad81-2d4c2d1630e3"
+      )
+
+    %Activity{} = activity = Activity.get_create_activity_by_object_ap_id(object.data["id"])
+
+    result = ActivityView.render("activity.json", activity: activity)
+
+    assert length(result["attachments"]) == 1
+    assert result["summary"] == "Friday Night"
+  end
 end