2018-12-23 21:11:29 +01: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 15:49:42 +02:00
|
|
|
defmodule Pleroma.ActivityTest do
|
|
|
|
use Pleroma.DataCase
|
2018-12-24 00:25:36 +01:00
|
|
|
alias Pleroma.Activity
|
2019-05-04 11:46:42 +02:00
|
|
|
alias Pleroma.Bookmark
|
2017-04-13 15:49:42 +02:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
test "returns an activity by it's AP id" do
|
|
|
|
activity = insert(:note_activity)
|
2018-12-25 01:41:14 +01:00
|
|
|
found_activity = Activity.get_by_ap_id(activity.data["id"])
|
2017-04-13 15:49:42 +02:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activities by it's objects AP ids" do
|
|
|
|
activity = insert(:note_activity)
|
2019-01-21 06:46:47 +01:00
|
|
|
[found_activity] = Activity.get_all_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-13 15:49:42 +02:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2017-04-30 11:16:41 +02:00
|
|
|
|
|
|
|
test "returns the activity that created an object" do
|
|
|
|
activity = insert(:note_activity)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-01-21 07:14:20 +01:00
|
|
|
found_activity = Activity.get_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-30 11:16:41 +02:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2019-05-04 11:46:42 +02:00
|
|
|
|
2019-05-07 17:00:50 +02: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 12:42:54 +02:00
|
|
|
|
2019-05-07 17:00:50 +02:00
|
|
|
queried_activity =
|
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Activity.with_preloaded_bookmark(user3)
|
|
|
|
|> Repo.one()
|
2019-05-04 12:42:54 +02:00
|
|
|
|
2019-05-07 17:00:50 +02: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 11:46:42 +02:00
|
|
|
|
2019-05-04 12:42:54 +02:00
|
|
|
queried_activity =
|
2019-05-07 17:00:50 +02:00
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Activity.with_preloaded_bookmark(user)
|
2019-05-04 12:42:54 +02:00
|
|
|
|> Repo.one()
|
2019-05-04 11:46:42 +02:00
|
|
|
|
2019-05-07 17:00:50 +02:00
|
|
|
assert Activity.get_bookmark(queried_activity, user) == bookmark
|
2019-05-04 12:42:54 +02:00
|
|
|
end
|
2019-05-04 11:46:42 +02:00
|
|
|
|
2019-05-07 17:00:50 +02: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 11:46:42 +02:00
|
|
|
|
2019-05-04 12:42:54 +02:00
|
|
|
queried_activity =
|
2019-05-07 17:00:50 +02:00
|
|
|
Ecto.Query.from(Pleroma.Activity)
|
|
|
|
|> Repo.one()
|
2019-05-04 11:46:42 +02:00
|
|
|
|
2019-05-07 17:00:50 +02:00
|
|
|
assert Activity.get_bookmark(queried_activity, user) == bookmark
|
2019-05-04 12:42:54 +02:00
|
|
|
end
|
2019-05-04 11:46:42 +02:00
|
|
|
end
|
2017-04-13 15:49:42 +02:00
|
|
|
end
|