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