2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-09 10:09:53 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountViewTest do
|
|
|
|
use Pleroma.DataCase
|
|
|
|
import Pleroma.Factory
|
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2017-09-13 13:55:10 +00:00
|
|
|
alias Pleroma.User
|
2017-09-09 10:09:53 +00:00
|
|
|
|
|
|
|
test "Represent a user account" do
|
2018-08-08 06:24:50 +00:00
|
|
|
source_data = %{
|
|
|
|
"tag" => [
|
|
|
|
%{
|
|
|
|
"type" => "Emoji",
|
|
|
|
"icon" => %{"url" => "/file.png"},
|
|
|
|
"name" => ":karjalanpiirakka:"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
user =
|
|
|
|
insert(:user, %{
|
2018-11-20 18:54:48 +00:00
|
|
|
info: %{note_count: 5, follower_count: 3, source_data: source_data},
|
2018-03-30 13:01:53 +00:00
|
|
|
nickname: "shp@shitposter.club",
|
2018-08-08 06:24:50 +00:00
|
|
|
name: ":karjalanpiirakka: shp",
|
2018-08-21 14:41:32 +00:00
|
|
|
bio: "<script src=\"invalid-html\"></script><span>valid html</span>",
|
2018-03-30 13:01:53 +00:00
|
|
|
inserted_at: ~N[2017-08-15 15:47:06.597036]
|
|
|
|
})
|
2017-09-09 10:09:53 +00:00
|
|
|
|
|
|
|
expected = %{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(user.id),
|
2017-09-12 07:34:39 +00:00
|
|
|
username: "shp",
|
2017-09-09 10:09:53 +00:00
|
|
|
acct: user.nickname,
|
|
|
|
display_name: user.name,
|
|
|
|
locked: false,
|
2017-09-15 15:50:47 +00:00
|
|
|
created_at: "2017-08-15T15:47:06.000Z",
|
2017-09-09 10:09:53 +00:00
|
|
|
followers_count: 3,
|
|
|
|
following_count: 0,
|
|
|
|
statuses_count: 5,
|
2018-08-21 14:41:32 +00:00
|
|
|
note: "<span>valid html</span>",
|
2017-09-09 10:09:53 +00:00
|
|
|
url: user.ap_id,
|
2018-02-03 11:43:14 +00:00
|
|
|
avatar: "http://localhost:4001/images/avi.png",
|
|
|
|
avatar_static: "http://localhost:4001/images/avi.png",
|
|
|
|
header: "http://localhost:4001/images/banner.png",
|
|
|
|
header_static: "http://localhost:4001/images/banner.png",
|
2018-08-08 06:24:50 +00:00
|
|
|
emojis: [
|
|
|
|
%{
|
|
|
|
"static_url" => "/file.png",
|
|
|
|
"url" => "/file.png",
|
|
|
|
"shortcode" => "karjalanpiirakka",
|
|
|
|
"visible_in_picker" => false
|
|
|
|
}
|
|
|
|
],
|
2018-06-04 15:44:08 +00:00
|
|
|
fields: [],
|
2018-08-09 23:44:38 +00:00
|
|
|
bot: false,
|
|
|
|
source: %{
|
|
|
|
note: "",
|
|
|
|
privacy: "public",
|
2018-09-05 20:20:59 +00:00
|
|
|
sensitive: false
|
2018-12-06 17:38:52 +00:00
|
|
|
},
|
2018-12-18 11:07:05 +00:00
|
|
|
pleroma: %{
|
|
|
|
confirmation_pending: false,
|
2019-01-27 09:21:13 +00:00
|
|
|
tags: [],
|
|
|
|
is_admin: false,
|
2019-02-27 13:01:10 +00:00
|
|
|
is_moderator: false,
|
|
|
|
relationship: %{}
|
2018-12-18 11:07:05 +00:00
|
|
|
}
|
2018-08-09 23:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == AccountView.render("account.json", %{user: user})
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Represent a Service(bot) account" do
|
|
|
|
user =
|
|
|
|
insert(:user, %{
|
2018-11-20 18:54:48 +00:00
|
|
|
info: %{note_count: 5, follower_count: 3, source_data: %{"type" => "Service"}},
|
2018-08-09 23:44:38 +00:00
|
|
|
nickname: "shp@shitposter.club",
|
|
|
|
inserted_at: ~N[2017-08-15 15:47:06.597036]
|
|
|
|
})
|
|
|
|
|
|
|
|
expected = %{
|
|
|
|
id: to_string(user.id),
|
|
|
|
username: "shp",
|
|
|
|
acct: user.nickname,
|
|
|
|
display_name: user.name,
|
|
|
|
locked: false,
|
|
|
|
created_at: "2017-08-15T15:47:06.000Z",
|
|
|
|
followers_count: 3,
|
|
|
|
following_count: 0,
|
|
|
|
statuses_count: 5,
|
|
|
|
note: user.bio,
|
|
|
|
url: user.ap_id,
|
|
|
|
avatar: "http://localhost:4001/images/avi.png",
|
|
|
|
avatar_static: "http://localhost:4001/images/avi.png",
|
|
|
|
header: "http://localhost:4001/images/banner.png",
|
|
|
|
header_static: "http://localhost:4001/images/banner.png",
|
|
|
|
emojis: [],
|
|
|
|
fields: [],
|
|
|
|
bot: true,
|
2017-09-16 09:52:33 +00:00
|
|
|
source: %{
|
|
|
|
note: "",
|
|
|
|
privacy: "public",
|
2018-08-28 22:51:25 +00:00
|
|
|
sensitive: false
|
2018-12-06 17:38:52 +00:00
|
|
|
},
|
2018-12-18 11:07:05 +00:00
|
|
|
pleroma: %{
|
|
|
|
confirmation_pending: false,
|
2019-01-27 09:21:13 +00:00
|
|
|
tags: [],
|
|
|
|
is_admin: false,
|
2019-02-27 13:01:10 +00:00
|
|
|
is_moderator: false,
|
|
|
|
relationship: %{}
|
2018-12-18 11:07:05 +00:00
|
|
|
}
|
2017-09-09 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == AccountView.render("account.json", %{user: user})
|
|
|
|
end
|
|
|
|
|
|
|
|
test "Represent a smaller mention" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
expected = %{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(user.id),
|
2017-09-09 10:09:53 +00:00
|
|
|
acct: user.nickname,
|
|
|
|
username: user.nickname,
|
|
|
|
url: user.ap_id
|
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == AccountView.render("mention.json", %{user: user})
|
|
|
|
end
|
2017-09-13 13:55:10 +00:00
|
|
|
|
|
|
|
test "represent a relationship" do
|
|
|
|
user = insert(:user)
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, user} = User.follow(user, other_user)
|
2017-11-03 07:23:31 +00:00
|
|
|
{:ok, user} = User.block(user, other_user)
|
2017-09-13 13:55:10 +00:00
|
|
|
|
|
|
|
expected = %{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(other_user.id),
|
2018-06-19 08:53:54 +00:00
|
|
|
following: false,
|
2017-09-13 14:05:39 +00:00
|
|
|
followed_by: false,
|
2017-11-03 07:23:31 +00:00
|
|
|
blocking: true,
|
2017-09-13 13:55:10 +00:00
|
|
|
muting: false,
|
2018-09-05 18:13:50 +00:00
|
|
|
muting_notifications: false,
|
2017-09-13 13:55:10 +00:00
|
|
|
requested: false,
|
2018-09-05 18:13:50 +00:00
|
|
|
domain_blocking: false,
|
2018-09-20 14:22:31 +00:00
|
|
|
showing_reblogs: false,
|
|
|
|
endorsed: false
|
2017-09-13 13:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
|
|
|
|
end
|
2019-02-27 13:01:10 +00:00
|
|
|
|
|
|
|
test "represent an embedded relationship" do
|
|
|
|
user =
|
|
|
|
insert(:user, %{
|
|
|
|
info: %{note_count: 5, follower_count: 3, source_data: %{"type" => "Service"}},
|
|
|
|
nickname: "shp@shitposter.club",
|
|
|
|
inserted_at: ~N[2017-08-15 15:47:06.597036]
|
|
|
|
})
|
|
|
|
|
|
|
|
other_user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, other_user} = User.follow(other_user, user)
|
|
|
|
{:ok, other_user} = User.block(other_user, user)
|
|
|
|
|
|
|
|
expected = %{
|
|
|
|
id: to_string(user.id),
|
|
|
|
username: "shp",
|
|
|
|
acct: user.nickname,
|
|
|
|
display_name: user.name,
|
|
|
|
locked: false,
|
|
|
|
created_at: "2017-08-15T15:47:06.000Z",
|
|
|
|
followers_count: 3,
|
|
|
|
following_count: 0,
|
|
|
|
statuses_count: 5,
|
|
|
|
note: user.bio,
|
|
|
|
url: user.ap_id,
|
|
|
|
avatar: "http://localhost:4001/images/avi.png",
|
|
|
|
avatar_static: "http://localhost:4001/images/avi.png",
|
|
|
|
header: "http://localhost:4001/images/banner.png",
|
|
|
|
header_static: "http://localhost:4001/images/banner.png",
|
|
|
|
emojis: [],
|
|
|
|
fields: [],
|
|
|
|
bot: true,
|
|
|
|
source: %{
|
|
|
|
note: "",
|
|
|
|
privacy: "public",
|
|
|
|
sensitive: false
|
|
|
|
},
|
|
|
|
pleroma: %{
|
|
|
|
confirmation_pending: false,
|
|
|
|
tags: [],
|
|
|
|
is_admin: false,
|
|
|
|
is_moderator: false,
|
|
|
|
relationship: %{
|
|
|
|
id: to_string(user.id),
|
|
|
|
following: false,
|
|
|
|
followed_by: false,
|
|
|
|
blocking: true,
|
|
|
|
muting: false,
|
|
|
|
muting_notifications: false,
|
|
|
|
requested: false,
|
|
|
|
domain_blocking: false,
|
|
|
|
showing_reblogs: false,
|
|
|
|
endorsed: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assert expected == AccountView.render("account.json", %{user: user, for: other_user})
|
|
|
|
end
|
2017-09-09 10:09:53 +00:00
|
|
|
end
|