Expand coverage of admin/trends/* areas (#33581)
This commit is contained in:
parent
4a2813158d
commit
a9a8b6b701
4 changed files with 232 additions and 31 deletions
|
@ -5,20 +5,75 @@ require 'rails_helper'
|
|||
RSpec.describe 'Admin::Trends::Statuses' do
|
||||
let(:current_user) { Fabricate(:admin_user) }
|
||||
|
||||
before do
|
||||
sign_in current_user
|
||||
end
|
||||
before { sign_in current_user }
|
||||
|
||||
describe 'Performing batch updates' do
|
||||
before do
|
||||
visit admin_trends_statuses_path
|
||||
end
|
||||
|
||||
context 'without selecting any records' do
|
||||
it 'displays a notice about selection' do
|
||||
visit admin_trends_statuses_path
|
||||
|
||||
click_on button_for_allow
|
||||
|
||||
expect(page).to have_content(selection_error_text)
|
||||
expect(page)
|
||||
.to have_content(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
|
||||
|
||||
|
@ -26,6 +81,18 @@ RSpec.describe 'Admin::Trends::Statuses' do
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue