mirror of
https://github.com/mastodon/mastodon.git
synced 2026-06-20 06:36:21 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
106 lines
2.7 KiB
Ruby
106 lines
2.7 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Admin::ModerationAction do
|
|
subject do
|
|
described_class.new(
|
|
current_account:,
|
|
type:,
|
|
report_id:,
|
|
text:
|
|
)
|
|
end
|
|
|
|
let(:current_account) { Fabricate(:admin_user).account }
|
|
let(:target_account) { Fabricate(:account) }
|
|
let(:statuses) { Fabricate.times(2, :status, account: target_account) }
|
|
let(:status_ids) { statuses.map(&:id) }
|
|
let(:report) { Fabricate(:report, target_account:, status_ids:) }
|
|
let(:report_id) { report.id }
|
|
let(:text) { 'test' }
|
|
|
|
describe '#save!' do
|
|
context 'when `type` is `delete`' do
|
|
let(:type) { 'delete' }
|
|
|
|
it 'discards the statuses' do
|
|
subject.save!
|
|
|
|
statuses.each do |status|
|
|
expect(status.reload).to be_discarded
|
|
end
|
|
expect(report.reload).to be_action_taken
|
|
end
|
|
|
|
context 'with attached collections' do
|
|
let(:status_ids) { [] }
|
|
let(:collections) { Fabricate.times(2, :collection, account: target_account) }
|
|
|
|
before do
|
|
report.collections = collections
|
|
end
|
|
|
|
it 'deletes the collections and creates an action log' do
|
|
expect { subject.save! }.to change(Collection, :count).by(-2)
|
|
.and change(Admin::ActionLog, :count).by(3)
|
|
end
|
|
end
|
|
|
|
context 'with a remote collection' do
|
|
let(:status_ids) { [] }
|
|
let(:collection) { Fabricate(:remote_collection) }
|
|
let(:target_account) { collection.account }
|
|
|
|
before do
|
|
report.collections << collection
|
|
end
|
|
|
|
it 'creates a tombstone' do
|
|
expect { subject.save! }.to change(Tombstone, :count).by(1)
|
|
|
|
expect(Tombstone.last.uri).to eq collection.uri
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when `type` is `mark_as_sensitive`' do
|
|
let(:type) { 'mark_as_sensitive' }
|
|
|
|
before do
|
|
preview_card = Fabricate(:preview_card)
|
|
statuses.each do |status|
|
|
PreviewCardsStatus.create!(status:, preview_card:)
|
|
end
|
|
end
|
|
|
|
it 'marks the statuses as sensitive' do
|
|
subject.save!
|
|
|
|
statuses.each do |status|
|
|
expect(status.reload).to be_sensitive
|
|
end
|
|
expect(report.reload).to be_action_taken
|
|
end
|
|
|
|
context 'with attached collections' do
|
|
let(:status_ids) { [] }
|
|
let(:collections) { Fabricate.times(2, :collection, account: target_account) }
|
|
|
|
before do
|
|
report.collections = collections
|
|
end
|
|
|
|
it 'marks the collections as sensitive' do
|
|
subject.save!
|
|
|
|
collections.each do |collection|
|
|
expect(collection.reload).to be_sensitive
|
|
end
|
|
expect(report.reload).to be_action_taken
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|