diff options
| author | kaniini <nenolod@gmail.com> | 2018-09-03 14:55:42 +0000 |
|---|---|---|
| committer | kaniini <nenolod@gmail.com> | 2018-09-03 14:55:42 +0000 |
| commit | 76c67a41c12a80138e984fa782d7396da53b8d32 (patch) | |
| tree | 5df0e23a10b29ee0dd31887919b8858253800296 /test/web/mastodon_api/account_view_test.exs | |
| parent | d3f6814febb95f03af58543f4896599810f9b069 (diff) | |
| parent | 1c9e539b47ff594d75c9548a04e64cb0c61cff8c (diff) | |
| download | pleroma-76c67a41c12a80138e984fa782d7396da53b8d32.tar.gz pleroma-76c67a41c12a80138e984fa782d7396da53b8d32.zip | |
Merge branch 'develop' into 'feature/staff-discovery-api'
# Conflicts:
# lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
Diffstat (limited to 'test/web/mastodon_api/account_view_test.exs')
| -rw-r--r-- | test/web/mastodon_api/account_view_test.exs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs index 35c8a1fb0..5393732eb 100644 --- a/test/web/mastodon_api/account_view_test.exs +++ b/test/web/mastodon_api/account_view_test.exs @@ -49,6 +49,44 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do } ], fields: [], + bot: false, + source: %{ + note: "", + privacy: "public", + sensitive: "false" + } + } + + assert expected == AccountView.render("account.json", %{user: user}) + end + + test "Represent a Service(bot) account" 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] + }) + + 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", |
