2017-03-21 16:53:20 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
|
|
|
|
use Pleroma.DataCase
|
2017-03-30 15:07:03 +00:00
|
|
|
alias Pleroma.{User, Activity, Object}
|
|
|
|
alias Pleroma.Web.TwitterAPI.Representers.{UserRepresenter, ActivityRepresenter, ObjectRepresenter}
|
2017-03-21 16:53:20 +00:00
|
|
|
alias Pleroma.Builders.UserBuilder
|
|
|
|
|
|
|
|
test "an activity" do
|
|
|
|
{:ok, user} = UserBuilder.insert
|
2017-04-03 16:28:19 +00:00
|
|
|
{:ok, mentioned_user } = UserBuilder.insert(%{nickname: "shp", ap_id: "shp"})
|
2017-03-23 14:51:34 +00:00
|
|
|
{:ok, follower} = UserBuilder.insert(%{following: [User.ap_followers(user)]})
|
|
|
|
|
2017-03-30 15:07:03 +00:00
|
|
|
object = %Object{
|
|
|
|
data: %{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => [
|
|
|
|
%{
|
|
|
|
"type" => "Link",
|
|
|
|
"mediaType" => "image/jpg",
|
|
|
|
"href" => "http://example.org/image.jpg"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"uuid" => 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-12 15:22:29 +00:00
|
|
|
content_html = "Some content mentioning <a href='shp'>@shp</shp>"
|
|
|
|
content = HtmlSanitizeEx.strip_tags(content_html)
|
2017-04-12 17:34:58 +00:00
|
|
|
date = DateTime.from_naive!(~N[2016-05-24 13:26:08.003], "Etc/UTC") |> DateTime.to_iso8601
|
2017-03-22 15:51:20 +00:00
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
activity = %Activity{
|
|
|
|
id: 1,
|
|
|
|
data: %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => [
|
|
|
|
User.ap_followers(user),
|
2017-04-03 16:28:19 +00:00
|
|
|
"https://www.w3.org/ns/activitystreams#Public",
|
|
|
|
mentioned_user.ap_id
|
2017-03-21 16:53:20 +00:00
|
|
|
],
|
|
|
|
"actor" => User.ap_id(user),
|
|
|
|
"object" => %{
|
2017-03-22 15:51:20 +00:00
|
|
|
"published" => date,
|
2017-03-21 16:53:20 +00:00
|
|
|
"type" => "Note",
|
2017-04-12 15:22:29 +00:00
|
|
|
"content" => content_html,
|
2017-03-28 12:49:21 +00:00
|
|
|
"inReplyToStatusId" => 213123,
|
2017-03-30 16:07:38 +00:00
|
|
|
"statusnetConversationId" => 4711,
|
|
|
|
"attachment" => [
|
|
|
|
object
|
|
|
|
]
|
2017-03-22 15:51:20 +00:00
|
|
|
},
|
|
|
|
"published" => date
|
2017-03-21 16:53:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
expected_status = %{
|
|
|
|
"id" => activity.id,
|
2017-03-23 14:51:34 +00:00
|
|
|
"user" => UserRepresenter.to_map(user, %{for: follower}),
|
2017-03-21 16:53:20 +00:00
|
|
|
"is_local" => true,
|
|
|
|
"attentions" => [],
|
2017-04-12 15:22:29 +00:00
|
|
|
"statusnet_html" => content_html,
|
2017-03-21 16:53:20 +00:00
|
|
|
"text" => content,
|
2017-03-22 15:51:20 +00:00
|
|
|
"is_post_verb" => true,
|
2017-04-12 17:34:58 +00:00
|
|
|
"created_at" => "Tue May 24 13:26:08 +0000 2016",
|
2017-03-28 12:49:21 +00:00
|
|
|
"in_reply_to_status_id" => 213123,
|
2017-03-30 15:07:03 +00:00
|
|
|
"statusnet_conversation_id" => 4711,
|
|
|
|
"attachments" => [
|
|
|
|
ObjectRepresenter.to_map(object)
|
2017-04-03 16:28:19 +00:00
|
|
|
],
|
|
|
|
"attentions" => [
|
|
|
|
UserRepresenter.to_map(mentioned_user, %{for: follower})
|
2017-03-30 15:07:03 +00:00
|
|
|
]
|
2017-03-21 16:53:20 +00:00
|
|
|
}
|
|
|
|
|
2017-04-03 16:28:19 +00:00
|
|
|
assert ActivityRepresenter.to_map(activity, %{user: user, for: follower, mentioned: [mentioned_user]}) == expected_status
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|
|
|
|
end
|