Sha256: 34a7143cbb7a4d0808e989c278290801947e89bea7c4edb4a8d44fe556a02105

Contents?: true

Size: 1.75 KB

Versions: 44

Compression:

Stored size: 1.75 KB

Contents

module ActiveJob
  module QueueAdapters
    # == Test adapter for Active Job
    #
    # The test adapter should be used only in testing. Along with
    # <tt>ActiveJob::TestCase</tt> and <tt>ActiveJob::TestHelper</tt>
    # 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
    class TestAdapter
      delegate :name, to: :class
      attr_accessor(:perform_enqueued_jobs, :perform_enqueued_at_jobs)
      attr_writer(:enqueued_jobs, :performed_jobs)

      def initialize
        self.perform_enqueued_jobs = false
        self.perform_enqueued_at_jobs = false
      end

      # Provides a store of all the enqueued jobs with the TestAdapter so you can check them.
      def enqueued_jobs
        @enqueued_jobs ||= []
      end

      # Provides a store of all the performed jobs with the TestAdapter so you can check them.
      def performed_jobs
        @performed_jobs ||= []
      end

      def enqueue(job) #:nodoc:
        if perform_enqueued_jobs
          performed_jobs << {job: job.class, args: job.serialize['arguments'], queue: job.queue_name}
          Base.execute job.serialize
        else
          enqueued_jobs << {job: job.class, args: job.serialize['arguments'], queue: job.queue_name}
        end
      end

      def enqueue_at(job, timestamp) #:nodoc:
        if perform_enqueued_at_jobs
          performed_jobs << {job: job.class, args: job.serialize['arguments'], queue: job.queue_name, at: timestamp}
          Base.execute job.serialize
        else
          enqueued_jobs << {job: job.class, args: job.serialize['arguments'], queue: job.queue_name, at: timestamp}
        end
      end
    end
  end
end

Version data entries

44 entries across 43 versions & 8 rubygems

Version Path
activejob-4.2.1.rc3 lib/active_job/queue_adapters/test_adapter.rb
activejob-4.2.1.rc2 lib/active_job/queue_adapters/test_adapter.rb
activejob-4.2.1.rc1 lib/active_job/queue_adapters/test_adapter.rb
activejob-lock-0.0.1 rails/activejob/lib/active_job/queue_adapters/test_adapter.rb