mastodon/spec/system/admin/trends/statuses_spec.rb
Matt Jankowski 696aaa616b
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
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (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
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Update rubocop-capybara to version 2.23.0 (#38868)
2026-05-04 07:52:29 +00:00

103 lines
2.8 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Admin::Trends::Statuses' do
let(:current_user) { Fabricate(:admin_user) }
before { sign_in current_user }
describe 'Performing batch updates' do
context 'without selecting any records' do
it 'displays a notice about selection' do
visit admin_trends_statuses_path
expect(page)
.to have_title(I18n.t('admin.trends.statuses.title'))
click_on button_for_allow
expect(page)
.to have_text(selection_error_text)
end
end
context 'with statuses that are not trendable' do
let!(:status_trend) { Fabricate :status_trend, status: Fabricate(:status, trendable: false) }
it 'allows the statuses' do
visit admin_trends_statuses_path
check_item
expect { click_on button_for_allow }
.to change { status_trend.status.reload.trendable? }.from(false).to(true)
end
end
context 'with statuses whose accounts are not trendable' do
let!(:status_trend) { Fabricate :status_trend, status: Fabricate(:status, account: Fabricate(:account, trendable: false)) }
it 'allows the accounts of the statuses' do
visit admin_trends_statuses_path
check_item
expect { click_on button_for_allow_accounts }
.to change { status_trend.status.account.reload.trendable? }.from(false).to(true)
end
end
context 'with statuses that are trendable' do
let!(:status_trend) { Fabricate :status_trend, status: Fabricate(:status, trendable: true) }
it 'disallows the statuses' do
visit admin_trends_statuses_path
check_item
expect { click_on button_for_disallow }
.to change { status_trend.status.reload.trendable? }.from(true).to(false)
end
end
context 'with statuses whose accounts are trendable' do
let!(:status_trend) { Fabricate :status_trend, status: Fabricate(:status, account: Fabricate(:account, trendable: true)) }
it 'disallows the statuses' do
visit admin_trends_statuses_path
check_item
expect { click_on button_for_disallow_accounts }
.to change { status_trend.status.reload.trendable? }.from(true).to(false)
end
end
def check_item
within '.batch-table__row' do
find('input[type=checkbox]').check
end
end
def button_for_allow
I18n.t('admin.trends.statuses.allow')
end
def button_for_allow_accounts
I18n.t('admin.trends.statuses.allow_account')
end
def button_for_disallow
I18n.t('admin.trends.statuses.disallow')
end
def button_for_disallow_accounts
I18n.t('admin.trends.statuses.disallow_account')
end
def selection_error_text
I18n.t('admin.trends.statuses.no_status_selected')
end
end
end