2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-04-13 13:49:42 +00:00
|
|
|
defmodule Pleroma.ActivityTest do
|
|
|
|
use Pleroma.DataCase
|
2018-12-23 23:25:36 +00:00
|
|
|
alias Pleroma.Activity
|
2019-05-04 09:46:42 +00:00
|
|
|
alias Pleroma.Bookmark
|
|
|
|
alias Pleroma.Object
|
2017-04-13 13:49:42 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
test "returns an activity by it's AP id" do
|
|
|
|
activity = insert(:note_activity)
|
2018-12-25 00:41:14 +00:00
|
|
|
found_activity = Activity.get_by_ap_id(activity.data["id"])
|
2017-04-13 13:49:42 +00:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activities by it's objects AP ids" do
|
|
|
|
activity = insert(:note_activity)
|
2019-01-21 05:46:47 +00:00
|
|
|
[found_activity] = Activity.get_all_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-13 13:49:42 +00:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2017-04-30 09:16:41 +00:00
|
|
|
|
|
|
|
test "returns the activity that created an object" do
|
|
|
|
activity = insert(:note_activity)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
found_activity = Activity.get_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-30 09:16:41 +00:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
describe "preloading bookmarks" do
|
|
|
|
setup do
|
|
|
|
user1 = insert(:user)
|
|
|
|
user2 = insert(:user)
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
{:ok, bookmark1} = Bookmark.create(user1.id, activity.id)
|
|
|
|
{:ok, bookmark2} = Bookmark.create(user2.id, activity.id)
|
|
|
|
[activity: activity, bookmarks: Enum.sort([bookmark1, bookmark2])]
|
|
|
|
end
|
|
|
|
|
|
|
|
test "using with_preloaded_bookmarks", %{activity: activity, bookmarks: bookmarks} do
|
|
|
|
queried_activity =
|
|
|
|
Ecto.Query.from(a in Activity, where: a.id == ^activity.id)
|
|
|
|
|> Activity.with_preloaded_bookmarks()
|
|
|
|
|> Repo.one()
|
|
|
|
|
|
|
|
assert Enum.sort(queried_activity.bookmarks) == bookmarks
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
test "using with_preloaded_object", %{activity: activity, bookmarks: bookmarks} do
|
|
|
|
queried_activity =
|
|
|
|
Ecto.Query.from(a in Activity, where: a.id == ^activity.id)
|
|
|
|
|> Activity.with_preloaded_object()
|
|
|
|
|> Repo.one()
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
assert Enum.sort(queried_activity.bookmarks) == bookmarks
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
test "using get_by_ap_id_with_object", %{activity: activity, bookmarks: bookmarks} do
|
|
|
|
queried_activity = Activity.get_by_ap_id_with_object(activity.data["id"])
|
|
|
|
assert Enum.sort(queried_activity.bookmarks) == bookmarks
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
test "using get_by_id_with_object", %{activity: activity, bookmarks: bookmarks} do
|
|
|
|
queried_activity = Activity.get_by_id_with_object(activity.id)
|
|
|
|
assert Enum.sort(queried_activity.bookmarks) == bookmarks
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
test "using get_create_by_object_ap_id_with_object", %{
|
|
|
|
activity: activity,
|
|
|
|
bookmarks: bookmarks
|
|
|
|
} do
|
|
|
|
queried_activity =
|
|
|
|
Activity.get_create_by_object_ap_id_with_object(Object.normalize(activity).data["id"])
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
assert Enum.sort(queried_activity.bookmarks) == bookmarks
|
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|