2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-10-12 16:33:49 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 07:12:25 +02:00
|
|
|
RSpec.describe IpBlock do
|
2024-03-01 17:17:40 +01:00
|
|
|
describe 'validations' do
|
|
|
|
it 'validates ip presence', :aggregate_failures do
|
|
|
|
ip_block = described_class.new(ip: nil, severity: :no_access)
|
|
|
|
|
|
|
|
expect(ip_block).to_not be_valid
|
|
|
|
expect(ip_block).to model_have_error_on_field(:ip)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'validates severity presence', :aggregate_failures do
|
|
|
|
ip_block = described_class.new(ip: '127.0.0.1', severity: nil)
|
|
|
|
|
|
|
|
expect(ip_block).to_not be_valid
|
|
|
|
expect(ip_block).to model_have_error_on_field(:severity)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'validates ip uniqueness', :aggregate_failures do
|
|
|
|
described_class.create!(ip: '127.0.0.1', severity: :no_access)
|
|
|
|
|
|
|
|
ip_block = described_class.new(ip: '127.0.0.1', severity: :no_access)
|
|
|
|
|
|
|
|
expect(ip_block).to_not be_valid
|
|
|
|
expect(ip_block).to model_have_error_on_field(:ip)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#to_log_human_identifier' do
|
2023-03-04 17:16:45 +01:00
|
|
|
let(:ip_block) { described_class.new(ip: '192.168.0.1') }
|
|
|
|
|
|
|
|
it 'combines the IP and prefix into a string' do
|
|
|
|
result = ip_block.to_log_human_identifier
|
|
|
|
|
|
|
|
expect(result).to eq('192.168.0.1/32')
|
|
|
|
end
|
|
|
|
end
|
2024-03-01 17:17:40 +01:00
|
|
|
|
|
|
|
describe '.blocked?' do
|
|
|
|
context 'when the IP is blocked' do
|
|
|
|
it 'returns true' do
|
|
|
|
described_class.create!(ip: '127.0.0.1', severity: :no_access)
|
|
|
|
|
|
|
|
expect(described_class.blocked?('127.0.0.1')).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the IP is not blocked' do
|
|
|
|
it 'returns false' do
|
|
|
|
expect(described_class.blocked?('127.0.0.1')).to be false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'after_commit' do
|
|
|
|
it 'resets the cache' do
|
|
|
|
allow(Rails.cache).to receive(:delete)
|
|
|
|
|
|
|
|
described_class.create!(ip: '127.0.0.1', severity: :no_access)
|
|
|
|
|
|
|
|
expect(Rails.cache).to have_received(:delete).with(described_class::CACHE_KEY)
|
|
|
|
end
|
|
|
|
end
|
2020-10-12 16:33:49 +02:00
|
|
|
end
|