standard_procedure_operations 0.4.1 → 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: 9d90e57e4b3e01cb8a83ce7be2f368f31eed30a96ed73ac619ab513609a18d96
4
- data.tar.gz: fdbb00026f173b2eb8bb2569d2c7135799b0ad2478a147293973932837597c66
3
+ metadata.gz: 04267db639d0804b8fdc04e3a6cbe07531ff5870948f0ba95d91c4383188c331
4
+ data.tar.gz: 02fef265e8c2bae6ba1c5178fccb9fad3b0eca6f1bd87b4bbb0d321a47e55f40
5
5
  SHA512:
6
- metadata.gz: 358365e5739fca1314b5905e90bc0b17e76be041158164535b22c6d22f324239f302e455ad0973925dc7bb4180673f2663ecc5af90beee8e197f586f9059b557
7
- data.tar.gz: d833dcb1aecb3d7fa12810ca45f447074f89d6fa775a6f3ab3da674b3e782cb0193217111a5253b1c8cd0f802fe089a4748eb5a956136c8aeadb5928171da371
6
+ metadata.gz: 48a5aaf6c3c5f3b92bd274c62a1578b43c72212452b51ff934cdc3ff9ea8ad1eb8bd597d65db64185620a3cf1cde939bbfd19b78a8f297746d6d3b563b64a430
7
+ data.tar.gz: 97dbb727aa71212ba5bc485f83f1f5f68a07f3c40a08e37fe115b45246921c249917a5eee4fc841b6d23291cfa8f99d4e1bc80ae78472e62471e1b671f42f7b5
data/README.md CHANGED
@@ -75,8 +75,7 @@ class PrepareDocumentForDownload < Operations::Task
75
75
  inputs :document
76
76
 
77
77
  self.filename = "#{Faker::Lorem.word}#{File.extname(document.filename.to_s)}"
78
- # State transition defined statically
79
- end
78
+ end
80
79
  go_to :return_filename
81
80
 
82
81
  result :return_filename do |results|
@@ -1,6 +1,4 @@
1
1
  class Operations::Task::DataCarrier < OpenStruct
2
- # go_to method removed to enforce static state transitions
3
-
4
2
  def fail_with(message) = task.fail_with(message)
5
3
 
6
4
  def call(sub_task_class, **data, &result_handler) = task.call(sub_task_class, **data, &result_handler)
@@ -44,12 +44,6 @@ class Operations::Task::StateManagement::DecisionHandler
44
44
  condition = @conditions.find { |condition| data.instance_eval(&condition) }
45
45
  raise Operations::NoDecision.new("No conditions matched #{@name}") if condition.nil?
46
46
  index = @conditions.index condition
47
-
48
- # Check if we're in a testing environment (data is TestResultCarrier)
49
- if data.respond_to?(:next_state=)
50
- data.go_to(@destinations[index])
51
- else
52
- task.go_to(@destinations[index], data.to_h)
53
- end
47
+ data.go_to(@destinations[index])
54
48
  end
55
49
  end
@@ -6,9 +6,8 @@ class Operations::Task::StateManagement::WaitHandler
6
6
  instance_eval(&config)
7
7
  end
8
8
 
9
- def condition(destination = nil, options = {}, &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
- if condition.nil?
27
- task.go_to(task.state, data.to_h)
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 < OpenStruct
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
- # Return mock data for testing
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)
@@ -1,3 +1,3 @@
1
1
  module Operations
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: standard_procedure_operations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rahoul Baruah