2017-03-21 16:53:20 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
alias Pleroma.{User, Activity}
|
|
|
|
alias Pleroma.Web.TwitterAPI.Representers.{UserRepresenter, ActivityRepresenter}
|
|
|
|
alias Pleroma.Builders.UserBuilder
|
|
|
|
|
|
|
|
test "an activity" do
|
|
|
|
{:ok, user} = UserBuilder.insert
|
2017-03-23 14:51:34 +00:00
|
|
|
{:ok, follower} = UserBuilder.insert(%{following: [User.ap_followers(user)]})
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
content = "Some content"
|
2017-03-22 15:51:20 +00:00
|
|
|
date = DateTime.utc_now() |> DateTime.to_iso8601
|
|
|
|
|
2017-03-21 16:53:20 +00:00
|
|
|
activity = %Activity{
|
|
|
|
id: 1,
|
|
|
|
data: %{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => [
|
|
|
|
User.ap_followers(user),
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public"
|
|
|
|
],
|
|
|
|
"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",
|
|
|
|
"content" => content
|
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" => [],
|
|
|
|
"statusnet_html" => content,
|
|
|
|
"text" => content,
|
2017-03-22 15:51:20 +00:00
|
|
|
"is_post_verb" => true,
|
|
|
|
"created_at" => date
|
2017-03-21 16:53:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 14:51:34 +00:00
|
|
|
assert ActivityRepresenter.to_map(activity, %{user: user, for: follower}) == expected_status
|
2017-03-21 16:53:20 +00:00
|
|
|
end
|
|
|
|
end
|