Class: AUCoreTestKit::Generator::ValidationTestGenerator
- Inherits:
-
Object
- Object
- AUCoreTestKit::Generator::ValidationTestGenerator
- Defined in:
- lib/au_core_test_kit/generator/validation_test_generator.rb
Instance Attribute Summary collapse
-
#base_output_dir ⇒ Object
Returns the value of attribute base_output_dir.
-
#group_metadata ⇒ Object
Returns the value of attribute group_metadata.
-
#medication_request_metadata ⇒ Object
Returns the value of attribute medication_request_metadata.
Class Method Summary collapse
Instance Method Summary collapse
- #base_output_file_name ⇒ Object
- #class_name ⇒ Object
- #conformance_expectation ⇒ Object
- #description ⇒ Object
- #description_intro ⇒ Object
- #directory_name ⇒ Object
- #generate ⇒ Object
-
#initialize(group_metadata, medication_request_metadata = nil, base_output_dir:) ⇒ ValidationTestGenerator
constructor
A new instance of ValidationTestGenerator.
- #module_name ⇒ Object
- #output ⇒ Object
- #output_file_directory ⇒ Object
- #output_file_name ⇒ Object
- #profile_identifier ⇒ Object
- #profile_name ⇒ Object
- #profile_url ⇒ Object
- #profile_version ⇒ Object
- #resource_type ⇒ Object
- #skip_if_empty ⇒ Object
- #template ⇒ Object
- #test_id ⇒ Object
Constructor Details
#initialize(group_metadata, medication_request_metadata = nil, base_output_dir:) ⇒ ValidationTestGenerator
Returns a new instance of ValidationTestGenerator.
27 28 29 30 31 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 27 def initialize(, = nil, base_output_dir:) self. = self. = self.base_output_dir = base_output_dir end |
Instance Attribute Details
#base_output_dir ⇒ Object
Returns the value of attribute base_output_dir.
25 26 27 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 25 def base_output_dir @base_output_dir end |
#group_metadata ⇒ Object
Returns the value of attribute group_metadata.
25 26 27 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 25 def @group_metadata end |
#medication_request_metadata ⇒ Object
Returns the value of attribute medication_request_metadata.
25 26 27 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 25 def @medication_request_metadata end |
Class Method Details
.generate(ig_metadata, base_output_dir) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 10 def generate(, base_output_dir) .groups .reject { |group| SpecialCases.exclude_group? group } .each do |group| new(group, base_output_dir:).generate next unless group.resource == 'MedicationRequest' # The Medication validation test lives in the MedicationRequest # group, so we need to pass in that group's metadata = .groups.find { |group| group.resource == 'Medication' } new(, group, base_output_dir:).generate end end |
Instance Method Details
#base_output_file_name ⇒ Object
41 42 43 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 41 def base_output_file_name "#{class_name.underscore}.rb" end |
#class_name ⇒ Object
77 78 79 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 77 def class_name "#{Naming.upper_camel_case_for_profile()}ValidationTest" end |
#conformance_expectation ⇒ Object
89 90 91 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 89 def conformance_expectation read_interaction[:expectation] end |
#description ⇒ Object
115 116 117 118 119 120 121 122 123 124 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 115 def description <<~DESCRIPTION #{description_intro} It verifies the presence of mandatory elements and that elements with required bindings contain appropriate values. CodeableConcept element bindings will fail if none of their codings have a code/system belonging to the bound ValueSet. Quantity, Coding, and code element bindings will fail if their code/system are not found in the valueset. DESCRIPTION end |
#description_intro ⇒ Object
126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 126 def description_intro if resource_type == 'Medication' <<~MEDICATION_INTRO This test verifies resources returned from previous tests conform to the [#{profile_name}](#{profile_url}). MEDICATION_INTRO else <<~GENERIC_INTRO This test verifies resources returned from the first search conform to the [#{profile_name}](#{profile_url}). If at least one resource from the first search is invalid, the test will fail. GENERIC_INTRO end end |
#directory_name ⇒ Object
53 54 55 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 53 def directory_name Naming.snake_case_for_profile( || ) end |
#generate ⇒ Object
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 99 def generate FileUtils.mkdir_p(output_file_directory) File.open(output_file_name, 'w') { |f| f.write(output) } = { id: test_id, file_name: base_output_file_name } if resource_type == 'Medication' .add_test(**) else .add_test(**) end end |
#module_name ⇒ Object
81 82 83 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 81 def module_name "AUCore#{.reformatted_version.upcase}" end |
#output ⇒ Object
37 38 39 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 37 def output @output ||= ERB.new(template).result(binding) end |
#output_file_directory ⇒ Object
45 46 47 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 45 def output_file_directory File.join(base_output_dir, directory_name) end |
#output_file_name ⇒ Object
49 50 51 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 49 def output_file_name File.join(output_file_directory, base_output_file_name) end |
#profile_identifier ⇒ Object
57 58 59 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 57 def profile_identifier Naming.snake_case_for_profile() end |
#profile_name ⇒ Object
65 66 67 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 65 def profile_name .profile_name end |
#profile_url ⇒ Object
61 62 63 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 61 def profile_url .profile_url end |
#profile_version ⇒ Object
69 70 71 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 69 def profile_version .profile_version end |
#resource_type ⇒ Object
85 86 87 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 85 def resource_type .resource end |
#skip_if_empty ⇒ Object
93 94 95 96 97 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 93 def skip_if_empty # Return true if a system must demonstrate at least one example of the resource type. # This drives omit vs. skip result statuses in this test. resource_type != 'Medication' end |
#template ⇒ Object
33 34 35 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 33 def template @template ||= File.read(File.join(__dir__, 'templates', 'validation.rb.erb')) end |
#test_id ⇒ Object
73 74 75 |
# File 'lib/au_core_test_kit/generator/validation_test_generator.rb', line 73 def test_id "au_core_#{.reformatted_version}_#{profile_identifier}_validation_test" end |