diff options
| author | Eugenij <eugenijm@protonmail.com> | 2019-07-16 11:04:11 +0000 | 
|---|---|---|
| committer | kaniini <ariadne@dereferenced.org> | 2019-07-16 11:04:11 +0000 | 
| commit | c4ca142e14444a03250f246e189c78e70aafe9d7 (patch) | |
| tree | eb7ebeb22a75f2afc515f8d7687eb68fa79dd039 /test | |
| parent | cf7ca1db0e10b61cc64c7cadc7cf70d57cbfe684 (diff) | |
| download | pleroma-c4ca142e14444a03250f246e189c78e70aafe9d7.tar.gz pleroma-c4ca142e14444a03250f246e189c78e70aafe9d7.zip | |
Add the `blocked_by` attribute to the relationship API (`GET /api/v1/accounts/relationships`)
Diffstat (limited to 'test')
| -rw-r--r-- | test/web/mastodon_api/account_view_test.exs | 102 | 
1 files changed, 83 insertions, 19 deletions
| diff --git a/test/web/mastodon_api/account_view_test.exs b/test/web/mastodon_api/account_view_test.exs index de6aeec72..83b9db071 100644 --- a/test/web/mastodon_api/account_view_test.exs +++ b/test/web/mastodon_api/account_view_test.exs @@ -6,6 +6,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do    use Pleroma.DataCase    import Pleroma.Factory    alias Pleroma.User +  alias Pleroma.Web.CommonAPI    alias Pleroma.Web.MastodonAPI.AccountView    test "Represent a user account" do @@ -165,28 +166,90 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do      assert expected == AccountView.render("mention.json", %{user: user})    end -  test "represent a relationship" do -    user = insert(:user) -    other_user = insert(:user) +  describe "relationship" do +    test "represent a relationship for the following and followed user" do +      user = insert(:user) +      other_user = insert(:user) -    {:ok, user} = User.follow(user, other_user) -    {:ok, user} = User.block(user, other_user) +      {:ok, user} = User.follow(user, other_user) +      {:ok, other_user} = User.follow(other_user, user) +      {:ok, other_user} = User.subscribe(user, other_user) +      {:ok, user} = User.mute(user, other_user, true) +      {:ok, user} = CommonAPI.hide_reblogs(user, other_user) -    expected = %{ -      id: to_string(other_user.id), -      following: false, -      followed_by: false, -      blocking: true, -      muting: false, -      muting_notifications: false, -      subscribing: false, -      requested: false, -      domain_blocking: false, -      showing_reblogs: true, -      endorsed: false -    } +      expected = %{ +        id: to_string(other_user.id), +        following: true, +        followed_by: true, +        blocking: false, +        blocked_by: false, +        muting: true, +        muting_notifications: true, +        subscribing: true, +        requested: false, +        domain_blocking: false, +        showing_reblogs: false, +        endorsed: false +      } + +      assert expected == +               AccountView.render("relationship.json", %{user: user, target: other_user}) +    end + +    test "represent a relationship for the blocking and blocked user" do +      user = insert(:user) +      other_user = insert(:user) + +      {:ok, user} = User.follow(user, other_user) +      {:ok, other_user} = User.subscribe(user, other_user) +      {:ok, user} = User.block(user, other_user) +      {:ok, other_user} = User.block(other_user, user) + +      expected = %{ +        id: to_string(other_user.id), +        following: false, +        followed_by: false, +        blocking: true, +        blocked_by: true, +        muting: false, +        muting_notifications: false, +        subscribing: false, +        requested: false, +        domain_blocking: false, +        showing_reblogs: true, +        endorsed: false +      } + +      assert expected == +               AccountView.render("relationship.json", %{user: user, target: other_user}) +    end + +    test "represent a relationship for the user with a pending follow request" do +      user = insert(:user) +      other_user = insert(:user, %{info: %User.Info{locked: true}}) + +      {:ok, user, other_user, _} = CommonAPI.follow(user, other_user) +      user = User.get_cached_by_id(user.id) +      other_user = User.get_cached_by_id(other_user.id) + +      expected = %{ +        id: to_string(other_user.id), +        following: false, +        followed_by: false, +        blocking: false, +        blocked_by: false, +        muting: false, +        muting_notifications: false, +        subscribing: false, +        requested: true, +        domain_blocking: false, +        showing_reblogs: true, +        endorsed: false +      } -    assert expected == AccountView.render("relationship.json", %{user: user, target: other_user}) +      assert expected == +               AccountView.render("relationship.json", %{user: user, target: other_user}) +    end    end    test "represent an embedded relationship" do @@ -240,6 +303,7 @@ defmodule Pleroma.Web.MastodonAPI.AccountViewTest do            following: false,            followed_by: false,            blocking: true, +          blocked_by: false,            subscribing: false,            muting: false,            muting_notifications: false, | 
