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.ObjectTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
import Pleroma.Factory
|
2017-05-09 16:11:51 +00:00
|
|
|
alias Pleroma.{Repo, Object}
|
2017-04-13 13:49:42 +00:00
|
|
|
|
|
|
|
test "returns an object by it's AP id" do
|
|
|
|
object = insert(:note)
|
2017-05-09 16:11:51 +00:00
|
|
|
found_object = Object.get_by_ap_id(object.data["id"])
|
2017-04-13 13:49:42 +00:00
|
|
|
|
|
|
|
assert object == found_object
|
|
|
|
end
|
2017-05-09 16:11:51 +00:00
|
|
|
|
|
|
|
describe "generic changeset" do
|
|
|
|
test "it ensures uniqueness of the id" do
|
|
|
|
object = insert(:note)
|
|
|
|
cs = Object.change(%Object{}, %{data: %{id: object.data["id"]}})
|
|
|
|
assert cs.valid?
|
|
|
|
|
2018-02-12 09:13:54 +00:00
|
|
|
{:error, _result} = Repo.insert(cs)
|
2017-05-09 16:11:51 +00:00
|
|
|
end
|
|
|
|
end
|
2018-11-01 07:37:07 +00:00
|
|
|
|
|
|
|
describe "deletion function" do
|
|
|
|
test "deletes an object" do
|
|
|
|
object = insert(:note)
|
|
|
|
found_object = Object.get_by_ap_id(object.data["id"])
|
|
|
|
|
|
|
|
assert object == found_object
|
|
|
|
|
|
|
|
Object.delete(found_object)
|
|
|
|
|
|
|
|
found_object = Object.get_by_ap_id(object.data["id"])
|
|
|
|
|
|
|
|
refute object == found_object
|
2018-12-25 00:00:06 +00:00
|
|
|
|
|
|
|
assert found_object.data["type"] == "Tombstone"
|
2018-11-01 07:37:07 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "ensures cache is cleared for the object" do
|
|
|
|
object = insert(:note)
|
|
|
|
cached_object = Object.get_cached_by_ap_id(object.data["id"])
|
|
|
|
|
|
|
|
assert object == cached_object
|
|
|
|
|
|
|
|
Object.delete(cached_object)
|
|
|
|
|
2018-11-01 08:30:10 +00:00
|
|
|
{:ok, nil} = Cachex.get(:object_cache, "object:#{object.data["id"]}")
|
2018-11-01 07:37:07 +00:00
|
|
|
|
|
|
|
cached_object = Object.get_cached_by_ap_id(object.data["id"])
|
|
|
|
|
|
|
|
refute object == cached_object
|
2018-12-25 00:00:06 +00:00
|
|
|
|
|
|
|
assert cached_object.data["type"] == "Tombstone"
|
2018-11-01 07:37:07 +00:00
|
|
|
end
|
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|