diff options
author | rinpatch <rinpatch@sdf.org> | 2020-06-09 18:06:27 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-06-09 18:06:27 +0000 |
commit | 6c90fc8e70760bf8c58bb731ce294e9eee02f430 (patch) | |
tree | bd9a1f004b07c434c1ae2a6b3701ffad52d6304a /test/web/activity_pub/views | |
parent | a5ccb5b0b1032b102c54d4df2e17c61423089e73 (diff) | |
parent | f05f206e13a152ccdae679e84a29633adfbba2b1 (diff) | |
download | pleroma-2.0.6.tar.gz |
Merge branch 'release/2.0.6' into 'stable'v2.0.6
Release/2.0.6
See merge request pleroma/pleroma!2632
Diffstat (limited to 'test/web/activity_pub/views')
-rw-r--r-- | test/web/activity_pub/views/user_view_test.exs | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/test/web/activity_pub/views/user_view_test.exs b/test/web/activity_pub/views/user_view_test.exs index ecb2dc386..63e611935 100644 --- a/test/web/activity_pub/views/user_view_test.exs +++ b/test/web/activity_pub/views/user_view_test.exs @@ -158,35 +158,4 @@ defmodule Pleroma.Web.ActivityPub.UserViewTest do assert %{"totalItems" => 1} = UserView.render("following.json", %{user: user}) end end - - test "activity collection page aginates correctly" do - user = insert(:user) - - posts = - for i <- 0..25 do - {:ok, activity} = CommonAPI.post(user, %{"status" => "post #{i}"}) - activity - end - - # outbox sorts chronologically, newest first, with ten per page - posts = Enum.reverse(posts) - - %{"next" => next_url} = - UserView.render("activity_collection_page.json", %{ - iri: "#{user.ap_id}/outbox", - activities: Enum.take(posts, 10) - }) - - next_id = Enum.at(posts, 9).id - assert next_url =~ next_id - - %{"next" => next_url} = - UserView.render("activity_collection_page.json", %{ - iri: "#{user.ap_id}/outbox", - activities: Enum.take(Enum.drop(posts, 10), 10) - }) - - next_id = Enum.at(posts, 19).id - assert next_url =~ next_id - end end |