-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change: bust the cache if the time since last lookup is greater than …
…the cached ttl
- Loading branch information
Showing
2 changed files
with
74 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,8 +38,9 @@ | |
describe "caching" do | ||
let(:email_address) { "[email protected]" } | ||
let(:email_instance) { described_class.new(email_address) } | ||
let(:ttl) { 1_000 } | ||
let(:mock_resolv_dns) { instance_double(Resolv::DNS) } | ||
let(:mock_mx_records) { [double('MX', exchange: 'mx.ymail.com', preference: 10)] } | ||
let(:mock_mx_records) { [double('MX', exchange: 'mx.ymail.com', preference: 10, ttl: ttl)] } | ||
|
||
before do | ||
allow(email_instance).to receive(:null_mx?).and_return(false) | ||
|
@@ -80,10 +81,26 @@ | |
second_result = email_instance.valid_strict_mx? | ||
expect(second_result).to be true | ||
end | ||
|
||
it "does not call the MX servers lookup when the cached time since last lookup is less than the cached ttl entry" do | ||
described_class.class_variable_set(:@@mx_servers_cache, { email_instance.address.domain => { records: mock_mx_records, cached_at: Time.now, ttl: ttl }}) | ||
|
||
email_instance.valid_strict_mx? | ||
|
||
expect(Resolv::DNS).not_to have_received(:open) | ||
end | ||
|
||
it "calls the MX servers lookup when the cached time since last lookup is greater than the cached ttl entry" do | ||
described_class.class_variable_set(:@@mx_servers_cache, { email_instance.address.domain => { records: mock_mx_records, cached_at: Time.now - ttl, ttl: ttl }}) # Cached 1 day ago | ||
|
||
email_instance.valid_strict_mx? | ||
|
||
expect(Resolv::DNS).to have_received(:open).once | ||
end | ||
end | ||
|
||
describe "#valid_mx?" do | ||
let(:mock_a_records) { [double('A', address: '192.168.1.1')] } | ||
let(:mock_a_records) { [double('A', address: '192.168.1.1', ttl: ttl)] } | ||
|
||
before do | ||
described_class.class_variable_set(:@@mx_or_a_servers_cache, {}) | ||
|
@@ -93,11 +110,13 @@ | |
.and_return(mock_a_records) | ||
end | ||
|
||
it "calls the MX or A servers lookup when the email is not cached" do | ||
result = email_instance.valid_mx? | ||
context "when the email is not cached" do | ||
it "calls the MX or A servers lookup" do | ||
result = email_instance.valid_mx? | ||
|
||
expect(Resolv::DNS).to have_received(:open).once | ||
expect(result).to be true | ||
expect(Resolv::DNS).to have_received(:open).once | ||
expect(result).to be true | ||
end | ||
end | ||
|
||
it "does not call the MX or A servers lookup when the email is cached" do | ||
|
@@ -118,6 +137,21 @@ | |
second_result = email_instance.valid_mx? | ||
expect(second_result).to be true | ||
end | ||
|
||
it "does not call the MX or A servers lookup when the time since last lookup is less than the cached ttl entry" do | ||
described_class.class_variable_set(:@@mx_or_a_servers_cache, { email_instance.address.domain => { records: mock_a_records, cached_at: Time.now, ttl: ttl }}) | ||
|
||
email_instance.valid_mx? | ||
|
||
expect(Resolv::DNS).not_to have_received(:open) | ||
end | ||
|
||
it "calls the MX or A servers lookup when the time since last lookup is greater than the cached ttl entry" do | ||
described_class.class_variable_set(:@@mx_or_a_servers_cache, { email_instance.address.domain => { records: mock_a_records, cached_at: Time.now - ttl, ttl: ttl }}) | ||
|
||
email_instance.valid_mx? | ||
|
||
expect(Resolv::DNS).to have_received(:open).once | ||
end | ||
end | ||
end | ||
end |