tests: twitter api: add test proving that peertube videos are correctly handled

This commit is contained in:
William Pitcock 2018-12-23 13:59:06 +00:00
parent 34a4ed22c4
commit a2bceaf688
1 changed files with 14 additions and 0 deletions

View File

@ -265,4 +265,18 @@ test "a delete activity" 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