discourse/spec/components/scheduler/schedule_info_spec.rb

104 lines
2.2 KiB
Ruby
Raw Normal View History

# encoding: utf-8
require 'rails_helper'
require 'scheduler/scheduler'
describe Scheduler::ScheduleInfo do
let(:manager){ Scheduler::Manager.new }
context "every" do
class RandomJob
extend ::Scheduler::Schedule
every 1.hour
def perform
# work_it
end
end
before do
@info = manager.schedule_info(RandomJob)
@info.del!
end
after do
manager.stop!
2016-06-06 05:29:11 -04:00
$redis.del manager.class.queue_key
end
it "is a scheduled job" do
2015-01-09 11:34:37 -05:00
expect(RandomJob).to be_scheduled
end
it 'starts off invalid' do
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(false)
end
it 'will have a due date in the next 5 minutes if it was blank' do
@info.schedule!
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(true)
expect(@info.next_run).to be_within(5.minutes).of(Time.now.to_i)
end
it 'will have a due date within the next hour if it just ran' do
@info.prev_run = Time.now.to_i
@info.schedule!
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(true)
expect(@info.next_run).to be_within(1.hour * manager.random_ratio).of(Time.now.to_i + 1.hour)
end
it 'is invalid if way in the future' do
@info.next_run = Time.now.to_i + 1.year
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(false)
end
end
context "daily" do
class DailyJob
extend ::Scheduler::Schedule
2017-07-24 13:00:15 -04:00
daily at: 11.hours
def perform
end
end
before do
2017-07-24 13:00:15 -04:00
freeze_time Time.parse("2010-01-10 10:00:00")
@info = manager.schedule_info(DailyJob)
@info.del!
end
after do
manager.stop!
2016-06-06 05:29:11 -04:00
$redis.del manager.class.queue_key
end
it "is a scheduled job" do
2015-01-09 11:34:37 -05:00
expect(DailyJob).to be_scheduled
end
it "starts off invalid" do
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(false)
end
it "will have a due date at the appropriate time if blank" do
2015-01-09 11:34:37 -05:00
expect(@info.next_run).to eq(nil)
@info.schedule!
expect(JSON.parse($redis.get(@info.key))["next_run"])
2017-07-24 13:00:15 -04:00
.to eq((Time.now.midnight + 11.hours).to_i)
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(true)
end
it 'is invalid if way in the future' do
@info.next_run = Time.now.to_i + 1.year
2015-01-09 11:34:37 -05:00
expect(@info.valid?).to eq(false)
end
end
end