2018-12-10 22:53:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe EmailMxValidator do
|
|
|
|
describe '#validate' do
|
2022-02-24 17:28:23 +01:00
|
|
|
let(:user) { double(email: 'foo@example.com', sign_up_ip: '1.2.3.4', errors: double(add: nil)) }
|
|
|
|
|
|
|
|
context 'for an e-mail domain that is explicitly allowed' do
|
|
|
|
around do |block|
|
|
|
|
tmp = Rails.configuration.x.email_domains_whitelist
|
|
|
|
Rails.configuration.x.email_domains_whitelist = 'example.com'
|
|
|
|
block.call
|
|
|
|
Rails.configuration.x.email_domains_whitelist = tmp
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not add errors if there are no DNS records' do
|
|
|
|
resolver = double
|
|
|
|
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::MX).and_return([])
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::A).and_return([])
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::AAAA).and_return([])
|
|
|
|
allow(resolver).to receive(:timeouts=).and_return(nil)
|
|
|
|
allow(Resolv::DNS).to receive(:open).and_yield(resolver)
|
|
|
|
|
|
|
|
subject.validate(user)
|
|
|
|
expect(user.errors).to_not have_received(:add)
|
|
|
|
end
|
2021-03-19 23:48:47 +01:00
|
|
|
end
|
|
|
|
|
2018-12-10 22:53:25 +01:00
|
|
|
it 'adds an error if there are no DNS records for the e-mail domain' do
|
|
|
|
resolver = double
|
|
|
|
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::MX).and_return([])
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::A).and_return([])
|
2019-02-12 14:48:04 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::AAAA).and_return([])
|
2018-12-10 22:53:25 +01:00
|
|
|
allow(resolver).to receive(:timeouts=).and_return(nil)
|
|
|
|
allow(Resolv::DNS).to receive(:open).and_yield(resolver)
|
|
|
|
|
|
|
|
subject.validate(user)
|
|
|
|
expect(user.errors).to have_received(:add)
|
|
|
|
end
|
|
|
|
|
2022-02-24 17:28:23 +01:00
|
|
|
it 'adds an error if a MX record does not lead to an IP' do
|
2018-12-10 22:53:25 +01:00
|
|
|
resolver = double
|
|
|
|
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::MX).and_return([double(exchange: 'mail.example.com')])
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::A).and_return([])
|
2019-02-12 14:48:04 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::AAAA).and_return([])
|
2018-12-10 22:53:25 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('mail.example.com', Resolv::DNS::Resource::IN::A).and_return([])
|
2019-02-12 14:48:04 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('mail.example.com', Resolv::DNS::Resource::IN::AAAA).and_return([])
|
2018-12-10 22:53:25 +01:00
|
|
|
allow(resolver).to receive(:timeouts=).and_return(nil)
|
|
|
|
allow(Resolv::DNS).to receive(:open).and_yield(resolver)
|
|
|
|
|
|
|
|
subject.validate(user)
|
|
|
|
expect(user.errors).to have_received(:add)
|
|
|
|
end
|
|
|
|
|
2022-02-24 17:28:23 +01:00
|
|
|
it 'adds an error if the MX record is blacklisted' do
|
2018-12-10 22:53:25 +01:00
|
|
|
EmailDomainBlock.create!(domain: 'mail.example.com')
|
|
|
|
resolver = double
|
|
|
|
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::MX).and_return([double(exchange: 'mail.example.com')])
|
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::A).and_return([])
|
2019-02-12 14:48:04 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('example.com', Resolv::DNS::Resource::IN::AAAA).and_return([])
|
2018-12-10 22:53:25 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('mail.example.com', Resolv::DNS::Resource::IN::A).and_return([double(address: '2.3.4.5')])
|
2019-02-12 14:48:04 +01:00
|
|
|
allow(resolver).to receive(:getresources).with('mail.example.com', Resolv::DNS::Resource::IN::AAAA).and_return([double(address: 'fd00::2')])
|
2018-12-10 22:53:25 +01:00
|
|
|
allow(resolver).to receive(:timeouts=).and_return(nil)
|
|
|
|
allow(Resolv::DNS).to receive(:open).and_yield(resolver)
|
|
|
|
|
|
|
|
subject.validate(user)
|
|
|
|
expect(user.errors).to have_received(:add)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|