discourse/spec/components/scheduler/schedule_info_spec.rb

98 lines
2.0 KiB
Ruby

# 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!
$redis.del manager.class.queue_key
end
after do
manager.stop!
end
it "is a scheduled job" do
expect(RandomJob).to be_scheduled
end
it 'starts off invalid' do
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!
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!
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
expect(@info.valid?).to eq(false)
end
end
context "daily" do
class DailyJob
extend ::Scheduler::Schedule
daily at: 2.hours
def perform
end
end
before do
@info = manager.schedule_info(DailyJob)
@info.del!
$redis.del manager.class.queue_key
end
after do
manager.stop!
end
it "is a scheduled job" do
expect(DailyJob).to be_scheduled
end
it "starts off invalid" do
expect(@info.valid?).to eq(false)
end
skip "will have a due date at the appropriate time if blank" do
expect(@info.next_run).to eq(nil)
@info.schedule!
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
expect(@info.valid?).to eq(false)
end
end
end