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
|
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)
|
|
|
|
found_activity = Pleroma.Activity.get_by_ap_id(activity.data["id"])
|
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
|
|
|
|
|
|
|
test "returns activities by it's objects AP ids" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
[found_activity] = Pleroma.Activity.all_by_object_ap_id(activity.data["object"]["id"])
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
found_activity =
|
|
|
|
Pleroma.Activity.get_create_activity_by_object_ap_id(activity.data["object"]["id"])
|
2017-04-30 09:16:41 +00:00
|
|
|
|
|
|
|
assert activity == found_activity
|
|
|
|
end
|
2018-12-23 23:25:36 +00:00
|
|
|
|
|
|
|
test "returns tombstone" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
deleted = DateTime.utc_now()
|
|
|
|
|
|
|
|
assert Pleroma.Activity.get_tombstone(activity, deleted) == %{
|
|
|
|
id: activity.data["object"]["id"],
|
|
|
|
context: activity.data["context"],
|
|
|
|
type: "tombstone",
|
|
|
|
published: activity.data["published"],
|
|
|
|
deleted: deleted
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "swaps data with tombstone" do
|
|
|
|
activity = insert(:note_activity)
|
|
|
|
|
|
|
|
{:ok, deleted} = Pleroma.Activity.swap_data_with_tombstone(activity)
|
|
|
|
assert deleted.data.type == "tombstone"
|
|
|
|
|
|
|
|
found_activity = Repo.get(Activity, activity.id)
|
|
|
|
|
|
|
|
assert deleted.data.type == found_activity.data["type"]
|
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|