mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-19 22:38:20 -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
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
82 lines
2.5 KiB
Ruby
82 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin Warning Presets' do
|
|
describe 'Managing warning presets' do
|
|
before { sign_in Fabricate(:admin_user) }
|
|
|
|
describe 'Viewing warning presets' do
|
|
let!(:account_warning_preset) { Fabricate :account_warning_preset, text: 'This is a preset' }
|
|
|
|
it 'lists existing records' do
|
|
visit admin_warning_presets_path
|
|
|
|
expect(page)
|
|
.to have_text(I18n.t('admin.warning_presets.title'))
|
|
.and have_text(account_warning_preset.text)
|
|
end
|
|
end
|
|
|
|
describe 'Creating a new account warning preset' do
|
|
it 'creates new record with valid attributes' do
|
|
visit admin_warning_presets_path
|
|
|
|
# Invalid submission
|
|
fill_in 'account_warning_preset_text', with: ''
|
|
expect { submit_form }
|
|
.to_not change(AccountWarningPreset, :count)
|
|
expect(page)
|
|
.to have_text(/error below/)
|
|
|
|
# Valid submission
|
|
fill_in 'account_warning_preset_text', with: 'You cant do that here'
|
|
expect { submit_form }
|
|
.to change(AccountWarningPreset, :count).by(1)
|
|
expect(page)
|
|
.to have_text(I18n.t('admin.warning_presets.title'))
|
|
end
|
|
|
|
def submit_form
|
|
click_on I18n.t('admin.warning_presets.add_new')
|
|
end
|
|
end
|
|
|
|
describe 'Editing an existing account warning preset' do
|
|
let!(:account_warning_preset) { Fabricate :account_warning_preset, text: 'Preset text' }
|
|
|
|
it 'updates with valid attributes' do
|
|
visit admin_warning_presets_path
|
|
|
|
# Invalid submission
|
|
click_on account_warning_preset.text
|
|
fill_in 'account_warning_preset_text', with: ''
|
|
expect { submit_form }
|
|
.to_not change(account_warning_preset.reload, :updated_at)
|
|
|
|
# Valid update
|
|
fill_in 'account_warning_preset_text', with: 'Updated text'
|
|
expect { submit_form }
|
|
.to(change { account_warning_preset.reload.text })
|
|
end
|
|
|
|
def submit_form
|
|
click_on(submit_button)
|
|
end
|
|
end
|
|
|
|
describe 'Destroy an account warning preset' do
|
|
let!(:account_warning_preset) { Fabricate :account_warning_preset }
|
|
|
|
it 'removes the record' do
|
|
visit admin_warning_presets_path
|
|
|
|
expect { click_on I18n.t('admin.warning_presets.delete') }
|
|
.to change(AccountWarningPreset, :count).by(-1)
|
|
expect { account_warning_preset.reload }
|
|
.to raise_error(ActiveRecord::RecordNotFound)
|
|
end
|
|
end
|
|
end
|
|
end
|