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
|
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-07 15:00:50 +00:00
|
|
|
test "preloading a bookmark" do
|
|
|
|
user = insert(:user)
|
|
|
|
user2 = insert(:user)
|
|
|
|
user3 = insert(:user)
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
{:ok, _bookmark} = Bookmark.create(user.id, activity.id)
|
|
|
|
{:ok, _bookmark2} = Bookmark.create(user2.id, activity.id)
|
|
|
|
{:ok, bookmark3} = Bookmark.create(user3.id, activity.id)
|
2019-05-04 10:42:54 +00:00
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
queried_activity =
|
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Activity.with_preloaded_bookmark(user3)
|
|
|
|
|> Repo.one()
|
2019-05-04 10:42:54 +00:00
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
assert queried_activity.bookmark == bookmark3
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "getting a bookmark" do
|
|
|
|
test "when association is loaded" do
|
|
|
|
user = insert(:user)
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
{:ok, bookmark} = Bookmark.create(user.id, activity.id)
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
queried_activity =
|
2019-05-07 15:00:50 +00:00
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Activity.with_preloaded_bookmark(user)
|
2019-05-04 10:42:54 +00:00
|
|
|
|> Repo.one()
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
assert Activity.get_bookmark(queried_activity, user) == bookmark
|
2019-05-04 10:42:54 +00:00
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
test "when association is not loaded" do
|
|
|
|
user = insert(:user)
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
{:ok, bookmark} = Bookmark.create(user.id, activity.id)
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-04 10:42:54 +00:00
|
|
|
queried_activity =
|
2019-05-07 15:00:50 +00:00
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Repo.one()
|
2019-05-04 09:46:42 +00:00
|
|
|
|
2019-05-07 15:00:50 +00:00
|
|
|
assert Activity.get_bookmark(queried_activity, user) == bookmark
|
2019-05-04 10:42:54 +00:00
|
|
|
end
|
2019-05-04 09:46:42 +00:00
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|