diff options
author | ThibG <thib@sitedethib.com> | 2020-07-07 02:01:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 02:01:13 +0200 |
commit | e96e9cae62a229f03b30573a6d06a97765c2a766 (patch) | |
tree | 4fb7f5b99962388aaaa8dff92ac00a361571df68 /spec | |
parent | a783bdf4adee3444e9cd32c2eaa0712214ba1230 (diff) |
Add test for removing endorsed accounts on account deletion/suspension (#14241)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/services/suspend_account_service_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/services/suspend_account_service_spec.rb b/spec/services/suspend_account_service_spec.rb index eebbbc12a..32726d763 100644 --- a/spec/services/suspend_account_service_spec.rb +++ b/spec/services/suspend_account_service_spec.rb @@ -20,6 +20,7 @@ RSpec.describe SuspendAccountService, type: :service do let!(:passive_relationship) { Fabricate(:follow, target_account: account) } let!(:remote_alice) { Fabricate(:account, inbox_url: 'https://alice.com/inbox', protocol: :activitypub) } let!(:remote_bob) { Fabricate(:account, inbox_url: 'https://bob.com/inbox', protocol: :activitypub) } + let!(:endorsment) { Fabricate(:account_pin, account: passive_relationship.account, target_account: account) } it 'deletes associated records' do is_expected.to change { @@ -30,8 +31,9 @@ RSpec.describe SuspendAccountService, type: :service do account.favourites, account.active_relationships, account.passive_relationships, + AccountPin.where(target_account: account), ].map(&:count) - }.from([1, 1, 1, 1, 1, 1]).to([0, 0, 0, 0, 0, 0]) + }.from([1, 1, 1, 1, 1, 1, 1]).to([0, 0, 0, 0, 0, 0, 0]) end it 'sends a delete actor activity to all known inboxes' do |