inferno_core 0.6.11 → 0.6.13
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 +4 -4
- data/lib/inferno/apps/cli/evaluate.rb +8 -7
- data/lib/inferno/apps/cli/main.rb +12 -1
- data/lib/inferno/apps/cli/requirements.rb +49 -0
- data/lib/inferno/apps/cli/requirements_coverage_checker.rb +238 -0
- data/lib/inferno/apps/cli/requirements_exporter.rb +2 -2
- data/lib/inferno/apps/cli/suite.rb +9 -0
- data/lib/inferno/apps/web/controllers/test_sessions/results/io_value.rb +68 -0
- data/lib/inferno/apps/web/router.rb +3 -0
- data/lib/inferno/apps/web/serializers/requirement.rb +3 -1
- data/lib/inferno/apps/web/serializers/result.rb +2 -2
- data/lib/inferno/config/boot/requirements.rb +9 -4
- data/lib/inferno/dsl/fhir_client.rb +9 -1
- data/lib/inferno/dsl/http_client.rb +9 -1
- data/lib/inferno/dsl/must_support_assessment.rb +23 -0
- data/lib/inferno/dsl/runnable.rb +15 -30
- data/lib/inferno/dsl/suite_requirements.rb +26 -26
- data/lib/inferno/entities/requirement.rb +24 -10
- data/lib/inferno/entities/result.rb +39 -0
- data/lib/inferno/entities/test_kit.rb +4 -0
- data/lib/inferno/public/bundle.js +11 -11
- data/lib/inferno/repositories/repository.rb +19 -0
- data/lib/inferno/repositories/requirements.rb +15 -6
- data/lib/inferno/repositories/results.rb +6 -3
- data/lib/inferno/repositories/runnable_repository.rb +29 -0
- data/lib/inferno/repositories/test_groups.rb +2 -2
- data/lib/inferno/repositories/test_sessions.rb +1 -0
- data/lib/inferno/repositories/test_suites.rb +2 -2
- data/lib/inferno/repositories/tests.rb +2 -2
- data/lib/inferno/repositories.rb +1 -0
- data/lib/inferno/version.rb +1 -1
- metadata +5 -2
data/lib/inferno/dsl/runnable.rb
CHANGED
@@ -39,6 +39,7 @@ module Inferno
|
|
39
39
|
# @private
|
40
40
|
VARIABLES_NOT_TO_COPY = [
|
41
41
|
:@id, # New runnable will have a different id
|
42
|
+
:@database_id, # New runnable will have a different database_id
|
42
43
|
:@parent, # New runnable unlikely to have the same parent
|
43
44
|
:@all_children, # New subclasses have to be made for each child
|
44
45
|
:@test_count, # Needs to be recalculated
|
@@ -164,22 +165,6 @@ module Inferno
|
|
164
165
|
klass.output output_name
|
165
166
|
end
|
166
167
|
|
167
|
-
new_fhir_client_definitions = klass.instance_variable_get(:@fhir_client_definitions) || {}
|
168
|
-
fhir_client_definitions.each do |name, definition|
|
169
|
-
next if new_fhir_client_definitions.include? name
|
170
|
-
|
171
|
-
new_fhir_client_definitions[name] = definition.dup
|
172
|
-
end
|
173
|
-
klass.instance_variable_set(:@fhir_client_definitions, new_fhir_client_definitions)
|
174
|
-
|
175
|
-
new_http_client_definitions = klass.instance_variable_get(:@http_client_definitions) || {}
|
176
|
-
http_client_definitions.each do |name, definition|
|
177
|
-
next if new_http_client_definitions.include? name
|
178
|
-
|
179
|
-
new_http_client_definitions[name] = definition.dup
|
180
|
-
end
|
181
|
-
klass.instance_variable_set(:@http_client_definitions, new_http_client_definitions)
|
182
|
-
|
183
168
|
klass.config(config)
|
184
169
|
|
185
170
|
klass.all_children.select!(&:required?) if hash_args.delete(:exclude_optional)
|
@@ -210,20 +195,20 @@ module Inferno
|
|
210
195
|
def id(new_id = nil)
|
211
196
|
return @id if new_id.nil? && @id.present?
|
212
197
|
|
213
|
-
prefix =
|
214
|
-
if parent
|
215
|
-
"#{parent.id}-"
|
216
|
-
else
|
217
|
-
''
|
218
|
-
end
|
219
|
-
|
198
|
+
prefix = parent ? "#{parent.id}-" : ''
|
220
199
|
@base_id = new_id || @base_id || default_id
|
200
|
+
@id = "#{prefix}#{@base_id}"
|
221
201
|
|
222
|
-
|
202
|
+
if @id.length > 255
|
203
|
+
hash = Digest::SHA1.hexdigest(@id)[0...10]
|
204
|
+
@database_id = "#{@id[0...244]}-#{hash}"
|
205
|
+
end
|
223
206
|
|
224
|
-
|
207
|
+
@id
|
208
|
+
end
|
225
209
|
|
226
|
-
|
210
|
+
def database_id
|
211
|
+
@database_id ||= id
|
227
212
|
end
|
228
213
|
|
229
214
|
# Set/Get a runnable's title
|
@@ -571,10 +556,10 @@ module Inferno
|
|
571
556
|
end
|
572
557
|
|
573
558
|
# @private
|
574
|
-
def
|
575
|
-
children(suite_options).flat_map do |child|
|
576
|
-
child.
|
577
|
-
end
|
559
|
+
def all_verified_requirements(suite_options = [])
|
560
|
+
verifies_requirements + children(suite_options).flat_map do |child|
|
561
|
+
child.all_verified_requirements(suite_options)
|
562
|
+
end.uniq
|
578
563
|
end
|
579
564
|
|
580
565
|
# @private
|
@@ -9,33 +9,33 @@ module Inferno
|
|
9
9
|
# @return [Array<Inferno::DSL::RequirementSet>]
|
10
10
|
#
|
11
11
|
# @example
|
12
|
-
#
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
17
|
-
#
|
18
|
-
#
|
19
|
-
#
|
20
|
-
#
|
21
|
-
#
|
22
|
-
#
|
23
|
-
#
|
24
|
-
#
|
25
|
-
#
|
26
|
-
#
|
27
|
-
#
|
28
|
-
#
|
29
|
-
#
|
30
|
-
#
|
31
|
-
#
|
32
|
-
#
|
33
|
-
#
|
34
|
-
#
|
12
|
+
# class Suite < Inferno::TestSuite
|
13
|
+
# requirement_sets(
|
14
|
+
# {
|
15
|
+
# identifier: 'example-regulation-1',
|
16
|
+
# title: 'Example Regulation 1',
|
17
|
+
# actor: 'Provider' # Only include requirements for the 'Provider'
|
18
|
+
# # actor
|
19
|
+
# },
|
20
|
+
# {
|
21
|
+
# identifier: 'example-ig-1',
|
22
|
+
# title: 'Example Implementation Guide 1',
|
23
|
+
# actor: 'Provider',
|
24
|
+
# requirements: '2, 4-5' # Only include these specific requirements
|
25
|
+
# },
|
26
|
+
# {
|
27
|
+
# identifier: 'example-ig-2',
|
28
|
+
# title: 'Example Implementation Guide 2',
|
29
|
+
# requirements: 'Referenced', # Only include requirements from this
|
30
|
+
# # set that are referenced by other
|
31
|
+
# # included requirements
|
32
|
+
# actor: 'Server',
|
33
|
+
# suite_options: { # Only include these requirements if the ig
|
34
|
+
# ig_version: '3.0.0' # version 3.0.0 suite option is selected
|
35
|
+
# }
|
35
36
|
# }
|
36
|
-
#
|
37
|
-
#
|
38
|
-
# end
|
37
|
+
# )
|
38
|
+
# end
|
39
39
|
def requirement_sets(*sets)
|
40
40
|
@requirement_sets = sets.map { |set| RequirementSet.new(**set) } if sets.present?
|
41
41
|
|
@@ -11,7 +11,7 @@ module Inferno
|
|
11
11
|
:url,
|
12
12
|
:requirement,
|
13
13
|
:conformance,
|
14
|
-
:
|
14
|
+
:actors,
|
15
15
|
:sub_requirements,
|
16
16
|
:conditionality,
|
17
17
|
:not_tested_reason,
|
@@ -23,7 +23,9 @@ module Inferno
|
|
23
23
|
def initialize(params)
|
24
24
|
super(params, ATTRIBUTES)
|
25
25
|
|
26
|
-
|
26
|
+
return unless requirement_set.blank? && (id&.include?('@') || id&.include?('#'))
|
27
|
+
|
28
|
+
self.requirement_set = id.split(/[@#]/).first
|
27
29
|
end
|
28
30
|
|
29
31
|
# Expand a comma-delimited list of requirement id references into an Array
|
@@ -35,12 +37,14 @@ module Inferno
|
|
35
37
|
# used if none is included in the `requirement_id_string`
|
36
38
|
#
|
37
39
|
# @example
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
#
|
42
|
-
#
|
43
|
-
#
|
40
|
+
# expand_requirement_ids('example-ig@1,3,5-7')
|
41
|
+
# # => ['example-ig@1','example-ig@3','example-ig@5','example-ig@6','example-ig@7']
|
42
|
+
# expand_requirement_ids('example-ig')
|
43
|
+
# # => []
|
44
|
+
# expand_requirement_ids('1,3,5-7', 'example-ig')
|
45
|
+
# # => ['example-ig@1','example-ig@3','example-ig@5','example-ig@6','example-ig@7']
|
46
|
+
# expand_requirement_ids('example-ig#actor1')
|
47
|
+
# # => [all requirements for actor1 from example-ig]
|
44
48
|
def self.expand_requirement_ids(requirement_id_string, default_set = nil) # rubocop:disable Metrics/CyclomaticComplexity
|
45
49
|
return [] if requirement_id_string.blank?
|
46
50
|
|
@@ -49,10 +53,16 @@ module Inferno
|
|
49
53
|
.split(',')
|
50
54
|
.map(&:strip)
|
51
55
|
.flat_map do |requirement_string|
|
52
|
-
|
56
|
+
if requirement_string.include? '@'
|
57
|
+
current_set, requirement_string = requirement_string.split('@')
|
58
|
+
elsif requirement_string.include? '#'
|
59
|
+
current_set, actor = requirement_string.split('#')
|
60
|
+
end
|
53
61
|
|
54
62
|
requirement_ids =
|
55
|
-
if
|
63
|
+
if actor.present?
|
64
|
+
return Repositories::Requirements.new.requirements_for_actor(current_set, actor).map(&:id)
|
65
|
+
elsif requirement_string.include? '-'
|
56
66
|
start_id, end_id = requirement_string.split('-')
|
57
67
|
if start_id.match?(/^\d+$/) && end_id.match?(/^\d+$/)
|
58
68
|
(start_id..end_id).to_a
|
@@ -67,6 +77,10 @@ module Inferno
|
|
67
77
|
end
|
68
78
|
end
|
69
79
|
|
80
|
+
def actor?(actor_to_check)
|
81
|
+
actors.any? { |actor| actor.casecmp? actor_to_check }
|
82
|
+
end
|
83
|
+
|
70
84
|
def tested?
|
71
85
|
not_tested_reason.blank?
|
72
86
|
end
|
@@ -71,6 +71,45 @@ module Inferno
|
|
71
71
|
def waiting?
|
72
72
|
result == 'wait'
|
73
73
|
end
|
74
|
+
|
75
|
+
def inputs
|
76
|
+
input_json.present? ? JSON.parse(input_json) : []
|
77
|
+
end
|
78
|
+
|
79
|
+
def outputs
|
80
|
+
output_json.present? ? JSON.parse(output_json) : []
|
81
|
+
end
|
82
|
+
|
83
|
+
# Flags large inputs or outputs and replaces their values with a reference message.
|
84
|
+
#
|
85
|
+
# This method inspects either the `inputs` or `outputs` array and,
|
86
|
+
# for each item whose `value` exceeds the configured size threshold, sets `is_large: true`
|
87
|
+
# and replaces the `value` with a message pointing to the full content endpoint.
|
88
|
+
#
|
89
|
+
# @param io_type [String] Must be either `'inputs'` or `'outputs'`.
|
90
|
+
# @return [Array<Hash>] The mutated list of inputs or outputs.
|
91
|
+
def handle_large_io(io_type)
|
92
|
+
io_array = public_send(io_type)
|
93
|
+
|
94
|
+
io_array.each do |io|
|
95
|
+
next unless io_is_large?(io['value'])
|
96
|
+
|
97
|
+
io['is_large'] = true
|
98
|
+
io['value'] = <<~MESSAGE
|
99
|
+
#{io_type.singularize.capitalize} is too large to display, please visit
|
100
|
+
#{Inferno::Application['base_url']}/api/test_sessions/#{test_session_id}/results/#{id}/io/#{io_type}/#{io['name']}
|
101
|
+
for details
|
102
|
+
MESSAGE
|
103
|
+
end
|
104
|
+
|
105
|
+
io_array
|
106
|
+
end
|
107
|
+
|
108
|
+
# @private
|
109
|
+
def io_is_large?(io_value)
|
110
|
+
size_in_char = io_value.is_a?(String) ? io_value.length : io_value.to_json.length
|
111
|
+
size_in_char > ENV.fetch('MAX_IO_DISPLAY_CHAR', 10000).to_i
|
112
|
+
end
|
74
113
|
end
|
75
114
|
end
|
76
115
|
end
|
@@ -149,6 +149,10 @@ module Inferno
|
|
149
149
|
@options = suites.each_with_object({}) { |suite, hash| hash[suite.id] = suite.suite_options }
|
150
150
|
end
|
151
151
|
|
152
|
+
def contains_test_suite?(test_suite_id)
|
153
|
+
suite_ids.map(&:to_sym).include? test_suite_id.to_sym
|
154
|
+
end
|
155
|
+
|
152
156
|
# @private
|
153
157
|
def add_self_to_repository
|
154
158
|
repository.insert(self)
|