mirror of
https://github.com/mastodon/mastodon.git
synced 2026-07-04 02:50:55 -05:00
Some checks failed
Bundler Audit / security (push) Waiting to run
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
Haml 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
Crowdin / Upload translations / upload-translations (push) Has been cancelled
59 lines
1.9 KiB
Ruby
59 lines
1.9 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin IP Blocks' do
|
|
before { sign_in Fabricate(:admin_user) }
|
|
|
|
describe 'POST /admin/ip_blocks' do
|
|
it 'gracefully handles invalid nested params' do
|
|
post admin_ip_blocks_path(ip_block: 'invalid')
|
|
|
|
expect(response)
|
|
.to have_http_status(400)
|
|
end
|
|
end
|
|
|
|
describe 'POST /admin/ip_blocks/batch' do
|
|
it 'gracefully handles invalid nested params' do
|
|
post batch_admin_ip_blocks_path(form_ip_block_batch: 'invalid')
|
|
|
|
expect(response)
|
|
.to redirect_to(admin_ip_blocks_path)
|
|
end
|
|
end
|
|
|
|
describe 'GET /admin/ip_blocks' do
|
|
let!(:ip_block) { Fabricate(:ip_block, ip: '192.2.2.2/32') }
|
|
let!(:range_ip_block) { Fabricate(:ip_block, ip: '192.2.2.200/32') }
|
|
let!(:another_range_ip_block) { Fabricate(:ip_block, ip: '192.2.2.50/32') }
|
|
let!(:other_ip_block) { Fabricate(:ip_block, ip: '192.2.2.0/24') }
|
|
|
|
context 'when searching single ip address' do
|
|
let(:params) { { ip: '192.2.2.1' } }
|
|
|
|
it 'renders successfully with partial ip address' do
|
|
get admin_ip_blocks_path(params)
|
|
|
|
expect(response.body).to not_include(admin_accounts_path(ip: ip_block.ip))
|
|
.and not_include(admin_accounts_path(ip: range_ip_block.ip))
|
|
.and not_include(admin_accounts_path(ip: another_range_ip_block.ip))
|
|
expect(response.body).to include(admin_accounts_path(ip: other_ip_block.ip))
|
|
end
|
|
end
|
|
|
|
context 'when searching within a range' do
|
|
let(:params) { { ip: '192.2.2.0/24' } }
|
|
|
|
it 'renders ips within range' do
|
|
get admin_ip_blocks_path(params)
|
|
|
|
expect(response.body).to include(admin_accounts_path(ip: ip_block.ip))
|
|
.and include(admin_accounts_path(ip: range_ip_block.ip))
|
|
.and include(admin_accounts_path(ip: another_range_ip_block.ip))
|
|
.and include(admin_accounts_path(ip: other_ip_block.ip))
|
|
end
|
|
end
|
|
end
|
|
end
|