2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-10-12 14:33:49 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe IpBlock do
|
2024-10-24 12:43:40 +00:00
|
|
|
describe 'Validations' do
|
|
|
|
subject { Fabricate.build :ip_block }
|
|
|
|
|
2024-09-05 15:36:05 +00:00
|
|
|
it { is_expected.to validate_presence_of(:ip) }
|
|
|
|
it { is_expected.to validate_presence_of(:severity) }
|
2024-03-01 16:17:40 +00:00
|
|
|
|
2024-10-24 12:43:40 +00:00
|
|
|
it { is_expected.to validate_uniqueness_of(:ip) }
|
2024-03-01 16:17:40 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#to_log_human_identifier' do
|
2023-03-04 16:16:45 +00: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 16:17:40 +00: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 14:33:49 +00:00
|
|
|
end
|