34 lines
899 B
Ruby
34 lines
899 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe WebCrawlerRequest do
|
|
before do
|
|
CachedCounting.reset
|
|
CachedCounting.enable
|
|
end
|
|
|
|
after { CachedCounting.disable }
|
|
|
|
it "can log crawler requests" do
|
|
freeze_time
|
|
d1 = Time.now.utc.to_date
|
|
|
|
4.times { WebCrawlerRequest.increment!("Googlebot") }
|
|
|
|
WebCrawlerRequest.increment!("Bingbot")
|
|
|
|
freeze_time 1.day.from_now
|
|
d2 = Time.now.utc.to_date
|
|
|
|
WebCrawlerRequest.increment!("Googlebot")
|
|
WebCrawlerRequest.increment!("Superbot")
|
|
|
|
CachedCounting.flush
|
|
|
|
expect(WebCrawlerRequest.find_by(date: d2, user_agent: "Googlebot").count).to eq(1)
|
|
expect(WebCrawlerRequest.find_by(date: d2, user_agent: "Superbot").count).to eq(1)
|
|
|
|
expect(WebCrawlerRequest.find_by(date: d1, user_agent: "Googlebot").count).to eq(4)
|
|
expect(WebCrawlerRequest.find_by(date: d1, user_agent: "Bingbot").count).to eq(1)
|
|
end
|
|
end
|