aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/test/cases/queuing_test.rb
blob: f020316d7ef6fefc86639c51d1c62016e1fbd245 (plain) (tree)
1
2
3
4
5
6
7
8
                
                        
                                              
 

                                           
          
                   



                          
                                                         

     
                                         
                            
                                                         
     



                                                        
                   
                              
          

       
 




                                                               
 







                                                                  
   
require 'helper'
require 'jobs/hello_job'
require 'active_support/core_ext/numeric/time'


class QueuingTest < ActiveSupport::TestCase
  setup do
    JobBuffer.clear
  end

  test 'run queued job' do
    HelloJob.enqueue
    assert_equal "David says hello", JobBuffer.last_value
  end

  test 'run queued job with arguments' do
    HelloJob.enqueue "Jamie"
    assert_equal "Jamie says hello", JobBuffer.last_value
  end

  test 'run queued job later' do
    begin
      result = HelloJob.enqueue_at 1.second.ago, "Jamie"
      assert result
    rescue NotImplementedError
      skip
    end
  end

  test 'job returned by enqueue has the arguments available' do
    job = HelloJob.enqueue "Jamie"
    assert_equal [ "Jamie" ], job.arguments
  end


  test 'job returned by enqueue_at has the timestamp available' do
    begin
      job = HelloJob.enqueue_at Time.utc(2014, 1, 1)
      assert_equal Time.utc(2014, 1, 1), job.enqueued_at
    rescue NotImplementedError
      skip
    end
  end
end