class ActiveJob::QueueAdapters::TestAdapter
Test adapter for Active Job¶ ↑
The test adapter should be used only in testing. Along with ActiveJob::TestCase
and ActiveJob::TestHelper
it makes a great tool to test your Rails application.
To use the test adapter set queue_adapter
config to :test
.
Rails.application.config.active_job.queue_adapter = :test
Attributes
Public Instance Methods
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 19 def enqueued_jobs @enqueued_jobs ||= [] end
Provides a store of all the enqueued jobs with the TestAdapter
so you can check them.
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 24 def performed_jobs @performed_jobs ||= [] end
Provides a store of all the performed jobs with the TestAdapter
so you can check them.
Private Instance Methods
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 79 def filter_as_proc(filter) return filter if filter.is_a?(Proc) ->(job) { Array(filter).include?(job.class) } end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 57 def filtered?(job) filtered_queue?(job) || filtered_job_class?(job) || filtered_time?(job) end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 71 def filtered_job_class?(job) if filter !filter_as_proc(filter).call(job) elsif reject filter_as_proc(reject).call(job) end end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 65 def filtered_queue?(job) if queue job.queue_name != queue.to_s end end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 61 def filtered_time?(job) job.scheduled_at > at if at && job.scheduled_at end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 39 def job_to_hash(job, extras = {}) job.serialize.tap do |job_data| job_data[:job] = job.class job_data[:args] = job_data.fetch("arguments") job_data[:queue] = job_data.fetch("queue_name") job_data[:priority] = job_data.fetch("priority") end.merge(extras) end
Source
# File lib/active_job/queue_adapters/test_adapter.rb, line 48 def perform_or_enqueue(perform, job, job_data) if perform performed_jobs << job_data Base.execute(job.serialize) else enqueued_jobs << job_data end end