about summary refs log tree commit diff
path: root/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-05-08 20:36:34 +0200
committerGitHub <noreply@github.com>2020-05-08 20:36:34 +0200
commitf1e0fa80f67365e443ed56fc9e907b3ddf5f1524 (patch)
treec031e0a5cad6dba810a108a32b8c278a3dcdd5f5 /spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
parent043255a45e27d7fdc2b7399d1ae3a83deec684bb (diff)
Fix own following/followers not showing muted users (#13614)
Fixes #13612
Diffstat (limited to 'spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb')
-rw-r--r--spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb b/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
index 54587187f..482a19ef2 100644
--- a/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
+++ b/spec/controllers/api/v1/accounts/follower_accounts_controller_spec.rb
@@ -36,5 +36,28 @@ describe Api::V1::Accounts::FollowerAccountsController do
       expect(body_as_json.size).to eq 1
       expect(body_as_json[0][:id]).to eq alice.id.to_s
     end
+
+    context 'when requesting user is blocked' do
+      before do
+        account.block!(user.account)
+      end
+
+      it 'hides results' do
+        get :index, params: { account_id: account.id, limit: 2 }
+        expect(body_as_json.size).to eq 0
+      end
+    end
+
+    context 'when requesting user is the account owner' do
+      let(:user) { Fabricate(:user, account: account) }
+
+      it 'returns all accounts, including muted accounts' do
+        user.account.mute!(bob)
+        get :index, params: { account_id: account.id, limit: 2 }
+
+        expect(body_as_json.size).to eq 2
+        expect([body_as_json[0][:id], body_as_json[1][:id]]).to match_array([alice.id.to_s, bob.id.to_s])
+      end
+    end
   end
 end