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
|
2019-04-17 11:52:01 +00:00
|
|
|
import Tesla.Mock
|
2019-02-10 21:57:38 +00:00
|
|
|
alias Pleroma.Object
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Repo
|
2017-04-13 13:49:42 +00:00
|
|
|
|
2019-04-17 11:52:01 +00:00
|
|
|
setup do
|
|
|
|
mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
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
|
2018-12-04 05:00:11 +00:00
|
|
|
|
|
|
|
describe "normalizer" do
|
|
|
|
test "fetches unknown objects by default" do
|
2018-12-04 05:01:21 +00:00
|
|
|
%Object{} =
|
|
|
|
object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367")
|
2018-12-04 05:00:11 +00:00
|
|
|
|
|
|
|
assert object.data["url"] == "http://mastodon.example.org/@admin/99541947525187367"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "fetches unknown objects when fetch_remote is explicitly true" do
|
2018-12-04 05:01:21 +00:00
|
|
|
%Object{} =
|
|
|
|
object = Object.normalize("http://mastodon.example.org/@admin/99541947525187367", true)
|
2018-12-04 05:00:11 +00:00
|
|
|
|
|
|
|
assert object.data["url"] == "http://mastodon.example.org/@admin/99541947525187367"
|
|
|
|
end
|
|
|
|
|
|
|
|
test "does not fetch unknown objects when fetch_remote is false" do
|
2018-12-04 05:01:21 +00:00
|
|
|
assert is_nil(
|
|
|
|
Object.normalize("http://mastodon.example.org/@admin/99541947525187367", false)
|
|
|
|
)
|
2018-12-04 05:00:11 +00:00
|
|
|
end
|
|
|
|
end
|
2017-04-13 13:49:42 +00:00
|
|
|
end
|