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
|
# frozen_string_literal: false
require 'test/unit'
require '-test-/postponed_job'
class TestPostponed_job < Test::Unit::TestCase
def test_preregister_and_trigger
assert_separately([], __FILE__, __LINE__, <<-'RUBY')
require '-test-/postponed_job'
Bug.postponed_job_preregister_and_call_without_sleep(counters = [])
# i.e. rb_postponed_job_trigger performs coalescing
assert_equal([3], counters)
# i.e. rb_postponed_job_trigger resets after interrupts are checked
Bug.postponed_job_preregister_and_call_with_sleep(counters = [])
assert_equal([1, 2, 3], counters)
RUBY
end
def test_multiple_preregistration
assert_separately([], __FILE__, __LINE__, <<-'RUBY')
require '-test-/postponed_job'
handles = Bug.postponed_job_preregister_multiple_times
# i.e. rb_postponed_job_preregister returns the same handle if preregistered multiple times
assert_equal [handles[0]], handles.uniq
RUBY
end
def test_multiple_preregistration_with_new_data
assert_separately([], __FILE__, __LINE__, <<-'RUBY')
require '-test-/postponed_job'
values = Bug.postponed_job_preregister_calls_with_last_argument
# i.e. the callback is called with the last argument it was preregistered with
assert_equal [3, 4], values
RUBY
end
end
|