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

171 lines
5.3 KiB
Elixir
Raw Normal View History

2018-12-23 20:11:29 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
2018-12-23 20:11:29 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2017-03-21 16:53:20 +00:00
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
use Pleroma.DataCase
2019-02-10 21:57:38 +00:00
alias Pleroma.Activity
alias Pleroma.Object
alias Pleroma.User
alias Pleroma.Web.ActivityPub.ActivityPub
2019-02-10 21:57:38 +00:00
alias Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter
alias Pleroma.Web.TwitterAPI.Representers.ObjectRepresenter
2017-06-19 21:12:37 +00:00
alias Pleroma.Web.TwitterAPI.UserView
2017-04-13 15:05:53 +00:00
import Pleroma.Factory
test "a like activity" do
user = insert(:user)
note_activity = insert(:note_activity)
object = Object.get_by_ap_id(note_activity.data["object"]["id"])
{:ok, like_activity, _object} = ActivityPub.like(user, object)
2018-03-30 13:01:53 +00:00
status =
ActivityRepresenter.to_map(like_activity, %{user: user, liked_activity: note_activity})
2017-04-13 15:05:53 +00:00
assert status["id"] == like_activity.id
assert status["in_reply_to_status_id"] == note_activity.id
note_activity = Activity.get_by_ap_id(note_activity.data["id"])
activity_actor = Repo.get_by(User, ap_id: note_activity.data["actor"])
liked_status = ActivityRepresenter.to_map(note_activity, %{user: activity_actor, for: user})
assert liked_status["favorited"] == true
assert status["activity_type"] == "like"
2017-04-13 15:05:53 +00:00
end
2017-03-21 16:53:20 +00:00
test "an activity" do
2018-11-28 23:25:43 +00:00
user = insert(:user)
2017-04-16 13:28:28 +00:00
# {:ok, mentioned_user } = UserBuilder.insert(%{nickname: "shp", ap_id: "shp"})
mentioned_user = insert(:user, %{nickname: "shp"})
# {:ok, follower} = UserBuilder.insert(%{following: [User.ap_followers(user)]})
follower = insert(:user, %{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
}
}
2018-03-30 13:01:53 +00:00
content_html =
"<script>alert('YAY')</script>Some :2hu: content mentioning <a href='#{mentioned_user.ap_id}'>@shp</shp>"
2017-04-12 15:22:29 +00:00
content = HtmlSanitizeEx.strip_tags(content_html)
2018-03-30 13:01:53 +00:00
date = DateTime.from_naive!(~N[2016-05-24 13:26:08.003], "Etc/UTC") |> DateTime.to_iso8601()
{:ok, convo_object} = Object.context_mapping("2hu") |> Repo.insert()
2017-03-22 15:51:20 +00:00
2018-02-25 16:48:31 +00:00
to = [
User.ap_followers(user),
"https://www.w3.org/ns/activitystreams#Public",
mentioned_user.ap_id
]
2018-03-30 13:01:53 +00:00
2017-03-21 16:53:20 +00:00
activity = %Activity{
id: 1,
data: %{
"type" => "Create",
2017-05-07 18:20:53 +00:00
"id" => "id",
2018-02-25 16:48:31 +00:00
"to" => to,
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,
2019-01-09 16:18:37 +00:00
"summary" => "2hu :2hu:",
2018-03-30 13:01:53 +00:00
"inReplyToStatusId" => 213_123,
"attachment" => [
object
2017-04-13 14:19:07 +00:00
],
2017-06-25 10:07:08 +00:00
"external_url" => "some url",
2017-04-15 11:54:46 +00:00
"like_count" => 5,
"announcement_count" => 3,
2017-05-18 14:24:41 +00:00
"context" => "2hu",
2017-09-16 14:40:20 +00:00
"tag" => ["content", "mentioning", "nsfw"],
"emoji" => %{
"2hu" => "corndog.png"
}
2017-03-22 15:51:20 +00:00
},
"published" => date,
"context" => "2hu"
2017-06-25 10:07:08 +00:00
},
2018-02-25 16:48:31 +00:00
local: false,
recipients: to
2017-03-21 16:53:20 +00:00
}
corndog_emojo = ~s(<img height="32px" width="32px" alt="2hu" title="2hu" src="corndog.png" />)
2018-03-30 13:01:53 +00:00
expected_html =
~s(<p>2hu ) <>
corndog_emojo <>
~s(</p>alert\('YAY'\)Some ) <>
corndog_emojo <>
~s( content mentioning <a href=") <> mentioned_user.ap_id <> ~s(">@shp</a>)
2017-03-21 16:53:20 +00:00
expected_status = %{
"id" => activity.id,
2017-06-19 21:12:37 +00:00
"user" => UserView.render("show.json", %{user: user, for: follower}),
2017-06-25 10:07:08 +00:00
"is_local" => false,
2017-09-16 14:40:20 +00:00
"statusnet_html" => expected_html,
2019-01-09 16:18:37 +00:00
"text" => "2hu :2hu:" <> 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",
2018-03-30 13:01:53 +00:00
"in_reply_to_status_id" => 213_123,
"in_reply_to_screen_name" => nil,
"in_reply_to_user_id" => nil,
"in_reply_to_profileurl" => nil,
"in_reply_to_ostatus_uri" => nil,
"statusnet_conversation_id" => convo_object.id,
2017-03-30 15:07:03 +00:00
"attachments" => [
ObjectRepresenter.to_map(object)
],
"attentions" => [
2017-06-19 21:12:37 +00:00
UserView.render("show.json", %{user: mentioned_user, for: follower})
2017-04-13 14:19:07 +00:00
],
"fave_num" => 5,
2017-04-15 11:54:46 +00:00
"repeat_num" => 3,
"favorited" => false,
2017-05-07 18:20:53 +00:00
"repeated" => false,
"pinned" => false,
2017-06-25 10:07:08 +00:00
"external_url" => "some url",
2018-02-25 16:48:31 +00:00
"tags" => ["nsfw", "content", "mentioning"],
"activity_type" => "post",
2017-09-05 07:35:00 +00:00
"possibly_sensitive" => true,
2018-05-20 17:26:09 +00:00
"uri" => activity.data["object"]["id"],
"visibility" => "direct",
2019-01-27 12:27:46 +00:00
"card" => nil,
"muted" => false,
2019-01-09 16:18:37 +00:00
"summary" => "2hu :2hu:",
"summary_html" =>
"2hu <img height=\"32px\" width=\"32px\" alt=\"2hu\" title=\"2hu\" src=\"corndog.png\" />"
2017-03-21 16:53:20 +00:00
}
2018-03-30 13:01:53 +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
2017-07-08 09:17:35 +00:00
2017-09-04 18:03:28 +00:00
test "a delete activity" do
object = insert(:note)
user = User.get_by_ap_id(object.data["actor"])
{:ok, delete} = ActivityPub.delete(object)
map = ActivityRepresenter.to_map(delete, %{user: user})
assert map["is_post_verb"] == false
assert map["activity_type"] == "delete"
2017-09-05 07:35:00 +00:00
assert map["uri"] == object.data["id"]
2017-09-04 18:03:28 +00:00
end
2017-03-21 16:53:20 +00:00
end