mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:34:28 +08:00
493d437e79
* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
32 lines
1.2 KiB
Ruby
32 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe Jobs::CleanUpCrawlerStats do
|
|
subject { Jobs::CleanUpCrawlerStats.new.execute({}) }
|
|
|
|
it "deletes records older than 30 days old" do
|
|
freeze_time
|
|
|
|
today = Fabricate(:web_crawler_request, date: Time.zone.now.to_date)
|
|
yesterday = Fabricate(:web_crawler_request, date: 1.day.ago.to_date)
|
|
too_old = Fabricate(:web_crawler_request, date: 31.days.ago.to_date)
|
|
|
|
expect { subject }.to change { WebCrawlerRequest.count }.by(-1)
|
|
expect(WebCrawlerRequest.where(id: too_old.id)).to_not exist
|
|
end
|
|
|
|
it "keeps only the top records from the previous day" do
|
|
freeze_time
|
|
|
|
WebCrawlerRequest.stubs(:max_records_per_day).returns(3)
|
|
|
|
req1 = Fabricate(:web_crawler_request, date: 1.day.ago.to_date, count: 100)
|
|
req4 = Fabricate(:web_crawler_request, date: 1.day.ago.to_date, count: 30)
|
|
req3 = Fabricate(:web_crawler_request, date: 1.day.ago.to_date, count: 40)
|
|
req2 = Fabricate(:web_crawler_request, date: 1.day.ago.to_date, count: 50)
|
|
req5 = Fabricate(:web_crawler_request, date: 1.day.ago.to_date, count: 1)
|
|
|
|
expect { subject }.to change { WebCrawlerRequest.count }.by(-2)
|
|
expect(WebCrawlerRequest.all).to contain_exactly(req1, req2, req3)
|
|
end
|
|
end
|