Class: IpaTestKit::Generator::GroupMetadata
- Inherits:
-
Object
- Object
- IpaTestKit::Generator::GroupMetadata
- Defined in:
- lib/ipa_test_kit/generator/group_metadata.rb
Constant Summary collapse
- ATTRIBUTES =
[ :name, :class_name, :version, :reformatted_version, :resource, :profile_url, :profile_name, :profile_version, :title, :short_description, :interactions, :operations, :searches, :search_definitions, :include_params, :revincludes, :required_concepts, :must_supports, :mandatory_elements, :bindings, :references, :tests, :id, :file_name, :delayed_references ].freeze
Instance Method Summary collapse
- #add_delayed_references(delayed_profiles, ig_resources) ⇒ Object
- #add_test(id:, file_name:) ⇒ Object
- #delayed? ⇒ Boolean
-
#initialize(metadata) ⇒ GroupMetadata
constructor
A new instance of GroupMetadata.
- #no_patient_searches? ⇒ Boolean
- #to_hash ⇒ Object
Constructor Details
#initialize(metadata) ⇒ GroupMetadata
Returns a new instance of GroupMetadata.
34 35 36 37 38 39 40 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 34 def initialize() .each do |key, value| raise "Unknown attribute #{key}" unless ATTRIBUTES.include? key instance_variable_set(:"@#{key}", value) end end |
Instance Method Details
#add_delayed_references(delayed_profiles, ig_resources) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 71 def add_delayed_references(delayed_profiles, ig_resources) self.delayed_references = references .select { |reference| (reference[:profiles] & delayed_profiles).present? } .map do |reference| profile_urls = (reference[:profiles] & delayed_profiles) delayed_resources = profile_urls.map { |url| ig_resources.resource_for_profile(url) } { path: reference[:path].gsub("#{resource}.", ''), resources: delayed_resources } end end |
#add_test(id:, file_name:) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 52 def add_test(id:, file_name:) self.tests ||= [] = { id: id, file_name: file_name } if delayed? && id.include?('read') self.tests.unshift() else self.tests << end end |
#delayed? ⇒ Boolean
42 43 44 45 46 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 42 def delayed? return false if resource == 'Patient' no_patient_searches? end |
#no_patient_searches? ⇒ Boolean
48 49 50 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 48 def no_patient_searches? searches.none? { |search| search[:names].include? 'patient' } end |
#to_hash ⇒ Object
67 68 69 |
# File 'lib/ipa_test_kit/generator/group_metadata.rb', line 67 def to_hash ATTRIBUTES.each_with_object({}) { |key, hash| hash[key] = send(key) unless send(key).nil? } end |