mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-07 18:31:07 +00:00

Some checks failed
Bundler Audit / security (push) Has been cancelled
Check i18n / check-i18n (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
Check formatting / lint (push) Has been cancelled
CSS Linting / lint (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
JavaScript Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
JavaScript Testing / test (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
Ruby Testing / build (production) (push) Has been cancelled
Ruby Testing / build (test) (push) Has been cancelled
Ruby Testing / test (.ruby-version) (push) Has been cancelled
Ruby Testing / test (3.2) (push) Has been cancelled
Ruby Testing / Libvips tests (.ruby-version) (push) Has been cancelled
Ruby Testing / Libvips tests (3.2) (push) Has been cancelled
Ruby Testing / End to End testing (.ruby-version) (push) Has been cancelled
Ruby Testing / End to End testing (3.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Has been cancelled
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Has been cancelled
Build nightly container image / compute-suffix (push) Has been cancelled
Crowdin / Download translations / download-translations (push) Has been cancelled
PR Needs Rebase / label-rebase-needed (push) Has been cancelled
Build nightly container image / build-image (push) Has been cancelled
Build nightly container image / build-image-streaming (push) Has been cancelled
60 lines
1.5 KiB
Ruby
60 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin::IpBlocks' do
|
|
let(:current_user) { Fabricate(:user, role: UserRole.find_by(name: 'Admin')) }
|
|
|
|
before { sign_in current_user }
|
|
|
|
describe 'Creating an IP Block' do
|
|
it 'lists blocks and creates new ones' do
|
|
# Visit index page
|
|
visit admin_ip_blocks_path
|
|
expect(page)
|
|
.to have_content(I18n.t('admin.ip_blocks.title'))
|
|
|
|
# Navigate to new
|
|
click_on I18n.t('admin.ip_blocks.add_new')
|
|
|
|
# Invalid with missing IP
|
|
fill_in 'ip_block_ip', with: ''
|
|
expect { submit_form }
|
|
.to_not change(IpBlock, :count)
|
|
expect(page)
|
|
.to have_content(/error below/)
|
|
|
|
# Valid with IP
|
|
fill_in 'ip_block_ip', with: '192.168.1.1'
|
|
expect { submit_form }
|
|
.to change(IpBlock, :count).by(1)
|
|
expect(page)
|
|
.to have_content(I18n.t('admin.ip_blocks.created_msg'))
|
|
end
|
|
|
|
def submit_form
|
|
click_on I18n.t('admin.ip_blocks.add_new')
|
|
end
|
|
end
|
|
|
|
describe 'Performing batch updates' do
|
|
context 'without selecting any records' do
|
|
it 'displays a notice about selection' do
|
|
visit admin_ip_blocks_path
|
|
|
|
click_on button_for_delete
|
|
expect(page)
|
|
.to have_content(selection_error_text)
|
|
end
|
|
end
|
|
|
|
def button_for_delete
|
|
I18n.t('admin.ip_blocks.delete')
|
|
end
|
|
|
|
def selection_error_text
|
|
I18n.t('admin.ip_blocks.no_ip_block_selected')
|
|
end
|
|
end
|
|
end
|