mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
ed45a1dce3
This is a work in progress, should have it finished tomorrow.
75 lines
1.4 KiB
Ruby
75 lines
1.4 KiB
Ruby
# encoding: utf-8
|
|
require 'spec_helper'
|
|
require 'scheduler/scheduler'
|
|
|
|
describe Scheduler::Manager do
|
|
|
|
module Testing
|
|
class RandomJob
|
|
extend ::Scheduler::Schedule
|
|
|
|
def self.runs=(val)
|
|
@runs = val
|
|
end
|
|
|
|
def self.runs
|
|
@runs ||= 0
|
|
end
|
|
|
|
every 5.minutes
|
|
|
|
def perform
|
|
self.class.runs+=1
|
|
sleep 0.001
|
|
end
|
|
end
|
|
end
|
|
|
|
let(:manager) { Scheduler::Manager.new }
|
|
|
|
before do
|
|
$redis.del manager.class.queue_key
|
|
end
|
|
|
|
after do
|
|
manager.stop!
|
|
end
|
|
|
|
describe '#tick' do
|
|
it 'should only run pending job once' do
|
|
|
|
Testing::RandomJob.runs = 0
|
|
|
|
info = manager.schedule_info(Testing::RandomJob)
|
|
info.next_run = Time.now.to_i - 1
|
|
info.write!
|
|
|
|
(0..5).map do
|
|
Thread.new do
|
|
manager = Scheduler::Manager.new(Redis.new)
|
|
manager.blocking_tick
|
|
end
|
|
end.map(&:join)
|
|
|
|
Testing::RandomJob.runs.should == 1
|
|
|
|
info = manager.schedule_info(Testing::RandomJob)
|
|
info.prev_run.should be <= Time.now.to_i
|
|
info.prev_duration.should be > 0
|
|
info.prev_result.should == "OK"
|
|
end
|
|
|
|
end
|
|
|
|
describe '#next_run' do
|
|
it 'should be within the next 5 mins if it never ran' do
|
|
|
|
manager.remove(Testing::RandomJob)
|
|
manager.ensure_schedule!(Testing::RandomJob)
|
|
|
|
manager.next_run(Testing::RandomJob)
|
|
.should be_within(5.minutes.to_i).of(Time.now.to_i + 5.minutes)
|
|
end
|
|
end
|
|
end
|