2018-12-23 12:11:29 -08: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 06:49:42 -07:00
|
|
|
defmodule Pleroma.ActivityTest do
|
|
|
|
use Pleroma.DataCase
|
2018-12-23 15:25:36 -08:00
|
|
|
alias Pleroma.Activity
|
2017-04-13 06:49:42 -07:00
|
|
|
import Pleroma.Factory
|
|
|
|
|
|
|
|
test "returns an activity by it's AP id" do
|
|
|
|
activity = insert(:note_activity)
|
2018-12-24 16:41:14 -08:00
|
|
|
found_activity = Activity.get_by_ap_id(activity.data["id"])
|
2017-04-13 06:49:42 -07:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activities by it's objects AP ids" do
|
|
|
|
activity = insert(:note_activity)
|
2019-01-20 21:46:47 -08:00
|
|
|
[found_activity] = Activity.get_all_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-13 06:49:42 -07:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2017-04-30 02:16:41 -07:00
|
|
|
|
|
|
|
test "returns the activity that created an object" do
|
|
|
|
activity = insert(:note_activity)
|
2018-03-30 06:01:53 -07:00
|
|
|
|
2019-01-20 22:14:20 -08:00
|
|
|
found_activity = Activity.get_create_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-30 02:16:41 -07:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2019-04-15 01:50:36 -07:00
|
|
|
|
|
|
|
test "reply count" do
|
|
|
|
%{id: id, data: %{"object" => %{"id" => object_ap_id}}} = activity = insert(:note_activity)
|
|
|
|
|
2019-04-15 01:59:01 -07:00
|
|
|
replies_count = activity.data["object"]["repliesCount"] || 0
|
|
|
|
expected_increase = replies_count + 1
|
2019-04-15 01:50:36 -07:00
|
|
|
Activity.increase_replies_count(object_ap_id)
|
|
|
|
%{data: %{"object" => %{"repliesCount" => actual_increase}}} = Activity.get_by_id(id)
|
|
|
|
assert expected_increase == actual_increase
|
|
|
|
expected_decrease = expected_increase - 1
|
|
|
|
Activity.decrease_replies_count(object_ap_id)
|
|
|
|
%{data: %{"object" => %{"repliesCount" => actual_decrease}}} = Activity.get_by_id(id)
|
|
|
|
assert expected_decrease == actual_decrease
|
|
|
|
end
|
2017-04-13 06:49:42 -07:00
|
|
|
end
|