1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/cases/queuing_test.rb

45 lines
981 B
Ruby
Raw Normal View History

2014-05-18 05:44:28 -04:00
require 'helper'
2014-05-18 06:32:22 -04:00
require 'jobs/hello_job'
require 'active_support/core_ext/numeric/time'
2014-05-18 06:32:22 -04:00
2014-05-18 05:44:28 -04:00
class QueuingTest < ActiveSupport::TestCase
2014-05-18 06:32:22 -04:00
setup do
$BUFFER = []
end
test 'run queued job' do
HelloJob.enqueue
assert_equal "David says hello", $BUFFER.pop
end
test 'run queued job with parameters' do
HelloJob.enqueue "Jamie"
assert_equal "Jamie says hello", $BUFFER.pop
2014-05-18 05:44:28 -04:00
end
test 'run queued job later' do
begin
result = HelloJob.enqueue_at 1.second.ago, "Jamie"
2014-05-20 12:05:16 -04:00
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
2014-05-18 05:44:28 -04:00
end