2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-04 15:16:10 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 05:49:53 +02:00
|
|
|
RSpec.describe EmailDomainBlock do
|
2017-10-04 15:16:10 +02:00
|
|
|
describe 'block?' do
|
2022-02-24 17:28:23 +01:00
|
|
|
let(:input) { nil }
|
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'when given an e-mail address' do
|
2022-08-24 19:00:55 +02:00
|
|
|
let(:input) { "foo@#{domain}" }
|
2022-02-24 17:28:23 +01:00
|
|
|
|
2023-06-06 15:51:42 +02:00
|
|
|
context 'with a top level domain' do
|
2022-08-24 19:00:55 +02:00
|
|
|
let(:domain) { 'example.com' }
|
|
|
|
|
|
|
|
it 'returns true if the domain is blocked' do
|
|
|
|
Fabricate(:email_domain_block, domain: 'example.com')
|
2023-06-06 13:58:33 +02:00
|
|
|
expect(described_class.block?(input)).to be true
|
2022-08-24 19:00:55 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if the domain is not blocked' do
|
|
|
|
Fabricate(:email_domain_block, domain: 'other-example.com')
|
2023-06-06 13:58:33 +02:00
|
|
|
expect(described_class.block?(input)).to be false
|
2022-08-24 19:00:55 +02:00
|
|
|
end
|
2022-02-24 17:28:23 +01:00
|
|
|
end
|
|
|
|
|
2023-06-06 15:51:42 +02:00
|
|
|
context 'with a subdomain' do
|
2022-08-24 19:00:55 +02:00
|
|
|
let(:domain) { 'mail.example.com' }
|
|
|
|
|
|
|
|
it 'returns true if it is a subdomain of a blocked domain' do
|
|
|
|
Fabricate(:email_domain_block, domain: 'example.com')
|
|
|
|
expect(described_class.block?(input)).to be true
|
|
|
|
end
|
2022-02-24 17:28:23 +01:00
|
|
|
end
|
2017-10-04 15:16:10 +02:00
|
|
|
end
|
2017-11-14 20:37:17 +01:00
|
|
|
|
2023-05-04 05:49:08 +02:00
|
|
|
context 'when given an array of domains' do
|
2022-02-24 17:28:23 +01:00
|
|
|
let(:input) { %w(foo.com mail.foo.com) }
|
|
|
|
|
|
|
|
it 'returns true if the domain is blocked' do
|
|
|
|
Fabricate(:email_domain_block, domain: 'mail.foo.com')
|
2023-06-06 13:58:33 +02:00
|
|
|
expect(described_class.block?(input)).to be true
|
2022-02-24 17:28:23 +01:00
|
|
|
end
|
2017-10-04 15:16:10 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|