diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/fabricators/favourite_fabricator.rb | 3 | ||||
-rw-r--r-- | spec/services/suspend_account_service_spec.rb | 33 |
2 files changed, 35 insertions, 1 deletions
diff --git a/spec/fabricators/favourite_fabricator.rb b/spec/fabricators/favourite_fabricator.rb index e598d3838..464ac8d71 100644 --- a/spec/fabricators/favourite_fabricator.rb +++ b/spec/fabricators/favourite_fabricator.rb @@ -1,3 +1,4 @@ Fabricator(:favourite) do - + account + status end diff --git a/spec/services/suspend_account_service_spec.rb b/spec/services/suspend_account_service_spec.rb new file mode 100644 index 000000000..1cb647e8d --- /dev/null +++ b/spec/services/suspend_account_service_spec.rb @@ -0,0 +1,33 @@ +require 'rails_helper' + +RSpec.describe SuspendAccountService do + describe '#call' do + subject do + -> { described_class.new.call(account) } + end + + let!(:account) { Fabricate(:account) } + let!(:status) { Fabricate(:status, account: account) } + let!(:media_attachment) { Fabricate(:media_attachment, account: account) } + let!(:notification) { Fabricate(:notification, account: account) } + let!(:favourite) { Fabricate(:favourite, account: account) } + let!(:active_relationship) { Fabricate(:follow, account: account) } + let!(:passive_relationship) { Fabricate(:follow, target_account: account) } + let!(:subscription) { Fabricate(:subscription, account: account) } + + it 'deletes associated records' do + is_expected.to change { + [ + account.statuses, + account.media_attachments, + account.stream_entries, + account.notifications, + account.favourites, + account.active_relationships, + account.passive_relationships, + account.subscriptions + ].map(&:count) + }.from([1, 1, 1, 1, 1, 1, 1, 1]).to([0, 0, 0, 0, 0, 0, 0, 0]) + end + end +end |