forked from coinbase/temporal-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrigger_schedule_spec.rb
49 lines (41 loc) · 1.63 KB
/
trigger_schedule_spec.rb
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
45
46
47
48
49
require "timeout"
require "temporal/schedule/schedule"
require "temporal/schedule/calendar"
require "temporal/schedule/schedule_spec"
require "temporal/schedule/schedule_policies"
require "temporal/schedule/schedule_state"
require "temporal/schedule/start_workflow_action"
describe "Temporal.trigger_schedule", :integration do
let(:example_schedule) do
Temporal::Schedule::Schedule.new(
spec: Temporal::Schedule::ScheduleSpec.new(
# Set this to a date in the future to avoid triggering the schedule immediately
calendars: [Temporal::Schedule::Calendar.new(year: "2055", month: "12", day_of_month: "25")]
),
action: Temporal::Schedule::StartWorkflowAction.new(
"HelloWorldWorkflow",
"Test",
options: {
task_queue: integration_spec_task_queue
}
)
)
end
it "can trigger a schedule to run immediately" do
namespace = integration_spec_namespace
schedule_id = SecureRandom.uuid
Temporal.create_schedule(namespace, schedule_id, example_schedule)
describe_response = Temporal.describe_schedule(namespace, schedule_id)
expect(describe_response.info.recent_actions.size).to(eq(0))
# Trigger the schedule and wait to see that it actually ran
Temporal.trigger_schedule(namespace, schedule_id, overlap_policy: :buffer_one)
Timeout.timeout(10) do
loop do
describe_response = Temporal.describe_schedule(namespace, schedule_id)
break if describe_response.info && describe_response.info.recent_actions.size >= 1
sleep(0.5)
end
end
expect(describe_response.info.recent_actions.size).to(eq(1))
end
end