akkoma/test/web/mastodon_api/account_view_test.exs

95 lines
2.4 KiB
Elixir
Raw Normal View History

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
test "Represent a user account" do
source_data = %{
"tag" => [
%{
"type" => "Emoji",
"icon" => %{"url" => "/file.png"},
"name" => ":karjalanpiirakka:"
}
]
}
2018-03-30 13:01:53 +00:00
user =
insert(:user, %{
info: %{"note_count" => 5, "follower_count" => 3, "source_data" => source_data},
2018-03-30 13:01:53 +00:00
nickname: "shp@shitposter.club",
name: ":karjalanpiirakka: shp",
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]
})
expected = %{
2017-11-10 16:18:19 +00:00
id: to_string(user.id),
username: "shp",
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",
followers_count: 3,
following_count: 0,
statuses_count: 5,
note: "<span>valid html</span>",
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: [
%{
"static_url" => "/file.png",
"url" => "/file.png",
"shortcode" => "karjalanpiirakka",
"visible_in_picker" => false
}
],
2018-06-04 15:44:08 +00:00
fields: [],
source: %{
note: "",
privacy: "public",
sensitive: "false"
}
}
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),
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),
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,
requested: false,
domain_blocking: false
}
assert expected == AccountView.render("relationship.json", %{user: user, target: other_user})
end
end