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