aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/test/cases/queuing_test.rb
blob: f020316d7ef6fefc86639c51d1c62016e1fbd245 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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