pleroma/test/web/twitter_api/representers/activity_representer_test.exs

49 lines
1.3 KiB
Elixir
Raw Normal View History

2017-03-21 17:53:20 +01: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
{:ok, follower} = UserBuilder.insert(%{following: [User.ap_followers(user)]})
2017-03-21 17:53:20 +01:00
content = "Some content"
2017-03-22 16:51:20 +01:00
date = DateTime.utc_now() |> DateTime.to_iso8601
2017-03-21 17:53:20 +01: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 16:51:20 +01:00
"published" => date,
2017-03-21 17:53:20 +01:00
"type" => "Note",
2017-03-24 00:00:06 +01:00
"content" => content,
"inReplyToStatusId" => 213123
2017-03-22 16:51:20 +01:00
},
"published" => date
2017-03-21 17:53:20 +01:00
}
}
expected_status = %{
"id" => activity.id,
"user" => UserRepresenter.to_map(user, %{for: follower}),
2017-03-21 17:53:20 +01:00
"is_local" => true,
"attentions" => [],
"statusnet_html" => content,
"text" => content,
2017-03-22 16:51:20 +01:00
"is_post_verb" => true,
2017-03-24 00:00:06 +01:00
"created_at" => date,
"in_reply_to_status_id" => 213123
2017-03-21 17:53:20 +01:00
}
assert ActivityRepresenter.to_map(activity, %{user: user, for: follower}) == expected_status
2017-03-21 17:53:20 +01:00
end
end