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