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