2013-02-05 14:16:51 -05:00
|
|
|
require 'spec_helper'
|
2013-10-01 03:04:02 -04:00
|
|
|
require_dependency 'jobs/base'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe Jobs::Base do
|
2014-02-21 00:05:19 -05:00
|
|
|
class GoodJob < Jobs::Base
|
|
|
|
attr_accessor :count
|
|
|
|
def execute(args)
|
|
|
|
self.count ||= 0
|
|
|
|
self.count += 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-20 23:31:15 -05:00
|
|
|
class BadJob < Jobs::Base
|
|
|
|
attr_accessor :fail_count
|
|
|
|
|
|
|
|
def execute(args)
|
|
|
|
@fail_count ||= 0
|
|
|
|
@fail_count += 1
|
|
|
|
raise StandardError
|
|
|
|
end
|
|
|
|
end
|
2014-02-21 00:05:19 -05:00
|
|
|
|
|
|
|
it 'handles correct jobs' do
|
|
|
|
job = GoodJob.new
|
|
|
|
job.perform({})
|
|
|
|
job.count.should == 1
|
|
|
|
end
|
2014-02-20 23:31:15 -05:00
|
|
|
|
|
|
|
it 'handles errors in multisite' do
|
2014-07-17 16:22:46 -04:00
|
|
|
RailsMultisite::ConnectionManagement.expects(:all_dbs).returns(['default','default','default'])
|
|
|
|
# one exception per database
|
|
|
|
Discourse.expects(:handle_exception).times(3)
|
2014-02-20 23:31:15 -05:00
|
|
|
|
|
|
|
bad = BadJob.new
|
|
|
|
expect{bad.perform({})}.to raise_error
|
2014-07-17 16:22:46 -04:00
|
|
|
bad.fail_count.should == 3
|
2014-02-20 23:31:15 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'delegates the process call to execute' do
|
|
|
|
Jobs::Base.any_instance.expects(:execute).with('hello' => 'world')
|
|
|
|
Jobs::Base.new.perform('hello' => 'world', 'sync_exec' => true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'converts to an indifferent access hash' do
|
|
|
|
Jobs::Base.any_instance.expects(:execute).with(instance_of(HashWithIndifferentAccess))
|
|
|
|
Jobs::Base.new.perform('hello' => 'world', 'sync_exec' => true)
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
end
|
|
|
|
|