summaryrefslogtreecommitdiff
path: root/test/web/activity_pub/views
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2020-06-05 14:52:09 +0000
committerrinpatch <rinpatch@sdf.org>2020-06-08 00:58:31 +0300
commit9396b2f8cf0fa26f6fb5e372112b394b74ae8a4e (patch)
tree2a6f7a4d20811bb1a17afba56a40d4dba7885bb1 /test/web/activity_pub/views
parent0186f56d932a441f106e35c86bfefe57c9ead64d (diff)
downloadpleroma-9396b2f8cf0fa26f6fb5e372112b394b74ae8a4e.tar.gz
pleroma-9396b2f8cf0fa26f6fb5e372112b394b74ae8a4e.zip
Merge branch 'features/apc2s-pagination' into 'develop'
Fix AP C2S pagination Closes #866 and #751 See merge request pleroma/pleroma!2491
Diffstat (limited to 'test/web/activity_pub/views')
-rw-r--r--test/web/activity_pub/views/user_view_test.exs31
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