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