onc_certification_g10_test_kit 2.0.0.rc1
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 +7 -0
- data/LICENSE +201 -0
- data/lib/inferno/exceptions.rb +31 -0
- data/lib/inferno/ext/bloomer.rb +24 -0
- data/lib/inferno/repositiories/validators.rb +17 -0
- data/lib/inferno/repositiories/value_sets.rb +26 -0
- data/lib/inferno/terminology/bcp47.rb +95 -0
- data/lib/inferno/terminology/bcp_13.rb +26 -0
- data/lib/inferno/terminology/codesystem.rb +49 -0
- data/lib/inferno/terminology/expected_manifest.yml +1123 -0
- data/lib/inferno/terminology/fhir_package_manager.rb +69 -0
- data/lib/inferno/terminology/loader.rb +298 -0
- data/lib/inferno/terminology/tasks/check_built_terminology.rb +77 -0
- data/lib/inferno/terminology/tasks/cleanup.rb +13 -0
- data/lib/inferno/terminology/tasks/cleanup_precursors.rb +23 -0
- data/lib/inferno/terminology/tasks/count_codes_in_value_set.rb +20 -0
- data/lib/inferno/terminology/tasks/create_value_set_validators.rb +34 -0
- data/lib/inferno/terminology/tasks/download_fhir_terminology.rb +27 -0
- data/lib/inferno/terminology/tasks/download_umls.rb +109 -0
- data/lib/inferno/terminology/tasks/download_umls_notice.rb +20 -0
- data/lib/inferno/terminology/tasks/expand_value_set_to_file.rb +36 -0
- data/lib/inferno/terminology/tasks/process_umls.rb +91 -0
- data/lib/inferno/terminology/tasks/process_umls_translations.rb +85 -0
- data/lib/inferno/terminology/tasks/run_umls_jar.rb +75 -0
- data/lib/inferno/terminology/tasks/temp_dir.rb +27 -0
- data/lib/inferno/terminology/tasks/unzip_umls.rb +42 -0
- data/lib/inferno/terminology/tasks/validate_code.rb +36 -0
- data/lib/inferno/terminology/tasks.rb +11 -0
- data/lib/inferno/terminology/terminology_configuration.rb +52 -0
- data/lib/inferno/terminology/terminology_validation.rb +42 -0
- data/lib/inferno/terminology/validator.rb +64 -0
- data/lib/inferno/terminology/value_set.rb +462 -0
- data/lib/inferno/terminology.rb +16 -0
- data/lib/onc_certification_g10_test_kit/authorization_request_builder.rb +87 -0
- data/lib/onc_certification_g10_test_kit/base_token_refresh_group.rb +48 -0
- data/lib/onc_certification_g10_test_kit/bulk_data_authorization.rb +235 -0
- data/lib/onc_certification_g10_test_kit/bulk_data_group_export.rb +255 -0
- data/lib/onc_certification_g10_test_kit/bulk_data_group_export_validation.rb +474 -0
- data/lib/onc_certification_g10_test_kit/bulk_data_jwks.json +58 -0
- data/lib/onc_certification_g10_test_kit/bulk_export_validation_tester.rb +171 -0
- data/lib/onc_certification_g10_test_kit/configuration_checker.rb +104 -0
- data/lib/onc_certification_g10_test_kit/export_kick_off_performer.rb +12 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodyheight.json +3772 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodytemp.json +3772 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodyweight.json +3772 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-bp.json +6034 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-heartrate.json +3756 -0
- data/lib/onc_certification_g10_test_kit/igs/StructureDefinition-resprate.json +3756 -0
- data/lib/onc_certification_g10_test_kit/limited_scope_grant_test.rb +66 -0
- data/lib/onc_certification_g10_test_kit/multi_patient_api.rb +43 -0
- data/lib/onc_certification_g10_test_kit/patient_context_test.rb +30 -0
- data/lib/onc_certification_g10_test_kit/profile_guesser.rb +69 -0
- data/lib/onc_certification_g10_test_kit/resource_access_test.rb +96 -0
- data/lib/onc_certification_g10_test_kit/restricted_access_test.rb +12 -0
- data/lib/onc_certification_g10_test_kit/restricted_resource_type_access_group.rb +303 -0
- data/lib/onc_certification_g10_test_kit/smart_app_launch_invalid_aud_group.rb +136 -0
- data/lib/onc_certification_g10_test_kit/smart_ehr_practitioner_app_group.rb +209 -0
- data/lib/onc_certification_g10_test_kit/smart_invalid_token_group.rb +197 -0
- data/lib/onc_certification_g10_test_kit/smart_limited_app_group.rb +123 -0
- data/lib/onc_certification_g10_test_kit/smart_public_standalone_launch_group.rb +113 -0
- data/lib/onc_certification_g10_test_kit/smart_scopes_test.rb +153 -0
- data/lib/onc_certification_g10_test_kit/smart_standalone_patient_app_group.rb +177 -0
- data/lib/onc_certification_g10_test_kit/terminology_binding_validator.rb +140 -0
- data/lib/onc_certification_g10_test_kit/token_revocation_group.rb +133 -0
- data/lib/onc_certification_g10_test_kit/unauthorized_access_test.rb +25 -0
- data/lib/onc_certification_g10_test_kit/unrestricted_resource_type_access_group.rb +375 -0
- data/lib/onc_certification_g10_test_kit/version.rb +3 -0
- data/lib/onc_certification_g10_test_kit/visual_inspection_and_attestations_group.rb +470 -0
- data/lib/onc_certification_g10_test_kit/well_known_capabilities_test.rb +37 -0
- data/lib/onc_certification_g10_test_kit.rb +223 -0
- metadata +310 -0
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
require 'smart_app_launch_test_kit'
|
|
2
|
+
require 'us_core_test_kit'
|
|
3
|
+
|
|
4
|
+
require_relative 'onc_certification_g10_test_kit/configuration_checker'
|
|
5
|
+
require_relative 'onc_certification_g10_test_kit/version'
|
|
6
|
+
|
|
7
|
+
require_relative 'onc_certification_g10_test_kit/smart_app_launch_invalid_aud_group'
|
|
8
|
+
require_relative 'onc_certification_g10_test_kit/smart_invalid_token_group'
|
|
9
|
+
require_relative 'onc_certification_g10_test_kit/smart_limited_app_group'
|
|
10
|
+
require_relative 'onc_certification_g10_test_kit/smart_standalone_patient_app_group'
|
|
11
|
+
require_relative 'onc_certification_g10_test_kit/smart_ehr_practitioner_app_group'
|
|
12
|
+
require_relative 'onc_certification_g10_test_kit/smart_public_standalone_launch_group'
|
|
13
|
+
require_relative 'onc_certification_g10_test_kit/multi_patient_api'
|
|
14
|
+
require_relative 'onc_certification_g10_test_kit/terminology_binding_validator'
|
|
15
|
+
require_relative 'onc_certification_g10_test_kit/token_revocation_group'
|
|
16
|
+
require_relative 'onc_certification_g10_test_kit/visual_inspection_and_attestations_group'
|
|
17
|
+
require_relative 'inferno/terminology'
|
|
18
|
+
|
|
19
|
+
Inferno::Terminology::Loader.load_validators
|
|
20
|
+
|
|
21
|
+
module ONCCertificationG10TestKit
|
|
22
|
+
class G10CertificationSuite < Inferno::TestSuite
|
|
23
|
+
title 'ONC Certification (g)(10) Standardized API'
|
|
24
|
+
short_title '(g)(10) Standardized API'
|
|
25
|
+
version VERSION
|
|
26
|
+
id :g10_certification
|
|
27
|
+
|
|
28
|
+
check_configuration do
|
|
29
|
+
ConfigurationChecker.new.configuration_messages
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
WARNING_INCLUSION_FILTERS = [
|
|
33
|
+
/Unknown CodeSystem/,
|
|
34
|
+
/Unknown ValueSet/
|
|
35
|
+
].freeze
|
|
36
|
+
|
|
37
|
+
validator do
|
|
38
|
+
url ENV.fetch('G10_VALIDATOR_URL', 'http://validator_service:4567')
|
|
39
|
+
exclude_message do |message|
|
|
40
|
+
if message.type == 'info' ||
|
|
41
|
+
(message.type == 'warning' && WARNING_INCLUSION_FILTERS.none? { |filter| filter.match? message.message }) ||
|
|
42
|
+
USCoreTestKit::USCoreTestSuite::VALIDATION_MESSAGE_FILTERS.any? { |filter| filter.match? message.message }
|
|
43
|
+
true
|
|
44
|
+
else
|
|
45
|
+
false
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
perform_additional_validation do |resource, profile_url|
|
|
49
|
+
metadata = USCoreTestKit::USCoreTestSuite.metadata.find do |metadata_candidate|
|
|
50
|
+
metadata_candidate.profile_url == profile_url
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
next if metadata.nil?
|
|
54
|
+
|
|
55
|
+
metadata.bindings
|
|
56
|
+
.select { |binding_definition| binding_definition[:strength] == 'required' }
|
|
57
|
+
.flat_map do |binding_definition|
|
|
58
|
+
TerminologyBindingValidator.validate(resource, binding_definition)
|
|
59
|
+
rescue Inferno::UnknownValueSetException, Inferno::UnknownCodeSystemException => e
|
|
60
|
+
{ type: 'warning', message: e.message }
|
|
61
|
+
end.compact
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def self.jwks_json
|
|
66
|
+
@jwks_json ||= File.read(File.join(__dir__, 'onc_certification_g10_test_kit', 'bulk_data_jwks.json'))
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def self.well_known_route_handler
|
|
70
|
+
->(_env) { [200, {}, [jwks_json]] }
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
route(
|
|
74
|
+
:get,
|
|
75
|
+
'/.well-known/jwks.json',
|
|
76
|
+
well_known_route_handler
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
description %(
|
|
80
|
+
The ONC Certification (g)(10) Standardized API Test Kit is a testing tool for
|
|
81
|
+
Health Level 7 (HL7®) Fast Healthcare Interoperability Resources (FHIR®)
|
|
82
|
+
services seeking to meet the requirements of the Standardized API for
|
|
83
|
+
Patient and Population Services criterion § 170.315(g)(10) in the 2015
|
|
84
|
+
Edition Cures Update.
|
|
85
|
+
|
|
86
|
+
This test kit is the successor to "Inferno Program Edition", and is
|
|
87
|
+
currently in preview status. Please [create an
|
|
88
|
+
issue](https://github.com/inferno-framework/g10-certification-test-kit/issues)
|
|
89
|
+
if there are discrepencies between these tests and the "Inferno Program
|
|
90
|
+
Edition v1.9" tests.
|
|
91
|
+
|
|
92
|
+
To get started, please first register the Inferno client as a SMART App
|
|
93
|
+
with the following information:
|
|
94
|
+
|
|
95
|
+
* SMART Launch URI: `#{SMARTAppLaunch::AppLaunchTest.config.options[:launch_uri]}`
|
|
96
|
+
* OAuth Redirect URI: `#{SMARTAppLaunch::AppRedirectTest.config.options[:redirect_uri]}`
|
|
97
|
+
|
|
98
|
+
For the multi-patient API, register Inferno with the following JWK Set
|
|
99
|
+
Url:
|
|
100
|
+
|
|
101
|
+
* `#{Inferno::Application[:base_url]}/custom/g10_certification/.well-known/jwks.json`
|
|
102
|
+
|
|
103
|
+
Systems must pass all tests in order to qualify for ONC certification.
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
input_instructions %(
|
|
107
|
+
Register Inferno as a SMART app using the following information:
|
|
108
|
+
|
|
109
|
+
* Launch URI: `#{SMARTAppLaunch::AppLaunchTest.config.options[:launch_uri]}`
|
|
110
|
+
* Redirect URI: `#{SMARTAppLaunch::AppRedirectTest.config.options[:redirect_uri]}`
|
|
111
|
+
|
|
112
|
+
For the multi-patient API, register Inferno with the following JWK Set
|
|
113
|
+
Url:
|
|
114
|
+
|
|
115
|
+
* `#{Inferno::Application[:base_url]}/custom/g10_certification/.well-known/jwks.json`
|
|
116
|
+
)
|
|
117
|
+
|
|
118
|
+
group from: 'g10_smart_standalone_patient_app'
|
|
119
|
+
|
|
120
|
+
group from: 'g10_smart_limited_app'
|
|
121
|
+
|
|
122
|
+
group from: 'g10_smart_ehr_practitioner_app'
|
|
123
|
+
|
|
124
|
+
group do
|
|
125
|
+
id :single_patient_api
|
|
126
|
+
title 'Single Patient API'
|
|
127
|
+
description %(
|
|
128
|
+
For each of the relevant USCDI data elements provided in the
|
|
129
|
+
CapabilityStatement, this test executes the [required supported
|
|
130
|
+
searches](http://www.hl7.org/fhir/us/core/STU3.1.1/CapabilityStatement-us-core-server.html)
|
|
131
|
+
as defined by the US Core Implementation Guide v3.1.1. The test begins
|
|
132
|
+
by searching by one or more patients, with the expectation that the
|
|
133
|
+
Bearer token provided to the test grants access to all USCDI resources.
|
|
134
|
+
It uses results returned from that query to generate other queries and
|
|
135
|
+
checks that the results are consistent with the provided search
|
|
136
|
+
parameters. It then performs a read on each Resource returned and
|
|
137
|
+
validates the response against the relevant
|
|
138
|
+
[profile](http://www.hl7.org/fhir/us/core/STU3.1.1/profiles.html) as
|
|
139
|
+
currently defined in the US Core Implementation Guide. All MUST SUPPORT
|
|
140
|
+
elements must be seen before the test can pass, as well as Data Absent
|
|
141
|
+
Reason to demonstrate that the server can properly handle missing data.
|
|
142
|
+
Note that Encounter, Organization and Practitioner resources must be
|
|
143
|
+
accessible as references in some US Core profiles to satisfy must
|
|
144
|
+
support requirements, and those references will be validated to their US
|
|
145
|
+
Core profile. These resources will not be tested for FHIR search
|
|
146
|
+
support.
|
|
147
|
+
)
|
|
148
|
+
run_as_group
|
|
149
|
+
|
|
150
|
+
input :url,
|
|
151
|
+
title: 'FHIR Endpoint',
|
|
152
|
+
description: 'URL of the FHIR endpoint used by SMART applications'
|
|
153
|
+
input :smart_credentials,
|
|
154
|
+
title: 'SMART App Launch Credentials',
|
|
155
|
+
type: :oauth_credentials,
|
|
156
|
+
locked: true
|
|
157
|
+
|
|
158
|
+
fhir_client do
|
|
159
|
+
url :url
|
|
160
|
+
oauth_credentials :smart_credentials
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
USCoreTestKit::USCoreTestSuite.groups.each do |group|
|
|
164
|
+
test_group = group.ancestors[1]
|
|
165
|
+
id = test_group.id
|
|
166
|
+
|
|
167
|
+
group_config = {}
|
|
168
|
+
if test_group.respond_to?(:metadata) && test_group.metadata.delayed?
|
|
169
|
+
test_group.children.reject! { |child| child.include? USCoreTestKit::SearchTest }
|
|
170
|
+
group_config[:options] = { read_all_resources: true }
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
group(from: id, exclude_optional: true, config: group_config)
|
|
174
|
+
end
|
|
175
|
+
end
|
|
176
|
+
|
|
177
|
+
group from: 'multi_patient_api'
|
|
178
|
+
|
|
179
|
+
group do
|
|
180
|
+
title 'Additional Tests'
|
|
181
|
+
description %(
|
|
182
|
+
Not all requirements that need to be tested fit within the previous
|
|
183
|
+
scenarios. The tests contained in this section addresses remaining
|
|
184
|
+
testing requirements. Each of these tests need to be run independently.
|
|
185
|
+
Please read the instructions for each in the 'About' section, as they
|
|
186
|
+
may require special setup on the part of the tester.
|
|
187
|
+
)
|
|
188
|
+
|
|
189
|
+
group from: :g10_public_standalone_launch
|
|
190
|
+
group from: :g10_token_revocation
|
|
191
|
+
|
|
192
|
+
group from: :g10_smart_invalid_aud
|
|
193
|
+
group from: :g10_smart_invalid_token_request
|
|
194
|
+
|
|
195
|
+
group from: :g10_visual_inspection_and_attestations
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
# TODO: address this input issue in core
|
|
201
|
+
Inferno::Repositories::Tests.new
|
|
202
|
+
.find('g10_certification-g10_smart_limited_app-smart_standalone_launch-standalone_auth_tls')
|
|
203
|
+
.config(
|
|
204
|
+
inputs: {
|
|
205
|
+
url: {
|
|
206
|
+
title: 'Standalone Authorization URL',
|
|
207
|
+
description: '',
|
|
208
|
+
default: ''
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
)
|
|
212
|
+
|
|
213
|
+
Inferno::Repositories::Tests.new
|
|
214
|
+
.find('g10_certification-g10_smart_limited_app-smart_standalone_launch-standalone_token_tls')
|
|
215
|
+
.config(
|
|
216
|
+
inputs: {
|
|
217
|
+
url: {
|
|
218
|
+
title: 'Standalone Token URL',
|
|
219
|
+
description: '',
|
|
220
|
+
default: ''
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
)
|
metadata
ADDED
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: onc_certification_g10_test_kit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.0.0.rc1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Stephen MacVicar
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-02-28 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bloomer
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.0.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 1.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: colorize
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 0.8.1
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 0.8.1
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: inferno_core
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 0.1.3
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 0.1.3
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: json-jwt
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: 1.13.0
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: 1.13.0
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: mime-types
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 3.4.0
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: 3.4.0
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: ndjson
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 1.0.0
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: 1.0.0
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: rubyzip
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: 2.3.2
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: 2.3.2
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: smart_app_launch_test_kit
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - '='
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: 0.1.0
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - '='
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: 0.1.0
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: tls_test_kit
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - '='
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: 0.1.0
|
|
132
|
+
type: :runtime
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - '='
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: 0.1.0
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: us_core_test_kit
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - '='
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: 0.1.1
|
|
146
|
+
type: :runtime
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - '='
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: 0.1.1
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: database_cleaner-sequel
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '1.8'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - "~>"
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '1.8'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: factory_bot
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - "~>"
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '6.1'
|
|
174
|
+
type: :development
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - "~>"
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '6.1'
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: rspec
|
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
|
184
|
+
requirements:
|
|
185
|
+
- - "~>"
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: '3.10'
|
|
188
|
+
type: :development
|
|
189
|
+
prerelease: false
|
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - "~>"
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '3.10'
|
|
195
|
+
- !ruby/object:Gem::Dependency
|
|
196
|
+
name: webmock
|
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
|
198
|
+
requirements:
|
|
199
|
+
- - "~>"
|
|
200
|
+
- !ruby/object:Gem::Version
|
|
201
|
+
version: '3.11'
|
|
202
|
+
type: :development
|
|
203
|
+
prerelease: false
|
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
+
requirements:
|
|
206
|
+
- - "~>"
|
|
207
|
+
- !ruby/object:Gem::Version
|
|
208
|
+
version: '3.11'
|
|
209
|
+
description: ONC Certification (g)(10) Test Kit for Inferno
|
|
210
|
+
email:
|
|
211
|
+
- inferno@groups.mitre.org
|
|
212
|
+
executables: []
|
|
213
|
+
extensions: []
|
|
214
|
+
extra_rdoc_files: []
|
|
215
|
+
files:
|
|
216
|
+
- LICENSE
|
|
217
|
+
- lib/inferno/exceptions.rb
|
|
218
|
+
- lib/inferno/ext/bloomer.rb
|
|
219
|
+
- lib/inferno/repositiories/validators.rb
|
|
220
|
+
- lib/inferno/repositiories/value_sets.rb
|
|
221
|
+
- lib/inferno/terminology.rb
|
|
222
|
+
- lib/inferno/terminology/bcp47.rb
|
|
223
|
+
- lib/inferno/terminology/bcp_13.rb
|
|
224
|
+
- lib/inferno/terminology/codesystem.rb
|
|
225
|
+
- lib/inferno/terminology/expected_manifest.yml
|
|
226
|
+
- lib/inferno/terminology/fhir_package_manager.rb
|
|
227
|
+
- lib/inferno/terminology/loader.rb
|
|
228
|
+
- lib/inferno/terminology/tasks.rb
|
|
229
|
+
- lib/inferno/terminology/tasks/check_built_terminology.rb
|
|
230
|
+
- lib/inferno/terminology/tasks/cleanup.rb
|
|
231
|
+
- lib/inferno/terminology/tasks/cleanup_precursors.rb
|
|
232
|
+
- lib/inferno/terminology/tasks/count_codes_in_value_set.rb
|
|
233
|
+
- lib/inferno/terminology/tasks/create_value_set_validators.rb
|
|
234
|
+
- lib/inferno/terminology/tasks/download_fhir_terminology.rb
|
|
235
|
+
- lib/inferno/terminology/tasks/download_umls.rb
|
|
236
|
+
- lib/inferno/terminology/tasks/download_umls_notice.rb
|
|
237
|
+
- lib/inferno/terminology/tasks/expand_value_set_to_file.rb
|
|
238
|
+
- lib/inferno/terminology/tasks/process_umls.rb
|
|
239
|
+
- lib/inferno/terminology/tasks/process_umls_translations.rb
|
|
240
|
+
- lib/inferno/terminology/tasks/run_umls_jar.rb
|
|
241
|
+
- lib/inferno/terminology/tasks/temp_dir.rb
|
|
242
|
+
- lib/inferno/terminology/tasks/unzip_umls.rb
|
|
243
|
+
- lib/inferno/terminology/tasks/validate_code.rb
|
|
244
|
+
- lib/inferno/terminology/terminology_configuration.rb
|
|
245
|
+
- lib/inferno/terminology/terminology_validation.rb
|
|
246
|
+
- lib/inferno/terminology/validator.rb
|
|
247
|
+
- lib/inferno/terminology/value_set.rb
|
|
248
|
+
- lib/onc_certification_g10_test_kit.rb
|
|
249
|
+
- lib/onc_certification_g10_test_kit/authorization_request_builder.rb
|
|
250
|
+
- lib/onc_certification_g10_test_kit/base_token_refresh_group.rb
|
|
251
|
+
- lib/onc_certification_g10_test_kit/bulk_data_authorization.rb
|
|
252
|
+
- lib/onc_certification_g10_test_kit/bulk_data_group_export.rb
|
|
253
|
+
- lib/onc_certification_g10_test_kit/bulk_data_group_export_validation.rb
|
|
254
|
+
- lib/onc_certification_g10_test_kit/bulk_data_jwks.json
|
|
255
|
+
- lib/onc_certification_g10_test_kit/bulk_export_validation_tester.rb
|
|
256
|
+
- lib/onc_certification_g10_test_kit/configuration_checker.rb
|
|
257
|
+
- lib/onc_certification_g10_test_kit/export_kick_off_performer.rb
|
|
258
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodyheight.json
|
|
259
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodytemp.json
|
|
260
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-bodyweight.json
|
|
261
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-bp.json
|
|
262
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-heartrate.json
|
|
263
|
+
- lib/onc_certification_g10_test_kit/igs/StructureDefinition-resprate.json
|
|
264
|
+
- lib/onc_certification_g10_test_kit/limited_scope_grant_test.rb
|
|
265
|
+
- lib/onc_certification_g10_test_kit/multi_patient_api.rb
|
|
266
|
+
- lib/onc_certification_g10_test_kit/patient_context_test.rb
|
|
267
|
+
- lib/onc_certification_g10_test_kit/profile_guesser.rb
|
|
268
|
+
- lib/onc_certification_g10_test_kit/resource_access_test.rb
|
|
269
|
+
- lib/onc_certification_g10_test_kit/restricted_access_test.rb
|
|
270
|
+
- lib/onc_certification_g10_test_kit/restricted_resource_type_access_group.rb
|
|
271
|
+
- lib/onc_certification_g10_test_kit/smart_app_launch_invalid_aud_group.rb
|
|
272
|
+
- lib/onc_certification_g10_test_kit/smart_ehr_practitioner_app_group.rb
|
|
273
|
+
- lib/onc_certification_g10_test_kit/smart_invalid_token_group.rb
|
|
274
|
+
- lib/onc_certification_g10_test_kit/smart_limited_app_group.rb
|
|
275
|
+
- lib/onc_certification_g10_test_kit/smart_public_standalone_launch_group.rb
|
|
276
|
+
- lib/onc_certification_g10_test_kit/smart_scopes_test.rb
|
|
277
|
+
- lib/onc_certification_g10_test_kit/smart_standalone_patient_app_group.rb
|
|
278
|
+
- lib/onc_certification_g10_test_kit/terminology_binding_validator.rb
|
|
279
|
+
- lib/onc_certification_g10_test_kit/token_revocation_group.rb
|
|
280
|
+
- lib/onc_certification_g10_test_kit/unauthorized_access_test.rb
|
|
281
|
+
- lib/onc_certification_g10_test_kit/unrestricted_resource_type_access_group.rb
|
|
282
|
+
- lib/onc_certification_g10_test_kit/version.rb
|
|
283
|
+
- lib/onc_certification_g10_test_kit/visual_inspection_and_attestations_group.rb
|
|
284
|
+
- lib/onc_certification_g10_test_kit/well_known_capabilities_test.rb
|
|
285
|
+
homepage: https://github.com/inferno_framework/onc-certification-g10-test-kit
|
|
286
|
+
licenses:
|
|
287
|
+
- Apache-2.0
|
|
288
|
+
metadata:
|
|
289
|
+
homepage_uri: https://github.com/inferno_framework/onc-certification-g10-test-kit
|
|
290
|
+
source_code_uri: https://github.com/inferno_framework/onc-certification-g10-test-kit
|
|
291
|
+
post_install_message:
|
|
292
|
+
rdoc_options: []
|
|
293
|
+
require_paths:
|
|
294
|
+
- lib
|
|
295
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
296
|
+
requirements:
|
|
297
|
+
- - ">="
|
|
298
|
+
- !ruby/object:Gem::Version
|
|
299
|
+
version: 2.7.0
|
|
300
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
|
+
requirements:
|
|
302
|
+
- - ">"
|
|
303
|
+
- !ruby/object:Gem::Version
|
|
304
|
+
version: 1.3.1
|
|
305
|
+
requirements: []
|
|
306
|
+
rubygems_version: 3.1.6
|
|
307
|
+
signing_key:
|
|
308
|
+
specification_version: 4
|
|
309
|
+
summary: ONC Certification (g)(10) Test Kit
|
|
310
|
+
test_files: []
|