standard_procedure_operations 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 04267db639d0804b8fdc04e3a6cbe07531ff5870948f0ba95d91c4383188c331
|
4
|
+
data.tar.gz: 02fef265e8c2bae6ba1c5178fccb9fad3b0eca6f1bd87b4bbb0d321a47e55f40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48a5aaf6c3c5f3b92bd274c62a1578b43c72212452b51ff934cdc3ff9ea8ad1eb8bd597d65db64185620a3cf1cde939bbfd19b78a8f297746d6d3b563b64a430
|
7
|
+
data.tar.gz: 97dbb727aa71212ba5bc485f83f1f5f68a07f3c40a08e37fe115b45246921c249917a5eee4fc841b6d23291cfa8f99d4e1bc80ae78472e62471e1b671f42f7b5
|
@@ -6,9 +6,8 @@ class Operations::Task::StateManagement::WaitHandler
|
|
6
6
|
instance_eval(&config)
|
7
7
|
end
|
8
8
|
|
9
|
-
def condition(
|
9
|
+
def condition(options = {}, &condition)
|
10
10
|
@conditions << condition
|
11
|
-
@destinations << destination if destination
|
12
11
|
@condition_labels ||= {}
|
13
12
|
condition_index = @conditions.size - 1
|
14
13
|
@condition_labels[condition_index] = options[:label] if options[:label]
|
@@ -16,18 +15,12 @@ class Operations::Task::StateManagement::WaitHandler
|
|
16
15
|
|
17
16
|
def go_to(state) = @destinations << state
|
18
17
|
|
19
|
-
def condition_labels
|
20
|
-
@condition_labels ||= {}
|
21
|
-
end
|
18
|
+
def condition_labels = @condition_labels ||= {}
|
22
19
|
|
23
20
|
def call(task, data)
|
24
21
|
raise Operations::CannotWaitInForeground.new("#{task.class} cannot wait in the foreground", task) unless task.background?
|
25
22
|
condition = @conditions.find { |condition| data.instance_eval(&condition) }
|
26
|
-
|
27
|
-
|
28
|
-
else
|
29
|
-
index = @conditions.index condition
|
30
|
-
task.go_to(@destinations[index], data.to_h)
|
31
|
-
end
|
23
|
+
next_state = (condition.nil? || @conditions.index(condition).nil?) ? task.state : @destinations[@conditions.index(condition)]
|
24
|
+
data.go_to next_state
|
32
25
|
end
|
33
26
|
end
|
@@ -2,9 +2,9 @@ module Operations::Task::Testing
|
|
2
2
|
extend ActiveSupport::Concern
|
3
3
|
|
4
4
|
class_methods do
|
5
|
-
def handling state, **data, &block
|
5
|
+
def handling state, background: false, **data, &block
|
6
6
|
# Create a task specifically for testing - avoid serialization issues
|
7
|
-
task = new(state: state)
|
7
|
+
task = new(state: state, background: background)
|
8
8
|
# Use our own test-specific data carrier so we can examine results
|
9
9
|
data = TestResultCarrier.new(data.merge(task: task))
|
10
10
|
|
@@ -22,7 +22,7 @@ module Operations::Task::Testing
|
|
22
22
|
|
23
23
|
# Instead of extending DataCarrier (which no longer has go_to),
|
24
24
|
# create a new class with similar functionality but keeps the go_to method for testing
|
25
|
-
class TestResultCarrier <
|
25
|
+
class TestResultCarrier < Operations::Task::DataCarrier
|
26
26
|
def go_to(state, message = nil)
|
27
27
|
self.next_state = state
|
28
28
|
self.status_message = message || next_state.to_s
|
@@ -41,10 +41,7 @@ module Operations::Task::Testing
|
|
41
41
|
|
42
42
|
def call(sub_task_class, **data, &result_handler)
|
43
43
|
record_sub_task sub_task_class
|
44
|
-
|
45
|
-
result = {answer: 42}
|
46
|
-
result_handler&.call(result)
|
47
|
-
result
|
44
|
+
super
|
48
45
|
end
|
49
46
|
|
50
47
|
def start(sub_task_class, **data, &result_handler)
|
data/lib/operations/version.rb
CHANGED