2020-06-19 21:31:19 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ActivityPub.Transmogrifier.QuestionHandlingTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
2020-07-02 03:45:19 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
|
|
|
|
import Pleroma.Factory
|
2020-06-19 21:31:19 +00:00
|
|
|
|
|
|
|
setup_all do
|
|
|
|
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Mastodon Question activity" do
|
|
|
|
data = File.read!("test/fixtures/mastodon-question-activity.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
{:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
object = Object.normalize(activity, false)
|
|
|
|
|
2020-08-18 22:05:48 +00:00
|
|
|
assert object.data["url"] == "https://mastodon.sdf.org/@rinpatch/102070944809637304"
|
|
|
|
|
2020-06-19 21:31:19 +00:00
|
|
|
assert object.data["closed"] == "2019-05-11T09:03:36Z"
|
|
|
|
|
2020-07-02 03:45:19 +00:00
|
|
|
assert object.data["context"] == activity.data["context"]
|
|
|
|
|
2020-06-19 21:31:19 +00:00
|
|
|
assert object.data["context"] ==
|
|
|
|
"tag:mastodon.sdf.org,2019-05-10:objectId=15095122:objectType=Conversation"
|
|
|
|
|
|
|
|
assert object.data["context_id"]
|
|
|
|
|
|
|
|
assert object.data["anyOf"] == []
|
|
|
|
|
|
|
|
assert Enum.sort(object.data["oneOf"]) ==
|
|
|
|
Enum.sort([
|
|
|
|
%{
|
|
|
|
"name" => "25 char limit is dumb",
|
|
|
|
"replies" => %{"totalItems" => 0, "type" => "Collection"},
|
|
|
|
"type" => "Note"
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"name" => "Dunno",
|
|
|
|
"replies" => %{"totalItems" => 0, "type" => "Collection"},
|
|
|
|
"type" => "Note"
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"name" => "Everyone knows that!",
|
|
|
|
"replies" => %{"totalItems" => 1, "type" => "Collection"},
|
|
|
|
"type" => "Note"
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"name" => "I can't even fit a funny",
|
|
|
|
"replies" => %{"totalItems" => 1, "type" => "Collection"},
|
|
|
|
"type" => "Note"
|
|
|
|
}
|
|
|
|
])
|
2020-07-02 03:45:19 +00:00
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, reply_activity} = CommonAPI.post(user, %{status: "hewwo", in_reply_to_id: activity.id})
|
|
|
|
|
|
|
|
reply_object = Object.normalize(reply_activity, false)
|
|
|
|
|
|
|
|
assert reply_object.data["context"] == object.data["context"]
|
|
|
|
assert reply_object.data["context_id"] == object.data["context_id"]
|
2020-06-19 21:31:19 +00:00
|
|
|
end
|
|
|
|
|
2020-07-02 03:47:18 +00:00
|
|
|
test "Mastodon Question activity with HTML tags in plaintext" do
|
|
|
|
options = [
|
|
|
|
%{
|
|
|
|
"type" => "Note",
|
|
|
|
"name" => "<input type=\"date\">",
|
|
|
|
"replies" => %{"totalItems" => 0, "type" => "Collection"}
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"type" => "Note",
|
|
|
|
"name" => "<input type=\"date\"/>",
|
|
|
|
"replies" => %{"totalItems" => 0, "type" => "Collection"}
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"type" => "Note",
|
|
|
|
"name" => "<input type=\"date\" />",
|
|
|
|
"replies" => %{"totalItems" => 1, "type" => "Collection"}
|
|
|
|
},
|
|
|
|
%{
|
|
|
|
"type" => "Note",
|
|
|
|
"name" => "<input type=\"date\"></input>",
|
|
|
|
"replies" => %{"totalItems" => 1, "type" => "Collection"}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-question-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Kernel.put_in(["object", "oneOf"], options)
|
|
|
|
|
|
|
|
{:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
|
|
|
|
object = Object.normalize(activity, false)
|
|
|
|
|
|
|
|
assert Enum.sort(object.data["oneOf"]) == Enum.sort(options)
|
|
|
|
end
|
|
|
|
|
2020-06-19 21:31:19 +00:00
|
|
|
test "returns an error if received a second time" do
|
|
|
|
data = File.read!("test/fixtures/mastodon-question-activity.json") |> Poison.decode!()
|
|
|
|
|
|
|
|
assert {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
|
|
|
|
|
|
|
|
assert {:error, {:validate_object, {:error, _}}} = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2020-08-04 12:23:35 +00:00
|
|
|
|
|
|
|
test "accepts a Question with no content" do
|
|
|
|
data =
|
|
|
|
File.read!("test/fixtures/mastodon-question-activity.json")
|
|
|
|
|> Poison.decode!()
|
|
|
|
|> Kernel.put_in(["object", "content"], "")
|
|
|
|
|
|
|
|
assert {:ok, %Activity{local: false}} = Transmogrifier.handle_incoming(data)
|
|
|
|
end
|
2020-06-19 21:31:19 +00:00
|
|
|
end
|