2016-08-06 12:41:18 -04:00
|
|
|
require "active_support/core_ext/string/inflections"
|
|
|
|
require "support/integration/jobs_manager"
|
2014-08-18 03:19:41 -04:00
|
|
|
|
|
|
|
module TestCaseHelpers
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2015-03-10 22:21:19 -04:00
|
|
|
self.use_transactional_tests = false
|
2014-08-18 03:19:41 -04:00
|
|
|
|
|
|
|
setup do
|
|
|
|
clear_jobs
|
|
|
|
@id = "AJ-#{SecureRandom.uuid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
teardown do
|
|
|
|
clear_jobs
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def jobs_manager
|
|
|
|
JobsManager.current_manager
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_jobs
|
|
|
|
jobs_manager.clear_jobs
|
|
|
|
end
|
|
|
|
|
2015-05-07 18:32:15 -04:00
|
|
|
def adapter_is?(*adapter_class_symbols)
|
2016-08-06 12:41:18 -04:00
|
|
|
adapter = ActiveJob::Base.queue_adapter.class.name.demodulize.chomp("Adapter").underscore
|
2016-04-28 08:18:51 -04:00
|
|
|
adapter_class_symbols.map(&:to_s).include? adapter
|
2014-08-18 03:19:41 -04:00
|
|
|
end
|
|
|
|
|
2016-10-28 23:05:58 -04:00
|
|
|
def wait_for_jobs_to_finish_for(seconds = 60)
|
2014-08-18 03:19:41 -04:00
|
|
|
begin
|
|
|
|
Timeout.timeout(seconds) do
|
|
|
|
while !job_executed do
|
|
|
|
sleep 0.25
|
|
|
|
end
|
|
|
|
end
|
|
|
|
rescue Timeout::Error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-11-21 00:01:56 -05:00
|
|
|
def job_file(id)
|
|
|
|
Dummy::Application.root.join("tmp/#{id}")
|
|
|
|
end
|
|
|
|
|
2016-10-28 23:05:58 -04:00
|
|
|
def job_executed(id = @id)
|
2015-11-21 00:01:56 -05:00
|
|
|
job_file(id).exist?
|
|
|
|
end
|
|
|
|
|
|
|
|
def job_data(id)
|
|
|
|
Marshal.load(File.binread(job_file(id)))
|
2015-03-18 05:48:26 -04:00
|
|
|
end
|
|
|
|
|
2016-10-28 23:05:58 -04:00
|
|
|
def job_executed_at(id = @id)
|
2015-11-21 00:01:56 -05:00
|
|
|
job_data(id)["executed_at"]
|
2014-08-18 03:19:41 -04:00
|
|
|
end
|
2015-07-07 15:52:28 -04:00
|
|
|
|
2016-10-28 23:05:58 -04:00
|
|
|
def job_executed_in_locale(id = @id)
|
2015-11-21 00:01:56 -05:00
|
|
|
job_data(id)["locale"]
|
2015-07-07 15:52:28 -04:00
|
|
|
end
|
2014-08-18 03:19:41 -04:00
|
|
|
end
|