Skip to content

Commit

Permalink
Merge pull request #76 from agrare/set_workflow_description_from_asl_…
Browse files Browse the repository at this point in the history
…comment

Set workflow description from asl comment
  • Loading branch information
kbrock authored Apr 8, 2024
2 parents 2135570 + 57b8bf5 commit 049c589
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,24 @@ def sync_from_content(to_delete)
end

def create_workflow_from_payload(name, payload)
floe_workflow =
begin
Floe::Workflow.new(payload)
rescue Floe::InvalidWorkflowError
nil
end

description = floe_workflow&.comment

configuration_script_payloads.find_or_initialize_by(:name => name).tap do |wf|
wf.update!(:name => name, :manager_id => manager_id, :type => self.class.module_parent::Workflow.name, :payload => payload, :payload_type => "json")
wf.update!(
:name => name,
:description => description,
:manager_id => manager_id,
:type => self.class.module_parent::Workflow.name,
:payload => payload,
:payload_type => "json"
)
end
end
end
2 changes: 1 addition & 1 deletion manageiq-providers-workflows.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "floe", "~> 0.9.0"
spec.add_dependency "floe", "~> 0.10.0"

spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "simplecov", ">= 0.21.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def files_in_repository(git_repo_dir)

expect(record.configuration_script_payloads.first).to have_attributes(
:name => "hello_world.asl",
:description => "hello world",
:payload => a_string_including("\"Comment\": \"hello world\""),
:payload_type => "json"
)
Expand Down
2 changes: 1 addition & 1 deletion spec/support/fake_workflows_repo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def file_content(full_path)

def dummy_workflow_data_for(_filename)
<<~WORKFLOW_DATA
{"Comment": "hello world"}
{"Comment": "hello world", "States": {"Start": {"Type": "Succeed"}}, "StartAt": "Start"}
WORKFLOW_DATA
end
end
Expand Down

0 comments on commit 049c589

Please sign in to comment.